@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500;600&family=Poppins:wght@400;500&display=swap');


  :root {
    /* Primary Colors */
    --primary-orange: #ff8a1d;
    --primary-orange-light: #ffaa53;
    --primary-orange-dark: #e67300;
    --primary-orange-glow: rgba(255, 138, 29, 0.5);
    
    /* Secondary Colors */
    --primary-black: #121212;
    --secondary-black: #232323;
    --light-black: #333333;
    --dark-gray: #444444;
    --light-gray: #f0f0f0;
    
    /* Accent Colors */
    --accent-blue: #1e3c72;
    --white: #ffffff;

    /* Transition Settings */
    --trans-normal: all 0.3s ease;
    --trans-slow: all 0.5s ease;
  }
  .one{
      color: black;
    }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: var(--trans-normal);
  }

  body {
    font-family: 'Lato', sans-serif;
    color: var(--primary-black);
    background-color: var(--light-gray);
    overflow-x: hidden;
  }

  /* ========== GENERAL CLASSES ========== */

  .layout_padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .layout_padding2 {
    padding: 45px 0;
  }

  .layout_padding2-top {
    padding-top: 45px;
  }

  .layout_padding2-bottom {
    padding-bottom: 45px;
  }

  .layout_padding-top {
    padding-top: 100px;
  }

  .layout_padding-bottom {
    padding-bottom: 100px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ========== HEADINGS ========== */

  .heading_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
  }

  .heading_container::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    margin-top: 15px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-orange-glow);
  }

  .heading_container h2 {
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 32px;
    color: var(--primary-black);
    margin-bottom: 10px;
    position: relative;
  }

  .heading_container h2::first-letter {
    color: var(--primary-orange);
    font-size: 38px;
  }

  .heading_container p {
    margin-bottom: 0;
    color: var(--dark-gray);
    line-height: 1.6;
  }

  .heading_container.heading_center {
    align-items: center;
    text-align: center;
  }

  .heading_container.heading_center::after {
    margin-left: auto;
    margin-right: auto;
  }

  h1, h2 {
    font-family: 'Merriweather Sans', sans-serif;
  }

  a, a:hover, a:focus {
    text-decoration: none;
    transition: var(--trans-normal);
  }

  /* ========== BUTTONS ========== */

  .btn-style-1 {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 12px 32px;
    background-color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 138, 29, 0.3);
    transition: var(--trans-normal);
  }

  .btn-style-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: var(--trans-normal);
    z-index: -1;
  }

  .btn-style-1:hover {
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 138, 29, 0.4);
  }

  .btn-style-1:hover::before {
    left: 0;
  }

  .btn-style-2 {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 12px 32px;
    background-color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--trans-normal);
  }

  .btn-style-2::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
    z-index: -1;
  }

  .btn-style-2:hover {
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 138, 29, 0.4);
  }

  .btn-style-2:hover::before {
    right: 0;
  }

  /* ========== HEADER SECTION ========== */

  .hero_area {
    position: relative;
    background-color: #f8f8f8;
    background-image: linear-gradient(135deg, rgba(255, 138, 29, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  }

  .header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }

  .header_section .header_top {
    padding: 15px 0;
    background-color: var(--primary-black);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  .header_section .header_top .contact_nav {
    display: flex;
    justify-content: space-between;
  }

  .header_section .header_top .contact_nav a {
    color: var(--white);
    margin: 0 15px;
    position: relative;
    transition: var(--trans-normal);
  }

  .header_section .header_top .contact_nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .header_section .header_top .contact_nav a:hover {
    color: var(--primary-orange-light);
  }

  .header_section .header_top .contact_nav a:hover::after {
    width: 100%;
  }

  .header_section .header_top .contact_nav a i {
    color: var(--primary-orange);
    margin-right: 5px;
  }

  .header_section .header_bottom {
    padding: 0 0;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .navbar-brand {
    padding: 0;
    margin: 0;
    color: var(--primary-black);
    font-weight: bold;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    transition: var(--trans-normal);
  }

  .navbar-brand span {
    color: var(--primary-orange);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
  }
  

  .navbar-brand span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .navbar-brand:hover {
    transform: scale(1.05);
  }

  .navbar-brand:hover span::after {
    height: 3px;
    box-shadow: 0 0 8px var(--primary-orange-glow);
  }

  .custom_nav-container {
    padding: 0;
  }

  .custom_nav-container .navbar-nav {
    margin-left: auto;
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 25px;
    color: var(--primary-black);
    text-align: center;
    font-weight: 600;
    position: relative;
    transition: var(--trans-normal);
  }

  .custom_nav-container .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .custom_nav-container .navbar-nav .nav-item:hover .nav-link, 
  .custom_nav-container .navbar-nav .nav-item.active .nav-link {
    color: var(--primary-orange);
  }

  .custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
  .custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
    width: 70%;
  }

  .custom_nav-container .form-inline .nav_search-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    color: var(--primary-black);
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-normal);
  }

  .custom_nav-container .form-inline .nav_search-btn:hover {
    color: var(--primary-orange);
    transform: scale(1.1);
  }

  .custom_nav-container .navbar-toggler {
    outline: none;
    padding: 0;
    width: 37px;
    height: 42px;
    transition: var(--trans-normal);
  }

  .custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 3px;
    background-color: var(--primary-black);
    margin: 7px 0;
    position: relative;
    border-radius: 3px;
    transition: var(--trans-normal);
  }

  .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: var(--primary-black);
    top: -10px;
    border-radius: 3px;
    transition: var(--trans-slow);
  }

  .custom_nav-container .navbar-toggler span::after {
    top: 10px;
  }

  .custom_nav-container .navbar-toggler:hover span,
  .custom_nav-container .navbar-toggler:hover span::before,
  .custom_nav-container .navbar-toggler:hover span::after {
    background-color: var(--primary-orange);
  }

  .custom_nav-container .navbar-toggler[aria-expanded="true"] {
    transform: rotate(360deg);
  }

  .custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    transform: rotate(45deg);
    background-color: var(--primary-orange);
  }

  .custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, 
  .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    transform: rotate(90deg);
    top: 0;
    background-color: var(--primary-orange);
  }

  .quote_btn-container {
    display: flex;
    align-items: center;
  }

  .quote_btn-container a {
    color: var(--white);
    margin-right: 25px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 4px;
    background-color: var(--primary-orange);
    box-shadow: 0 4px 10px rgba(255, 138, 29, 0.2);
    transition: var(--trans-normal);
  }

  .quote_btn-container a span {
    margin-left: 5px;
  }

  .quote_btn-container a:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 138, 29, 0.3);
  }
  /* Logo container */
.logo-container {
  display: flex;
  align-items: center;
}

/* Logo image styling */
.logo {
  /* Size */
  height: 40px;  /* Fixed height */
  width: auto;   /* Width scales proportionally */
  max-width: 200px; /* Maximum width */
  
  /* Appearance */
  object-fit: contain; /* Preserves aspect ratio */
  
  /* Spacing */
  margin-right: 15px;
  
  /* Effects */
  transition: all 0.3s ease;
}

/* Logo hover effect (optional) */
.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* For high resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Consider using a 2x version of your logo for retina displays */
  /* .logo {
    background-image: url('logo@2x.png');
  } */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .logo {
    height: 32px;
    margin-right: 10px;
  }
}

/* For very small screens */
@media screen and (max-width: 480px) {
  .logo {
    height: 28px;
  }
}

  /* ========== SLIDER SECTION ========== */

  .slider_section {
    flex: 1;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: bottom;
    position: relative;
    overflow: hidden;
   background: linear-gradient(
  360deg, 
  rgba(255, 254, 254, 0.9) 0%, 
  rgba(225,225,225,0.95) 50%, 
  rgba(180,180,180,0.95) 75%, 
  rgba(134,134,134,1) 100%
);

  }

  .slider_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255, 138, 29, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: -1;
  }

  .slider_section .row {
    align-items: center;
  }

  .slider_section #customCarousel1 {
    width: 100%;
    position: unset;
  }

  .slider_section .detail-box {
    padding-bottom: 90px;
  }

  .slider_section .detail-box h1 {
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--primary-black);
    font-size: 48px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
  }

  .slider_section .detail-box h1::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: -10px;
    left: 0;
    background-color: var(--primary-orange);
    box-shadow: 0 0 10px var(--primary-orange-glow);
  }

  .slider_section .detail-box h1 span {
    color: var(--primary-orange);
  }

  .slider_section .detail-box p {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
  }

  .slider_section .detail-box a {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 12px 45px;
    background-color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 5px;
    color: var(--white);
    margin-top: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 138, 29, 0.3);
    transition: var(--trans-normal);
  }

  .slider_section .detail-box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: var(--trans-normal);
    z-index: -1;
  }

  .slider_section .detail-box a:hover {
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 138, 29, 0.4);
  }

  .slider_section .detail-box a:hover::before {
    left: 0;
  }

  .slider_section .img-box {
    position: relative;
  }

  .slider_section .img-box img {
    width: 100%;
    border-radius: 10px;
    transition: var(--trans-normal);
  }

 

  /* ========== FEATURE SECTION ========== */

 .feature_section {
  transform: translateY(-50%);
}

.feature_section .feature_container {
  display: flex;
}

.feature_section .feature_container .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 10px;
  padding: 45px 25px;
  background-color: var(--white);
  color: var(--dark-gray);
  border-radius: 8px;
  transition: var(--trans-normal);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature_section .feature_container .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-orange);
  transition: var(--trans-normal);
}

.feature_section .feature_container .box .img-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: var(--trans-normal);
}

.feature_section .feature_container .box .img-box svg {
  width: 50%;
  height: auto;
  max-height: 100%;
  fill: var(--primary-orange);
  transition: var(--trans-normal);
}

.feature_section .feature_container .box .img-box svg path {
  fill: var(--primary-orange);
  transition: var(--trans-normal);
}

.feature_section .feature_container .box .name {
  margin-top: 20px;
  text-transform: uppercase;
  font-family: 'Merriweather Sans', sans-serif;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--primary-black);
  transition: var(--trans-normal);
}

.feature_section .feature_container .box p {
  color: var(--dark-gray);
  line-height: 1.6;
  transition: var(--trans-normal);
}

/* Hover effect (for all boxes) */
.feature_section .feature_container .box:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(255, 138, 29, 0.2);
}

.feature_section .feature_container .box:hover::before {
  height: 100%;
  opacity: 0.1;
}

.feature_section .feature_container .box:hover .img-box {
  background-color: var(--primary-orange);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--primary-orange-glow);
}

.feature_section .feature_container .box:hover .img-box svg,
.feature_section .feature_container .box:hover .img-box svg path {
  fill: var(--white);
}

/* ✅ Active box (now looks like normal one and keeps hover effect) */
.feature_section .feature_container .box.active {
  background-color: var(--white);
  color: var(--dark-gray);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: none;
}

.feature_section .feature_container .box.active::before {
  background-color: var(--primary-orange);
}

.feature_section .feature_container .box.active .img-box {
  background-color: var(--light-gray);
}

.feature_section .feature_container .box.active .img-box svg,
.feature_section .feature_container .box.active .img-box svg path {
  fill: var(--primary-orange);
}

/* Active box hover (same as others) */
.feature_section .feature_container .box.active:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(255, 138, 29, 0.2);
}

.feature_section .feature_container .box.active:hover .img-box {
  background-color: var(--primary-orange);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--primary-orange-glow);
}

.feature_section .feature_container .box.active:hover .img-box svg,
.feature_section .feature_container .box.active:hover .img-box svg path {
  fill: var(--white);
}


  /* ========== ABOUT SECTION ========== */

  .about_section {
    position: relative;
    overflow: hidden;

  }

  .about_section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 138, 29, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: -1;
  }

  .about_section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(18, 18, 18, 0.03);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: -1;
  }

  .about_section .row {
    align-items: center;
  }

  .about_section .detail-box h2 {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-black);
    position: relative;
    margin-bottom: 25px;
  }

  .about_section .detail-box h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-orange-glow);
  }

  .about_section .detail-box p {
    margin-top: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
  }

  .about_section .detail-box a {
    margin-top: 25px;
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 12px 45px;
    background-color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--trans-normal);
  }

  .about_section .detail-box a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
    z-index: -1;
  }

  .about_section .detail-box a:hover {
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 138, 29, 0.4);
  }

  .about_section .detail-box a:hover::before {
    right: 0;
  }

  .about_section .img-box {
    position: relative;
    padding: 10px;
  }

  .about_section .img-box::before {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 3px solid var(--primary-orange);
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate(15px, 15px);
    transition: var(--trans-normal);
  }

  .about_section .img-box img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--trans-normal);
  }

  .about_section .img-box:hover img {
    transform: translateY(-7px);
  }

  .about_section .img-box:hover::before {
    transform: translate(5px, 5px);
    border-color: var(--primary-black);
  }

  /* ========== PROFESSIONAL SECTION ========== */

  .professional_section {
    background-color: #f8f8f8;
    background-image: linear-gradient(135deg, rgba(255, 138, 29, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    position: relative;
    overflow: hidden;
  }

  .professional_section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: rgba(255, 138, 29, 0.05);
    border-radius: 50%;
    top: -175px;
    left: -175px;
    z-index: 0;
  }

  .professional_section .row {
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .professional_section .img-box {
    position: relative;
    padding: 10px;
  }

  .professional_section .img-box img {
    width: 100%;
    border-radius: 8px;
    transition: var(--trans-normal);
  }

  .professional_section .img-box::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 138, 29, 0.1);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    z-index: -1;
  }



  .professional_section .detail-box h2 {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-black);
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
  }

  .professional_section .detail-box h2::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-orange);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-orange-glow);
  }

  .professional_section .detail-box p {
    margin-top: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
  }

  .professional_section .detail-box a {
    margin-top: 30px;
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 12px 45px;
    background-color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 138, 29, 0.3);
    transition: var(--trans-normal);
  }

  .professional_section .detail-box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    transition: var(--trans-normal);
    z-index: -1;
  }

  .professional_section .detail-box a:hover {
    color: var(--white);
    border-color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
  }

  .professional_section .detail-box a:hover::before {
    left: 0;
  }

  /* ========== SERVICE SECTION ========== */

  .service_section {
    position: relative;
 background: linear-gradient(
  180deg,
  #f5f5f5 0%,    /* very light grey */
  #e0e0e0 35%,   /* soft mid-grey */
  #cfcfcf 70%,   /* balanced neutral grey */
  #b3b3b3 100%   /* slightly darker grey for depth */
);





    overflow: hidden;
  }

  .service_section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 138, 29, a.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
  }

  .service_section .box {
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 35px 25px;
    transition: var(--trans-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--white);
    border-bottom: 3px solid transparent;
  }

  .service_section .box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-orange);
    opacity: 0.1;
    z-index: -1;
    transition: var(--trans-normal);
  }

  .service_section .box .img-box {
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: var(--trans-normal);
  }

  .service_section .box .img-box img {
    max-height: 50%;
    max-width: 50%;
    transition: var(--trans-normal);
  }

  .service_section .box .detail-box {
    margin-top: 25px;
    transition: var(--trans-normal);
  }

  .service_section .box .detail-box h5 {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-black);
    transition: var(--trans-normal);
    position: relative;
    display: inline-block;
  }

  .service_section .box .detail-box h5::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .service_section .box .detail-box p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.7;
    transition: var(--trans-normal);
  }

  .service_section .box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(255, 138, 29, 0.2);
    border-bottom: 3px solid var(--primary-orange);
  }

  .service_section .box:hover::before {
    height: 100%;
  }

  .service_section .box:hover .img-box {
    background-color: var(--primary-orange);
    box-shadow: 0 0 20px var(--primary-orange-glow);
    transform: scale(1.1);
  }

  .service_section .box:hover .img-box img {
    filter: brightness(0) invert(1);
  }

  .service_section .box:hover .detail-box h5::after {
    width: 70%;
  }

  .service_section .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 55px;
  }

  .service_section .btn-box a {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 12px 45px;
    background-color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--trans-normal);
  }

  .service_section .btn-box a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
    z-index: -1;
  }

  .service_section .btn-box a:hover {
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 138, 29, 0.4);
  }

  .service_section .btn-box a:hover::before {
    right: 0;
  }

  /* ========== CLIENT SECTION ========== */

  .client_section {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
    background-image: linear-gradient(135deg, rgba(255, 138, 29, 0.03) 0%, rgba(0, 0, 0, 0.03) 100%);
  }

  .client_section .heading_container {
    align-items: center;
    text-align: center;
  }

  .client_section .box {
    margin: 20px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 35px;
    border-radius: 10px;
    background-color: var(--white);
    transition: var(--trans-normal);
    position: relative;
    z-index: 1;
  }

  .client_section .box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .client_section .box .client_id {
    display: flex;
  }

  .client_section .box .client_id .img-box {
    width: 115px;
    min-width: 115px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
    transition: var(--trans-normal);
  }

  .client_section .box .client_id .img-box img {
    width: 100%;
    border-radius: 100%;
    transition: var(--trans-normal);
  }

  .client_section .box .client_id .client_detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding-right: 25px;
  }

  .client_section .box .client_id .client_detail .client_info h6 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-black);
    position: relative;
    display: inline-block;
  }

  .client_section .box .client_id .client_detail .client_info h6::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .client_section .box .client_id .client_detail .client_info p {
    color: var(--dark-gray);
    font-style: italic;
  }

  .client_section .box .client_id .client_detail .client_info i {
    color: var(--primary-orange);
    font-size: 18px;
    margin: 0 2px;
  }

  .client_section .box .client_text {
    margin-top: 30px;
    color: var(--dark-gray);
    line-height: 1.8;
    position: relative;
  }

  .client_section .box .client_text::before {
    content: """;
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 100px;
    color: rgba(255, 138, 29, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1;
  }

  .client_section .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 138, 29, 0.1);
  }

  .client_section .box:hover::before {
    height: 8px;
  }

  .client_section .box:hover .img-box {
    box-shadow: 0 8px 20px rgba(255, 138, 29, 0.3);
    border-color: rgba(255, 138, 29, 0.1);
  }

  .client_section .box:hover .client_id .client_detail .client_info h6::after {
    width: 70%;
  }

  .client_section .owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .client_section .owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background-color: var(--primary-black);
    outline: none;
    margin: 0 10px;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--trans-normal);
  }

  .client_section .owl-carousel .owl-nav button:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 138, 29, 0.3);
  }

  /* ========== CONTACT SECTION ========== */

  .contact_section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    align-items: center;
    justify-content: center;
        display: flex;
    flex-direction: column;
    text-align: center;
  }

  .contact_section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 138, 29, 0.05);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    z-index: 0;
  }

  .contact_section .heading_container {
    margin-bottom: 45px;
    
  }

  .contact_section .form_container {
    position: relative;
    z-index: 1;
    

  }

  .contact_section input,
  .contact_section textarea {
    width: 100%;
    border: none;
    height: 55px;
    margin-bottom: 25px;
    padding-left: 25px;
    background-color: var(--light-gray);
    outline: none;
    color: var(--primary-black);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    border-left: 3px solid transparent;
    transition: var(--trans-normal);
     align-items: center;
    justify-content: center;
    display: flex;
    
  }

  .contact_section input:focus,
  .contact_section textarea:focus {
    box-shadow: 0 8px 20px rgba(255, 138, 29, 0.1);
    border-left: 3px solid var(--primary-orange);
  }

  .contact_section input::placeholder,
  .contact_section textarea::placeholder {
    color: #737272;
  }

  .contact_section textarea {
    height: 135px;
    padding-top: 15px;
  }

  .contact_section button {
    border: none;
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 15px 55px;
    background-color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 4px;
    color: var(--white);
    margin-top: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--trans-normal);
    cursor: pointer;
  }

  .contact_section button::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-orange);
    transition: var(--trans-normal);
    z-index: -1;
  }

  .contact_section button:hover {
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 138, 29, 0.3);
  }

  .contact_section button:hover::before {
    right: 0;
  }
  
  

 
  /* ========== INFO SECTION ========== */

  .info_section {
    padding: 90px 0 60px;
    background-color: var(--primary-black);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .info_section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 138, 29, 0.03);
    border-radius: 50%;
    top: -250px;
    left: -250px;
  }

  .info_section h4 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    display: inline-block;
  }

  .info_section h4::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--primary-orange);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-orange-glow);
  }

  .info_section .social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
  }

  .info_section .social-box .box {
    background-color: var(--white);
    padding: 8px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--trans-normal);
  }

  .info_section .social-box .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 138, 29, 0.3);
  }

  .info_section a {
    margin: 0 10px;
    color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .info_section a i {
    font-size: 22px;
    transition: var(--trans-normal);
  }

  .info_section a:hover {
    color: var(--primary-orange-light);
  }

  .info_section a:hover i {
    transform: scale(1.2);
  }

  .info_items a {
    position: relative;
  }

  .info_items .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }

  .info_items .item .img-box {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 138, 29, 0.3);
    transition: var(--trans-normal);
  }

  .info_items .item .img-box i {
    font-size: 28px;
    transition: var(--trans-normal);
  }

  .info_items .item p {
    margin-top: 25px;
    color: var(--white);
    margin-bottom: 0;
    position: relative;
  }

  .info_items .item p::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--primary-orange);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--trans-normal);
  }

  .info_items .item:hover .img-box {
    background-color: var(--white);
    color: var(--primary-orange);
    transform: scale(1.1);
  }

  .info_items .item:hover p::before {
    width: 50%;
  }

  .info_items {
    position: relative;
  }

  .info_items::before {
    content: "";
    position: absolute;
    top: 65px;
    width: 75%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    left: 50%;
    transform: translateX(-50%);
  }

  /* ========== FOOTER SECTION ========== */

  .footer_section {
    background-color: var(--primary-black);
    position: relative;
  }

  .footer_section p {
    margin: 0;
    padding: 25px 0;
    color: var(--white);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }

  .footer_section a {
    color: var(--primary-orange);
    transition: var(--trans-normal);
  }

  .footer_section a:hover {
    color: var(--primary-orange-light);
    text-decoration: underline;
  }

  /* ========== RESPONSIVE STYLES ========== */

  @media (max-width: 1200px) {
    .custom_nav-container .navbar-nav .nav-item .nav-link {
      padding: 10px 15px;
    }
    
    .feature_section .feature_container .box {
      padding: 35px 15px;
    }
  }

  @media (max-width: 992px) {
    .slider_section .detail-box {
      padding-bottom: 60px;
    }

    .slider_section .detail-box h1 {
      font-size: 40px;
    }

    .professional_section .img-box {
      margin-bottom: 30px;
    }

    .about_section .img-box {
      margin-top: 40px;
    }

    .info_items::before {
      width: 90%;
    }
  }

  @media (max-width: 768px) {
    .feature_section .feature_container {
      flex-direction: column;
    }

    .feature_section .feature_container .box {
      margin: 10px 0;
    }

    .slider_section .detail-box h1 {
      font-size: 35px;
    }

    .info_items::before {
      display: none;
    }

    .client_section .box .client_id {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .client_section .box .client_id .img-box {
      margin-right: 0;
      margin-bottom: 15px;
    }

    .client_section .box .client_id .client_detail {
      padding-right: 0;
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .header_section .header_top .contact_nav {
      flex-direction: column;
      align-items: center;
    }

    .header_section .header_top .contact_nav a {
      margin-bottom: 8px;
    }

    .slider_section .detail-box h1 {
      font-size: 30px;
    }

    .slider_section .detail-box {
      text-align: center;
      padding-bottom: 40px;
    }

    .slider_section .detail-box h1::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .service_section .box {
      margin: 15px 0;
    }
}


h1, h2, h3, h4, h5, h6 {
 font-family: 'Rubik', sans-serif;
  font-weight: 600;
}

body, p, label, input, button, a, span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
/* Make select match contact form inputs */
.contact_section select {
  width: 100%;
  height: 55px;
  margin-bottom: 25px;
  padding-left: 25px;
  padding-right: 48px; /* leave space for native arrow */
  background-color: var(--light-gray);
  outline: none;
  color: #737272; /* placeholder color by default */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  border-left: 3px solid transparent;
  transition: var(--trans-normal);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}

