.section-padding {
  margin-top: -40px;
  margin-bottom: 60px;
}

/* About Section - Base Styles */
.about_section {
  background-color: #071a52;
  padding: 80px 0;
}

/* Row Alignment */
.about_section .row {
  align-items: center;
}

/* Image Container */
.about_section .img_container .img-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Detail Box - Desktop */
.about_section .detail-box {
  background-color: #ffffff;
  padding: 45px 25px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -15px;
}

/* Paragraph Styling */
.about_section .detail-box p {
  margin: 5px 0 0;
}

/* Button Styling */
.about_section .detail-box a {
  display: inline-block;
  padding: 0px 35px;
  background-color: #8eec69;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #8eec69;
  color: #8eec69;
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
  .about_section {
    padding: 40px 0;
  }
  
  .about_section .detail-box {
    padding: 30px 35px;
    margin-left: 0;
    width: 100%;
  }
  
  .about_section .btn-box {
    padding-left: 35px;
  }
  
  .about_section .detail-box p {
    padding: 0 !important;
    margin-left: 0;
  }
}

.country_section .box {
  display: block;
  position: relative;
  margin-top: 45px;
  overflow: hidden;
  border-radius: 5px;
}

.country_section .box img {
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.country_section .box:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.country_section .detail-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.country_section .detail-box h3 {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
}



.info_section {
  background-color: #05133b;
  color: #ffffff;
  padding: 75px 0 10px 0;
}

.info_section .row > div {
  margin-bottom: 25px;
}

.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #ffffff;
}

.info_section .info_logo {
  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;
}

.info_section .info_logo .navbar-brand {
  padding: 0;
  margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand span {
  font-size: 24px;
  color: #ffffff;
}

.info_section .info_links ul {
  padding: 0;
}

.info_section .info_links ul li {
  list-style-type: none;
}

.info_section .info_links ul li a {
  color: #ffffff;
}

.info_section .info_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact a {
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  font-size: 20px;
  margin-right: 5px;
}

.info_section .info_form form input {
  outline: none;
  border: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 5px;
}

.info_section .info_form form button {
  padding: 8px 35px;
  outline: none;
  border: none;
  color: #ffffff;
  background: #8eec69;
  border-radius: 5px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .info_form .social_box {
  margin-top: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_form .social_box a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}

.info_logo p,
.info_services ul li a {
  color: white !important;
}

.info_services h5 {
  color: white;
}

/* Custom spacing system */
.pt-mb-3 { margin-bottom: 1.5rem !important; }
.pt-mb-4 { margin-bottom: 2.5rem !important; }
.pt-px-3 { 
    padding-right: 1.5rem !important; 
    padding-left: 1.5rem !important; 
}

/* Custom responsive margins */
@media (max-width: 767.98px) {
    .pt-mb-3 { margin-bottom: 1rem !important; }
    .pt-mb-4 { margin-bottom: 1.5rem !important; }
    .pt-px-3 { 
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
}
