body,
html {
  font-family: "Inter", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100% !important;
  max-width: 100%;
  height: 100% !important;
}

h2,
h3,
h4,
#menu a.navbar-brand,
#menu.navbar-default .navbar-nav > li > a,
.dropdown-hover .page-scroll,
.dropdown-hover .dropdown-content li a,
.btn-custom {
  font-family: "Inter", sans-serif;
}

h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  color: #333;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: #808080;
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #0FB749;
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #0FB749;
  margin-bottom: 20px;
  border: 0;
}
/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}
#menu.navbar-default {
  background-color: #fff;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#menu a.navbar-brand {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform:none;
}
#menu.navbar-default .navbar-nav > li > a {
  font-family: "Inter", sans-serif;
  text-transform: none;
  color: hsl(0, 0%, 0%);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
  content: "";
  transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
  content: "" !important;
  transition: width 0.2s !important;
}

.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  border-color: #0FB749;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #0FB749;
}
/* Navbar styling */
.navbar-brand {
  display: flex;
  align-items: center; /* Center the logo vertically */
}

.navbar-toggle {
  border: none; /* Remove border from toggle button */
}

/* Ensure navbar items are spaced and aligned properly */
.navbar-nav {
  align-items: center;
}

.navbar-nav {
  justify-content: center; /* Center align items */
}

.logo{
  height: 65px;
  max-width: 250px;
}

/* Dropdown styling */
.dropdown-hover .page-scroll {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: hsl(0, 0%, 0%);
  padding: 8px 2px;
  margin: 9px 20px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Dropdown Content */
.dropdown-hover .dropdown-content {
  display: none; /* Hide dropdown by default */
  position: absolute;
  background: linear-gradient(135deg, #0FB749, black); /* Gradient background */
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  transform: translateY(20px); /* Start 20px below */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Smooth slide-in and fade */
}

.dropdown-hover:hover .dropdown-content {
  display: block; /* Show dropdown on hover */
  opacity: 1;
  transform: translateY(0); /* Slide in from bottom */
}

.dropdown-hover .dropdown-content li a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: white; /* White text color */
  padding: 8px 16px;
  display: block;
  text-align: left;
}

.dropdown-hover .dropdown-content li a:hover {
  background-color: #0FB749;
  color: #fff;
}

/* Ensure the dropdown aligns with other nav items */
.navbar-nav .dropdown-hover {
  position: relative;
}

.dropdown-hover .dropdown-content {
  top: 100%; /* Position dropdown below the link */
  left: 0; /* Align dropdown with the left edge of the link */
}

/* Top Navbar */
.top-nav {
  background: #000;
  color: white;
  padding: 2px 80px; /* Adjust padding for better alignment */
  font-size: 12px;
}

.top-nav .container-fluid {
  display: flex;
  justify-content: space-between; /* Push logo to start and contacts to end */
  align-items: center;
}

.top-nav .logo-container {
  display: flex;
  align-items: center;
}

.top-nav .contacts {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Navbar Main Styling */
.navbar-brand img.logo {
  height: 50px;
}

/* Dropdown */
.dropdown-hover {
  position: relative;
  display: inline-block;
}

/* Default caret styling */
.caret-icon {
  margin-left: 5px;
  font-size: 12px; /* Adjust size as needed */
  color: #0FB749; /* Green color */
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Rotate caret when dropdown is open */
.caret-icon.open {
  transform: rotate(180deg); /* Rotates downward when open */
}

.dropdown-content {
  display: none;
  position: absolute;
  background: linear-gradient(135deg, #0FB749, black); /* Gradient background */
  min-width: 200px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 0px;
  padding: 10px 0;
}

.dropdown-hover:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  padding: 0px 0px;
}

.dropdown-content li a {
  text-decoration: none;
  color: white; /* White text color */
  display: block;
}

.dropdown-content li a:hover {
  background-color: #0FB749;
  color: white;
}

/* Nested Dropdown */
.nested-dropdown {
  position: relative;
}

.nested-dropdown .nested-title {
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Push caret to the far right */
  color: #fff;
}

/* Right-facing caret for nested dropdowns */
.nested-dropdown .caret-icon-right {
  margin-left: 10px; /* Space between text and caret */
  font-size: 14px; /* Adjust size as needed */
  color: #fff; /* White color for the caret */
  transition: transform 0.3s ease-in-out;
}

/* Rotate the caret on hover (optional) */
.nested-dropdown:hover .caret-icon-right {
  transform: rotate(0); /* Rotate to point downwards */
}

/* Nested Dropdown Content */
.nested-dropdown-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: linear-gradient(135deg, #0FB749, black); /* Gradient background */
  min-width: 180px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 0px;
}

.nested-dropdown:hover .nested-dropdown-content {
  display: block;
}

.nested-dropdown-content li a {
  color: white; /* White text color */
  padding: 8px 16px;
  display: block;
  text-decoration: none;
}

.nested-dropdown-content li a:hover {
  background-color: #0FB749;
  color: white;
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 991px) {
  /* Stack dropdown items vertically */
  .dropdown-hover .dropdown-content {
    position: static; /* Reset position for smaller screens */
    min-width: 100%; /* Full width */
    transform: none; /* Reset transform */
    opacity: 1; /* Always visible */
    display: none; /* Hide by default */
  }

  .dropdown-hover:hover .dropdown-content {
    display: block; /* Show on hover */
  }

  /* Adjust nested dropdowns for smaller screens */
  .nested-dropdown-content {
    position: static; /* Reset position */
    left: auto; /* Reset left */
    top: auto; /* Reset top */
    min-width: 100%; /* Full width */
  }

  .nested-dropdown:hover .nested-dropdown-content {
    display: block; /* Show on hover */
  }

  /* Ensure dropdowns are accessible on touch devices */
  .dropdown-hover,
  .nested-dropdown {
    width: 100%; /* Full width */
  }

  .dropdown-hover .page-scroll,
  .nested-dropdown .nested-title {
    padding: 10px; /* Add padding for better touch targets */
  }

  /* Adjust caret alignment */
  .nested-dropdown .caret-icon-right {
    margin-left: auto; /* Push caret to the far right */
  }

  /* Mega Dropdown for Smaller Screens */
  .mega-dropdown {
    position: static; /* Reset position */
    width: 100%; /* Full width */
    transform: none; /* Reset transform */
    padding: 10px; /* Adjust padding */
    box-shadow: none; /* Remove shadow for cleaner look */
  }

  /* Adjust mega dropdown for smaller screens */
  .mega-dropdown .dropdown-column {
    min-width: 100%; /* Full width */
    margin-bottom: 15px;
  }

  .services-menu:hover .mega-dropdown {
    transform: none; /* Reset transform */
  }

  .dropdown-column {
    min-width: 100%; /* Full width */
    margin-bottom: 15px;
  }

  .dropdown-column h4 {
    font-size: 16px; /* Adjust font size */
  }

  .dropdown-column ul li a {
    font-size: 14px; /* Adjust font size */
  }
}

/* Navigation Bar */
.navbar {
  background: #fff;
  border-bottom: 2px solid #eee;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
}

/* Top Navigation */
.top-nav {
  background: #222;
  color: white;
  padding: 5px 0;
  font-size: 14px;
  text-align: right;
}

.top-nav .contacts span {
  margin-right: 15px;
}

/* Navbar Links */
.navbar-nav > li > a {
  color: #333;
  font-size: 16px;
  padding: 15px 20px;
  font-weight: 600;
}

.navbar-nav > li > a:hover {
  color: #C7BA3A;
}


.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  background: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
  background: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
.section-title p {
  font-size: 18px;
}
.btn-custom {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #0FB749;
  background-image: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #fff;
  background-image: none;
  background-color: #0FB749;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Header Section */
.intro {
  display: table;
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: url(../img/deft.jpeg) center center no-repeat;
  background-color: #e5e5e5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.intro .overlay {
  background: rgba(0, 0, 0, 0.2);
}
.intro h1 {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 82px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro h1 span {
  font-weight: 800;
  color: #5ca9fb;
}
.intro p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
header .intro-text {
  padding-top: 350px;
  padding-bottom: 200px;
  text-align: center;
}
/* Features Section */
#features {
  background: #f6f6f6;
}
#features i.fa {
  transition: all 0.5s;
  color: #000;
  display: none;
}
#features i.fa:hover {
  transition: all 0.5s;
  color: #790e0e;
  display: contents;
  
}
/* features.css */
#features {
  padding: 60px 0;
}

#features .img {
  height: 95px;
  margin-top: 20px;
}

#features .title {
  font-size: 15px;
}

@media (max-width: 768px) {
  #features {
    padding: 10px 0;
  }
  
  #features .img {
    height: 55px;
    margin-top: 10px;
  }
  
  #features .title {
    font-size: 10px;
  }

  #features .heading {
    font-size: 20px;
    color:#0FB749;
  }
}

.section-title {
  margin-bottom: 30px;
}

.feature-item i {
  font-size: 40px;
  color: #0FB749; /* Maroon color for the icon */
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.solution-list {
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  text-align: center; /* Align text to the left */
  margin: 0; /* Remove default margin */
}

.solution-list li {
  margin-bottom: 10px;
}

/* About Section */
#about {
  padding: 10px 0;
  max-width: 100%;
  margin-bottom: 100px;
  margin-top: 100px;
}
#about h3 {
  font-size: 20px;
  margin: 0 0 20px;
}
#about .h3 {
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
#about hr {
  text-align: center;
}

#about .about-text li {
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
}
#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: #0FB749;
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}
#about img {
  width: 720px;
  background: #fff;
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px)  {
  #about h1{
    font-size: 14px;
    margin-top: 10px;
    text-transform: uppercase;
  }

  #about h3{
    font-size: 16px;
    margin-top: 10px;
  }

  #about p{
    font-size: 12px;
  }
  #about li{
    font-size: 11px;
  }
  #about img{
    width: 550px;
  }
  
}

/* Default layout for larger screens */
.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
}

.about-image {
  flex: 1;
  order: 1;
}

.about-content {
  flex: 1;
  order: 2;
  max-width: 100%;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse; /* Stack the columns in reverse order */
  }

  .about-image {
    order: 1; /* Image will be at the top */
    margin-bottom: 20px; /* Add some spacing after the image */
  }

  .about-content {
    order: 2; /* Content will be at the bottom */
  }
}


/* Services Section */
#services {
  padding: 10px 0;
  background: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  max-width: 100%;
}

#services .service-desc {
  margin: 10px 10px 20px;
}

#services h2 {
  color: #fff;
}

#services h2 {
  font-size: 16px;
  margin-top: 0;
}

#services h3 {
  font-size: 16px;
  margin-top: 0;
}

#services p {
  font-size: 14px;
}

#services i.fa {
  font-size: 30px; /* Adjust icon size for mobile */
  margin-right: 8px; /* Adjust spacing for mobile */
}

#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}

/* Remove round background and adjust icon styling */
#services i.fa {
  font-size: 40px; /* Adjust icon size */
  color: #C7BA3A; /* Icon color */
  margin-right: 10px; /* Space between icon and heading */
  display: inline-block; /* Align icon and heading horizontally */
}

/* Align heading and icon horizontally */
#services .service-card h3 {
  display: inline-block; /* Make heading inline */
  font-weight: 500;
  color: #fff;
  margin: 0; /* Remove default margin */
}

#services p {
  color: rgba(255, 255, 255, 0.75);
}

#services .service-desc {
  margin-bottom: 40px;
}

.service-card {
  background-color: #000;
  padding: 20px;
  margin: 5px;
  border-radius: 10px; /* Optional: Add rounded corners */
  min-height: 350px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  #services {
    font-family: "Inter", sans-serif;
  }

  #services h2 {
    font-size: 16px;
    margin-top: 0;
  }

  #services h3 {
    font-size: 16px;
    margin-top: 0;
  }

  #services p {
    font-size: 14px;
  }

  #services i.fa {
    font-size: 30px; /* Adjust icon size for mobile */
    margin-right: 8px; /* Adjust spacing for mobile */
  }

}

/* Values Section */
#values {
  padding: 10px 0;
  background: linear-gradient(to right, #0FB749 0%, #000000 100%);
  color: #fff;
  max-width: 100%;
}
#values .value-desc {
  margin: 10px 10px 20px;
}
#values h2 {
  color: #fff;
}
#values .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#values i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#values h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}
#values p {
  color: rgba(255, 255, 255, 0.75);
}
#values .value-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #values {
    width: 111%;
  }
  #values h2{
    font-size: 16px;
  }
  #values h3{
    font-size: 14px;
  }
  #values p{
    font-size: 12px;
  }
  #values i.fa {
    font-size: 22px;
    width: 60px;
    height: 60px;
    padding: 20px 0;
    background: linear-gradient(to right, #0FB749 0%, #0FB749 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  
}
/* Portfolio Section */
#portfolio {
  padding: 10px 0;
}
.portfolio-item {
  margin: 1px 15px 0 14px;
  padding: 0;
}
.portfolio-items{
  margin-top: 20px;
}
.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(0, 255, 149, 0.8) 0%,   /* Darker maroon */
    rgba(0, 255, 149, 0.8) 100%   /* Bright red (can be adjusted to a lighter maroon) */
);

  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #fff;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hover-bg:hover .hover-text {
  opacity: 1;
}

/* Partner Section */
#partner {
  padding: 10px;
  margin-bottom: 10px;
}

.partner-items {
  display: flex;
  flex-wrap: wrap; /* Ensures items wrap to the next line on smaller screens */
  justify-content: center; /* Centers the items */
  gap: 15px; /* Adds space between the items */
}

.partner-item {
  margin: 15px;
  padding: 0;
  flex: 1 1 100%; /* Takes full width on smaller screens */
  max-width: 200px; /* Limits the width of the image containers */
}

.partner-item img {
  width: 100%; /* Makes the image responsive */
  height: auto; /* Maintains the aspect ratio */
  display: block;
  max-width: 100%; /* Ensures images don’t exceed their container */
}

.hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}

.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(0, 255, 168, 0.8) 0%, /* Light Maroon */
    rgba(74, 209, 92, 0.8) 100%   /* Deeper Light Maroon */
  );
  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}

.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #fff;
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  backface-visibility: hidden;
  transform: translateY(0);
}

.hover-bg:hover .hover-text {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .partner-item {
    flex: 1 1 48%; /* Adjusts to take 48% of the width on medium screens */
  }
  #partner h2{
    font-size: 16px;
  }
  #partner p{
    font-size: 12px;
  }
  }
}

@media (max-width: 576px) {
  .partner-item {
    flex: 1 1 100%; /* Takes full width on small screens */
  }

  #partner {
    padding: 50px 0; /* Reduces padding on small screens */
  }
}
/* Custom styles for the carousel indicators */
.carousel .control-dots .dot {
  background-color: #fff; /* Default dot color */
  border-radius: 50%; /* Make sure the dots are round */
  width: 20px; /* Set the width of the dots */
  height: 10px; /* Set the height of the dots */
  margin: 0 5px; /* Set space between dots */
  opacity: 1; /* Make sure the dots are fully visible */
}

.carousel .control-dots .dot.selected {
  background-color: #0FB749; /* Active dot color */
  border-color: #0FB749; /* Optional: border color for the active dot */
}


/* Testimonials Section */
#testimonials {
  padding: 10px 0;
  background: #f6f6f6;
  max-width: 100%;
}
#testimonials i {
  color: #e6e6e6;
  font-size: 32px;
  margin-bottom: 20px;
}
.testimonial {
  position: relative;
  padding: 20px;
}
.testimonial-image {
  float: left;
  margin-right: 15px;
}
.testimonial-image,
.testimonial-image img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.testimonial-content {
  position: relative;
  overflow: hidden;
}
.testimonial-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
}
@media (max-width: 768px) {
  #testimonials h2{
    font-size: 14px;
  }
  
}
/* Team Section */
#team {
  padding: 100px 0;
}
#team h4 {
  margin: 5px 0;
}
#team .team-img {
  width: 240px;
}
#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 10px 0 0;
  color: #888;
}
.contact-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: url(../img/infrasoft.jpeg) no-repeat center center/cover;
  color: white;
  padding: 5px 2px;
  min-height: 100vh;
  max-width: 100%;
  z-index: 1; /* Ensures content stays above the overlay */
}

/* Overlay with gradient */
.contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 128, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: -1; /* Places the overlay behind the content */
}

.form-container {
  flex: 1;
  max-width: 400px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  color: black;
}

.info-container {
  flex: 1;
  max-width: 750px;
  padding: 30px;
}

.contact-container  h3 {
  margin-bottom: 15px;
  color: white;
}

p {
  font-size: 16px;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin: 10px 0 5px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #0FB749;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #004d00;
}

.contact-btns {
  display: flex;
  justify-content: center; /* Centers the buttons */
  margin-top: 30px;
}

.button-container {
  display: flex;
  gap: 15px; /* Spacing between buttons */
}

.custom-btn {
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 10px 20px;
  border-radius: 30px; /* Fully rounded buttons */
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.custom-btn:hover {
  background-color: #004d00;
  color: white;
}


.footer-container {
  position: relative;
  background-image: url(../img/about.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 50px 20px;
  text-align: left;
}

.footer-container h2, h3 {
  color: white;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 128, 0, 0.6), rgba(0, 0, 0, 0.9));
  z-index: 1;
}

.footer-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  z-index: 2;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section.contact-us .subscribe {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-section.contact-us input {
  padding: 8px;
  flex: 1;
  border-radius: 5px;
  border: none;
}

.footer-section.contact-us button {
  background-color: green;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Lower Section (Copyright) */
.footer-bottom {
  background: linear-gradient(to right, black, green, black);
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: -5px; /* Pull it up slightly if needed */
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
  margin-top: 20px;
  margin-bottom: 20px;
}

.left-btn {
  left: 10px;
}

.right-btn {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



