:root {
  --primary-color: #1A237E;
  --secondary-color: #3949AB;
  --accent-color: #FF4081;
  --text-color: #1A237E;
  --text-light: #5C6BC0;
  --background-color: #E8EAF6;
  --background-dark: #1A237E;
  --success-color: #00C853;
  --warning-color: #FFD600;
  --danger-color: #D50000;
  --border-color: #C5CAE9;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}

#header .logo a {
  color: var(--primary-color);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 30px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--accent-color);
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--text-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background:     linear-gradient(
      rgba(0,0,0,0.7), 
      rgba(0,0,0,0.7)), url("../img/head.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: var(--primary-color);
}

#hero .btn-get-started:hover {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}

/* Убираем линию для всех секций кроме Contact */
#transportation .section-title h2::after,
#warehousing .section-title h2::after,
#business .section-title h2::after,
#manufacturing .section-title h2::after,
#management .section-title h2::after,
#security .section-title h2::after {
  display: none;
}

/* Убираем линию под h3 в табах */
.tabs .tab-pane h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  display: block;
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 40px 0;
  color: #000;
  background: var(--background-color);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 60px 0;
}

.about .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.about .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.about .section-title p {
  font-size: 18px;
  color: #444444;
}

.about .motto {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about .lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444444;
}

.about .services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about .service-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.about .service-item i {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.about .service-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.about .service-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.about .expertise-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.about .expertise-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about .achievements-list {
  margin-top: 30px;
}

.about .achievement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about .achievement-item:hover {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.about .achievement-item i {
  font-size: 28px;
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.about .achievement-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.about .achievement-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .about .services-list {
    grid-template-columns: 1fr;
  }
  
  .about .content {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

#bprogram_img {
	height:300px;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.tabs .mt10 {
	margin-top:1rem;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  /*border-radius: 4px;*/
}

.contact .info-box i {
  font-size: 32px;
  color: var(--secondary-color);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted var(--border-color);
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  /*border-radius: 4px;*/
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  /*border-radius: 4px;*/
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #111111;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  font-size: 16px;
  background: var(--primary-color);
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 30px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--secondary-color);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #000;
  font-size: 14px;
  background: var(--background-color);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--background-dark);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: var(--accent-color);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Space Grotesk", sans-serif;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

/* Transportation Section Styles */
.transportation-features {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  gap: 20px;
}

.transportation-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.transportation-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.transportation-features .feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.transportation-features .feature-item span {
  font-weight: 500;
  color: #333;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 20px;
}

.cta-text a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-text a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.transportation-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.transportation-image img {
  transition: transform 0.3s ease;
}

.transportation-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: #fff;
}

.overlay-content {
  text-align: center;
}

.overlay-content i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.overlay-content h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.overlay-content p {
  margin: 0;
  opacity: 0.9;
}

/* Новые стили для изображения и текста */
.tabs .tab-pane img {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.tabs .tab-pane img:hover {
  transform: scale(1.02);
}

.tabs .tab-pane h3 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.tabs .tab-pane .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Warehousing Section Styles */
.warehousing-features {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  gap: 20px;
}

.warehousing-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.warehousing-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.warehousing-features .feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.warehousing-features .feature-item span {
  font-weight: 500;
  color: #333;
}

.warehousing-benefits {
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.warehousing-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warehousing-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.warehousing-benefits ul li:last-child {
  margin-bottom: 0;
}

.warehousing-benefits ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.section-bg .warehousing-features .feature-item,
.section-bg .warehousing-benefits {
  background: #fff;
}

.section-bg .warehousing-benefits ul li {
  color: #555;
}

/* Business Programs Section Styles */
.business-intro {
  margin-bottom: 25px;
}

.business-intro .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.business-image {
  margin-bottom: 30px;
  text-align: center;
}

.business-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.business-image img:hover {
  transform: scale(1.02);
}

.business-goals {
  margin: 0 0 25px 0;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.goal-item:last-child {
  margin-bottom: 0;
}

.goal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.goal-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.goal-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.goal-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.business-note {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.business-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 991px) {
  .business-image {
    margin: 30px 0;
  }
  
  .business-goals {
    margin-top: 0;
  }
}

/* Manufacturing Section Styles */
.manufacturing-intro {
  margin-bottom: 30px;
}

.manufacturing-intro .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.manufacturing-features {
  margin: 30px 0;
}

.manufacturing-features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.manufacturing-features .feature-item:last-child {
  margin-bottom: 0;
}

.manufacturing-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.manufacturing-features .feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.manufacturing-features .feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.manufacturing-features .feature-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.manufacturing-benefits {
  margin: 30px 0;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.manufacturing-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manufacturing-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.manufacturing-benefits ul li:last-child {
  margin-bottom: 0;
}

.manufacturing-benefits ul li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.2rem;
}

.manufacturing-image {
  position: relative;
  margin-bottom: 30px;
}

.manufacturing-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.manufacturing-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .manufacturing-features .feature-item {
    padding: 15px;
  }
  
  .manufacturing-features .feature-item i {
    font-size: 1.8rem;
    margin-right: 15px;
  }
  
  .manufacturing-benefits {
    padding: 20px;
  }
}

/* Management Section Styles */
.management-features {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  gap: 20px;
}

.management-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.management-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.management-features .feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.management-features .feature-item span {
  font-weight: 500;
  color: #333;
}

.management-benefits {
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.management-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.management-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.management-benefits ul li:last-child {
  margin-bottom: 0;
}

.management-benefits ul li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .management-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .management-features .feature-item {
    width: 100%;
  }
}

/* Security Solutions Section Styles */
.security-intro {
  margin-bottom: 25px;
}

.security-intro .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.security-features {
  margin: 30px 0;
}

.security-features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.security-features .feature-item:last-child {
  margin-bottom: 0;
}

.security-features .feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.security-features .feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.security-features .feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.security-features .feature-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.security-image {
  position: relative;
  margin-bottom: 30px;
}

.security-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.security-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .security-features .feature-item {
    padding: 15px;
  }
  
  .security-features .feature-item i {
    font-size: 1.8rem;
    margin-right: 15px;
  }
}

.btn-get-started {
  border-radius: 50px;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background: var(--secondary-color);
  color: #fff;
}

.php-email-form button[type="submit"] {
  border-radius: 50px;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.php-email-form button[type="submit"]:hover {
  background: var(--secondary-color);
}
