:root {
  --primary-color: #5c1c1c; /* Deep maroon */
  --accent-color-1: #333333; /* Charcoal gray */
  --accent-color-2: #000000; /* Black */
  --accent-color-3: #f5f2ed; /* Light beige/off-white */
  --light-bg: #f9f9f9; /* Light background */
  --text-color: #0c0c0c;
  --heading-font: 'Montserrat', 'Oswald', sans-serif;
  --body-font: 'Roboto', 'Open Sans', 'Lato', 'Poppins', sans-serif;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}
.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.heading_container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.heading_container h2 span {
  color: var(--primary-color);
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn {
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/*header section*/
.hero_area {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.sub_page .hero_area {
  height: auto;
  min-height: auto;
}

.sub_page .header_section {
  margin-top: 0;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.header_section .header_top {
  padding: 15px 0;
  background-color: var(--accent-color-1);
}

.header_section .header_top .header_top_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_section .header_top .header_top_container .lang_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header_section .header_top .header_top_container .lang_box a {
  margin: 0;
  padding: 5px;
  background-color: #ffffff;
  color: #000000;
}

.header_section .header_top .header_top_container .lang_box a img {
  width: 25px;
}

.header_section .header_top .header_top_container .lang_box span {
  color: #ffffff;
  margin-left: 10px;
}

.header_section .header_top .header_top_container .lang_box .dropdown-menu {
  min-width: auto;
  width: auto;
  border-radius: 0;
}

.header_section .header_top .header_top_container .lang_box .dropdown-menu a {
  color: #000000;
  margin: 0;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
}

.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
}

.header_section .header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_section .header_top .contact_nav a {
  margin-right: 25px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_section .header_top .contact_nav a i {
  margin-right: 5px;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #004aad;
}

.header_section .header_top .contact_nav a:hover i {
  color: #252525;
}

.header_section .header_top .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_section .header_top .social_box a i {
  margin-right: 5px;
  background-color: #ffffff;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #004aad;
}

.header_section .header_top .social_box a:hover i {
  color: #252525;
}

.header_section .header_bottom {
  background-color: white;
  padding: 15px 0;
  box-sizing: border-box;
  margin: 0;
}

.header_section .header_bottom .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand img {
  width: 125px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

/* Navbar links style */
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative; /* For the underline effect */
}
/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease forwards;
}

/* Hover effect for changing text color and adding underline */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
  background-color: transparent;
}

/* Underline effect */
.custom_nav-container .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

/* Expanding underline on hover */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link::before {
  width: 100%;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .nav_search-btn:hover {
  color: #000000;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
  transform: none;
}

/*end header section*/

/* Hero Section Enhancement */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../images/background.JPG);
  background-size: cover;
  background-position: center center;
  position: relative;
  height: calc(100vh - 120px);
  min-height: 500px;
}

.slider_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.slider_section .carousel-inner,
.slider_section .carousel-item {
  height: 100%;
}

.slider_section .carousel-item .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.slider_section .detail-box {
  color: #252525;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
  height: 100%;
}

/* Fix text color for better visibility */
.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.slider_section .detail-box .btn-box a {
  margin: 8px;
  text-align: center;
  width: 180px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(92, 28, 28, 0.4);
  text-transform: uppercase;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 12px 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-transform: uppercase;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Button hover animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.slider_section .detail-box .btn-box a:hover {
  animation: pulse 1.5s infinite ease-in-out;
}

/* Button wave effect */
.slider_section .detail-box .btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transform: scale(0);
  transition: 0.5s;
  z-index: -1;
}

.slider_section .detail-box .btn-box a:hover::before {
  transform: scale(1.2);
  opacity: 0;
  transition: 0.7s ease-out;
}

.slider_section .detail-box .btn-box a i {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

/* Improved Footer Section Styling */
.footer_section {
  position: relative;
  background-color: #222222;
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 0;
  clear: both;
  width: 100%;
}

.footer_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer_contact_info {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer_contact_info h4 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer_contact_info h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer_contact_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #cccccc;
}

.footer_contact_item i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 18px;
  min-width: 20px;
}

.footer_links {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer_links h4 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer_links h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer_links_menu {
  display: flex;
  flex-direction: column;
}

.footer_links_menu a {
  color: #cccccc;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer_links_menu a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
}

.footer_links_menu a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer_logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  text-align: center;
}

.footer_logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer_copyright {
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_copyright p {
  color: #999999;
  margin: 0;
  font-size: 14px;
  padding: 10px 0;
}

.footer_copyright a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.footer_copyright a:hover {
  text-decoration: underline;
}

/* Ensure proper info section styling */
.info_section {
  background-color: #252525;
  color: #ffffff;
  padding: 45px 0 30px 0;
  margin-top: 0;
  width: 100%;
}

.info_section .info_bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.info_section .info_bottom .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info_section .info_bottom .info_logo {
  margin: 0 auto;
  text-align: center;
}

.info_section .info_bottom .info_logo a img {
  width: 125px;
  display: inline-block;
}

/* Make sure quick links section works properly */
.info_section .info_links .info_links_menu {
  display: flex;
  flex-wrap: wrap;
}

.info_section .info_links .info_links_menu a {
  color: #ffffff;
  flex-basis: 50%;
  margin-bottom: 10px;
}

.info_section .info_links .info_links_menu a:hover,
.info_section .info_links .info_links_menu a.active {
  color: var(--primary-color);
}

/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.whatsapp_float:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp_icon {
  width: 40px;
  height: 40px;
  margin: auto;
}

/* About section styling */
.about_section {
  padding: 90px 0;
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  position: relative;
  margin-top: 0;
}

.about_section .img-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about_section .img-box::before,
.about_section .img-box::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 70%;
  background-color: var(--primary-color);
  z-index: 3;
}

.about_section .img-box::before {
  left: 0;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.about_section .img-box::after {
  right: 0;
  z-index: 1;
  transform: translate(50%, -50%);
}

.about_section .detail-box p {
  color: #0c0c0c;
  margin-top: 15px;
  line-height: 1.8;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--primary-color);
  margin-top: 15px;
  font-weight: 600;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Products Section Enhancements */
.products-section {
  background-color: var(--light-bg);
  padding: 80px 0;
  position: relative;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.png');
  opacity: 0.05;
  z-index: 0;
}

.products-section .container {
  position: relative;
  z-index: 1;
}

.products-section p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

.product-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(92, 28, 28, 0.2);
}

.product-media {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card:hover .product-media::before {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-content {
  padding: 25px 20px;
  text-align: center;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.product-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.product-card:hover .product-content::after {
  width: 80px;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  position: relative;
}

.product-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Enhanced Section Title */
.products-section .section-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.products-section .title-divider {
  height: 3px;
  width: 80px;
  background-color: var(--primary-color);
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Fix image paths */
.product-card .product-media img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Add overlay effect */
.product-media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-media::after {
  opacity: 1;
}

/* Contact Form Styling */
.contact_section {
  background: var(--light-bg);
  padding: 80px 0;
}

.contact_section .form_container {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact_section .form_container input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.contact_section .form_container input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(92, 28, 28, 0.1);
  outline: none;
  background: #ffffff;
}

.contact_section .form_container .message-box {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  resize: vertical;
  background: #f8f9fa;
}

.contact_section .form_container .message-box:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(92, 28, 28, 0.1);
  outline: none;
  background: #ffffff;
}

.contact_section .form_container .btn_box button {
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact_section .form_container .btn_box button:hover {
  background: #4a1717;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(92, 28, 28, 0.2);
}

.contact_section .form_container input::placeholder,
.contact_section .form_container .message-box::placeholder {
  color: #adb5bd;
  font-size: 15px;
}

.contact_section .heading_container h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.contact_section .heading_container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

/* Map Container Styling */
.contact_section .map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact_section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Section Maps Layout */
.contact_section .maps_container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.contact_section .map_wrapper {
  flex: 1;
  min-width: 0; /* Prevents flex items from overflowing */
}

.contact_section .map_wrapper h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.contact_section .map_wrapper .address {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact_section .map_wrapper .address p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.contact_section .map_wrapper .address p strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.contact_section .map_wrapper .map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact_section .form_container {
    margin-bottom: 40px;
  }
  
  .contact_section .map-container {
    min-height: 300px;
  }
  
  .contact_section .maps_container {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact_section .map_wrapper .map-container {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .contact_section {
    padding: 50px 0;
  }
  
  .contact_section .heading_container h2 {
    font-size: 2rem;
  }
  
  .contact_section .form_container {
    padding: 25px;
  }
}

.service_section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.service-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 20px auto 40px;
  line-height: 1.6;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 30px;
  color: #fff;
}

.service-box .detail-box h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-box .detail-box p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-btn:hover {
  color: var(--secondary-color);
}

.service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .service-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .service_section {
    padding: 60px 0;
  }
  
  .service-subtitle {
    font-size: 1rem;
    margin: 15px auto 30px;
  }
  
  .service-box {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 24px;
  }
}

/* Service Details Styling */
.service_detail {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service_detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service_detail h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.service_detail p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Distributor Section Styling */
.distributor-section {
  margin-top: 60px;
}

.distributor-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.distributor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.distributor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.business-item {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.business-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.business-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Updated Agriculture Grid Styling */
.agriculture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.crop-item {
  background: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.crop-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  transition: all 0.3s ease;
}

.crop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(92, 28, 28, 0.2);
}

.crop-item:hover::before {
  transform: translateX(100%);
}

/* View More Button Styling */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.view-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.view-more-btn:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(92, 28, 28, 0.2);
}

.view-more-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .distributor-card {
    padding: 30px;
  }
  
  .agriculture-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .distributor-card {
    padding: 25px;
  }
  
  .business-item {
    padding: 15px;
  }
  
  .agriculture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .view-more-btn {
    padding: 10px 25px;
  }
}

/* Service Section Card Styling */
.service-section-card {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-section-card:nth-child(1) { animation-delay: 0.1s; }
.service-section-card:nth-child(2) { animation-delay: 0.2s; }
.service-section-card:nth-child(3) { animation-delay: 0.3s; }
.service-section-card:nth-child(4) { animation-delay: 0.4s; }
.service-section-card:nth-child(5) { animation-delay: 0.5s; }

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-icon i {
  font-size: 35px;
  color: #fff;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.service-content h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.service-card:hover .service-content h3::after {
  width: 100px;
}

.service-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #555;
  font-size: 1.1rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Agriculture Grid Enhancement */
.agriculture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.crop-item {
  background: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.crop-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  transition: all 0.3s ease;
}

.crop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(92, 28, 28, 0.2);
}

.crop-item:hover::before {
  transform: translateX(100%);
}

/* Business Item Enhancement */
.business-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.business-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.business-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .service-card {
    padding: 30px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 30px;
  }
  
  .service-content h3 {
    font-size: 1.6rem;
  }
  
  .agriculture-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: 25px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .service-icon i {
    font-size: 25px;
  }
  
  .service-content h3 {
    font-size: 1.4rem;
  }
  
  .agriculture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-features li {
    font-size: 1rem;
  }
}

/* Distribution Grid Styling */
.distribution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 25px 0;
}

.distribution-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.distribution-item:hover {
  transform: translateX(5px);
  background: #f0f0f0;
}

.distribution-item h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.distribution-item .service-features {
  margin-top: 15px;
}

.distribution-item .service-features li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Responsive Adjustments for Distribution */
@media (max-width: 991px) {
  .distribution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .distribution-item {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .distribution-item h4 {
    font-size: 1.2rem;
  }
  
  .distribution-item .service-features li {
    font-size: 0.95rem;
  }
}

/* Agriculture Section Styling */
.agriculture_section {
  background: #f8f9fa;
  padding: 90px 0;
}

.agriculture_section .heading_container {
  margin-bottom: 45px;
}

.agriculture_section .heading_container h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.agriculture_section .service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.agriculture_section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.agriculture_section .service-icon {
  margin-bottom: 25px;
}

.agriculture_section .service-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.agriculture_section .business-item {
  background: var(--primary-color);
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.agriculture_section .agriculture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.agriculture_section .crop-item {
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.agriculture_section .crop-item:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.05);
}

.agriculture_section p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-top: 20px;
}

/* Responsive Adjustments for Agriculture Section */
@media (max-width: 991px) {
  .agriculture_section {
    padding: 60px 0;
  }
  
  .agriculture_section .heading_container h2 {
    font-size: 2rem;
  }
  
  .agriculture_section .agriculture-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .agriculture_section .agriculture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .agriculture_section .business-item {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 575px) {
  .agriculture_section .agriculture-grid {
    grid-template-columns: 1fr;
  }
  
  .agriculture_section .service-card {
    padding: 20px;
  }
}
