/*

Template 2106 Soft Landing

http://www.tooplate.com/view/2106-soft-landing
	
*/
 
  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #f9f9f9;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: normal;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #29ca8e;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .section-title {
    padding-bottom: 40px;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #contact,
  footer {
    background: #ffffff;
    text-align: center;
  }

  .overlay {
    background: #536976;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #292E49, #536976);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #292E49, #536976); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }

  .online-form input[type="email"] {
    width: 60%;
  }

  .online-form button {
    background: #29ca8e;
    border: 0;
    color: #ffffff;
    position: absolute;
    right: 6em;
    width: 25%;
  }

  .online-form button:hover {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #29ca8e;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 30px;
    transition: 0.5s 0.2s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 25px 0;
  }

  .custom-navbar .navbar-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
  }

  /* Logo Text Styling */
  .logo-text {
    color: inherit;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.8px;
    margin: 0;
    line-height: 1.2;
    text-transform: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 50%, #22a06b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 15px rgba(41, 202, 142, 0.3);
    transition: all 0.3s ease;
  }

  .logo-text::before {
    content: '';
    background: url('../images/favicon.svg') no-repeat center center;
    background-size: contain;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(41, 202, 142, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  .logo-text:hover {
    transform: scale(1.05);
    text-shadow: 0 6px 20px rgba(41, 202, 142, 0.5);
  }

  .logo-text:hover::before {
    box-shadow: 0 6px 20px rgba(41, 202, 142, 0.6);
    transform: rotate(-5deg);
  }

  /* Logo adjustments for navbar states */
  .top-nav-collapse .logo-text {
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 50%, #22a06b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fixed logo spacing in sticky navbar */
    margin-top: 5px;
  }

  .top-nav-collapse {
    background: #ffffff;
  }

  .custom-navbar .navbar-nav {
    margin-left: 6em;
  }

  .custom-navbar .nav li a {
    font-size: 16px;
    font-weight: normal;
    color: #f0f0f0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #29ca8e;
    border-color: transparent;
  }

  /* Enhanced Call Now Button Styling */
  .navbar-right li a {
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(41, 202, 142, 0.4);
    transition: all 0.3s ease;
    margin-left: 15px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .navbar-right li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .navbar-right li a:hover::before {
    left: 100%;
  }

  .navbar-right li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 202, 142, 0.6);
    color: #ffffff !important;
  }

  /* Enhanced Call Now Button for Sticky Navbar */
  .top-nav-collapse .navbar-right li a {
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    box-shadow: 0 4px 15px rgba(41, 202, 142, 0.3);
  }

  .top-nav-collapse .navbar-right li a:hover {
    box-shadow: 0 6px 20px rgba(41, 202, 142, 0.5);
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0; 
    }

    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: #252525;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }



  /*---------------------------------------
      HOME          
  -----------------------------------------*/

  #home {
    background: url('../images/home-bg.jpg') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 12em;
    text-align: center;
  }

  #home h1 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .home-info {
    margin-top: 7em;
  }

  .home-info h3 {
    color: #f0f0f0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
  }

  .home-info p {
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0 30px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-info .section-btn {
    margin-top: 20px;
  }

  /* Detailed Services Sections */
  #detailed-services {
    background: #ffffff;
  }

  #specialized-services {
    background: #f9f9f9;
  }

  #maintenance-services {
    background: #ffffff;
  }

  #detailed-services .section-title p,
  #specialized-services .section-title p,
  #maintenance-services .section-title p {
    font-size: 16px;
    color: #757575;
    max-width: 700px;
    margin: 0 auto;
  }

  .pricing-info p strong {
    color: #29ca8e;
    font-size: 14px;
  }

  .pricing-info p em {
    color: #999999;
    font-size: 12px;
    font-style: italic;
  }

  /* Specialized Services Equal Height Cards */
  #specialized-services .row {
    display: flex;
    flex-wrap: wrap;
  }

  #specialized-services .col-md-4 {
    display: flex;
  }

  #specialized-services .pricing-thumb {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
    width: 100%;
  }

  #specialized-services .pricing-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #specialized-services .pricing-bottom {
    position: static;
    text-align: center;
    margin-top: auto;
    padding-top: 30px;
  }

  #specialized-services .pricing-btn {
    position: static;
    display: inline-block;
    margin: 0 auto;
  }

  /* Ensure equal height on mobile */
  @media (max-width: 767px) {
    #specialized-services .row {
      display: block;
    }
    
    #specialized-services .col-md-4 {
      display: block;
    }
    
    #specialized-services .pricing-thumb {
      min-height: auto;
      margin-bottom: 30px;
    }
  }
  


  /*---------------------------------------
      FEATURE/SERVICES              
  -----------------------------------------*/

  #feature,
  #services {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfa 100%);
    position: relative;
    padding: 100px 0;
  }

  #feature::before,
  #services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 50%, #29ca8e 100%);
    z-index: 1;
  }

  #feature .section-title,
  #services .section-title {
    margin-bottom: 60px;
  }

  #feature .section-title h1,
  #services .section-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #202020 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
  }

  #feature .nav-tabs {
    border-bottom: 0;
    background: #ffffff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }

  #feature .nav>li>a {
    padding: 15px 25px;
    margin: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  #feature .nav-tabs>li>a {
    color: #666;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border-bottom: 0;
    border-radius: 10px;
    margin-right: 10px;
    background: transparent;
    transition: all 0.3s ease;
  }

  #feature .nav-tabs>li.active>a, 
  #feature .nav-tabs>li.active>a:focus, 
  #feature .nav-tabs>li.active>a:hover {
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    color: #ffffff;
    border: 0;
    box-shadow: 0 5px 15px rgba(41, 202, 142, 0.3);
    transform: translateY(-2px);
  }

  #feature .nav>li>a:focus, 
  #feature .nav>li>a:hover {
    background: linear-gradient(135deg, #f0f9f5 0%, #e8f7ed 100%);
    border: 0;
    color: #29ca8e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 202, 142, 0.2);
  }

  #feature .tab-content {
    margin-top: 50px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #29ca8e;
  }

  .tab-pane-item {
    margin: 30px 0;
    padding: 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fcfa 0%, #f0f9f5 100%);
    border: 1px solid rgba(41, 202, 142, 0.1);
    transition: all 0.3s ease;
  }

  .tab-pane-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(41, 202, 142, 0.15);
    border-color: rgba(41, 202, 142, 0.3);
  }

  .tab-pane-item h2 {
    margin: 0 0 15px 0;
    color: #202020;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
  }

  .tab-pane-item h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    border-radius: 2px;
  }

  .tab-pane-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

  .feature-image {
    position: relative;
    bottom: 0;
    text-align: center;
  }

  .feature-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .feature-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  }



  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
  }

  #about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 50%, #29ca8e 100%);
    z-index: 1;
  }

  #about .section-title {
    margin-bottom: 60px;
  }

  #about .section-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #202020 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
  }

  #about .col-md-4 {
    margin: 0;
    padding: 15px;
  }

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(41, 202, 142, 0.1);
  }

  .team-thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(41, 202, 142, 0.3);
  }

  .team-thumb-up:after {
    display: none;
  }

  .team-thumb-down:after {
    display: none;
  }

  .team-info {
    padding: 40px 30px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfa 100%);
    border-radius: 0 0 20px 20px;
  }

  .team-info h2 {
    color: #202020;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
  }

  .team-info h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    border-radius: 2px;
  }

  .team-info small {
    color: #29ca8e;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
  }

  .team-info p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
  }

  .team-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
  }

  .team-thumb:hover img {
    transform: scale(1.05);
  }

  /* Special styling for alternating layout */
  .team-thumb-down {
    display: flex;
    flex-direction: column-reverse;
  }

  .team-thumb-down .team-info {
    border-radius: 20px 20px 0 0;
  }

  .team-thumb-down img {
    border-radius: 0 0 20px 20px;
  }

  .team-thumb-down:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }

  .team-info {
    position: relative;
    padding: 40px;
  }

  .team-info h2 {margin: 0;}

  .team-info small {
    display: block;
    font-size: 18px;
    margin: 5px 0 10px 0;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL           
  -----------------------------------------*/

  #testimonial {
    background: #ffffff;
  }

  #testimonial .col-md-6 {
    margin: 0;
    padding: 0;
  }

  #testimonial .section-title {
    padding-bottom: 0;
  }

  #testimonial h1 {
    color: #ffffff;
  }

  .testimonial-image {
    background: url('../images/testimonial-image.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 65vh;
  }

  .testimonial-info {
    background: #202020;
    padding: 60px;
    height: 65vh;
  }

  .testimonial-info h3 {
    color: #d9d9d9;
    font-style: italic;
    margin-top: 5px;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item h4 {
    color: #d9d9d9;
    display: inline-block;
    vertical-align: top;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }



  /*---------------------------------------
      SERVICE AREA & PRICING             
  -----------------------------------------*/

  #area,
  #pricing {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfa 100%);
    padding: 100px 0;
    position: relative;
  }

  #area::before,
  #pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 50%, #29ca8e 100%);
    z-index: 1;
  }

  #about .section-title,
  #pricing .section-title {
    text-align: center;
    margin-bottom: 60px;
  }

  #area .section-title h1,
  #pricing .section-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #202020 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
  }

  #pricing .col-md-4 {
    margin: 0;
    padding: 15px;
  }

  #pricing .col-md-4:last-child .pricing-thumb {
    border-right: 0;
  }

  .pricing-thumb {
    background: #ffffff;
    border: 1px solid rgba(41, 202, 142, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .pricing-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .pricing-thumb:hover::before {
    transform: translateX(0);
  }

  .pricing-thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(41, 202, 142, 0.3);
  }

  .pricing-title {
    padding-bottom: 20px;
    text-align: center;
  }

  .pricing-title h2 {
    color: #202020;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
  }

  .pricing-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    border-radius: 2px;
  }

  .pricing-info {
    border-top: 1px solid rgba(41, 202, 142, 0.2);
    border-bottom: 1px solid rgba(41, 202, 142, 0.2);
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fcfa 0%, #f0f9f5 100%);
    margin: 20px -30px;
    border-radius: 10px;
  }

  .pricing-info,
  .pricing-bottom {
    padding: 25px 30px;
  }

  .pricing-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
  }

  .pricing-info p::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #29ca8e;
    font-weight: bold;
    font-size: 14px;
  }

  .pricing-info p strong {
    color: #29ca8e;
    font-size: 16px;
    font-weight: 600;
  }

  .pricing-info p em {
    color: #999999;
    font-size: 13px;
    font-style: italic;
    display: block;
    margin-top: 5px;
  }

  .pricing-bottom {
    position: relative;
    text-align: center;
  }

  .pricing-bottom span {
    font-size: 20px;
    color: #29ca8e;
    font-weight: 600;
  }

  .pricing-btn {
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(41, 202, 142, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(41, 202, 142, 0.4);
    color: #ffffff;
    text-decoration: none;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 50%, #29ca8e 100%);
    z-index: 1;
  }

  #contact .section-title {
    position: relative;
    z-index: 2;
  }

  #contact .section-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #202020 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
  }

  #contact .section-title p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  /* Modern Contact Card */
  #contact .contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(41, 202, 142, 0.1);
    position: relative;
    overflow: hidden;
    margin: 20px 0;
  }

  #contact .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 100%);
  }

  #contact .contact-info {
    text-align: center;
  }

  #contact .contact-item {
    margin: 25px 0;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8fcfa 0%, #f0f9f5 100%);
    border-left: 4px solid #29ca8e;
    transition: all 0.3s ease;
  }

  #contact .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(41, 202, 142, 0.2);
  }

  #contact .contact-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(41, 202, 142, 0.3);
  }

  #contact .contact-item p {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
  }

  #contact .contact-item .phone-link {
    color: #29ca8e;
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
  }

  #contact .contact-item .phone-link:hover {
    color: #26b87a;
    transform: scale(1.05);
  }

  #contact .contact-item .hours {
    font-size: 16px;
    color: #666;
    font-weight: 500;
  }

  /* Enhanced CTA Button */
  #contact .section-btn {
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(41, 202, 142, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  #contact .section-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }

  #contact .section-btn:hover::before {
    left: 100%;
  }

  #contact .section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(41, 202, 142, 0.5);
    color: #ffffff;
    text-decoration: none;
  }

  /* Legacy form styles for compatibility */
  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #202020;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #202020;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #29ca8e;
    color: #ffffff;
  }
  


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    background: linear-gradient(135deg, #202020 0%, #2d3e50 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
  }

  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 50%, #29ca8e 100%);
  }

  footer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(41, 202, 142, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  footer .container {
    position: relative;
    z-index: 2;
  }

  footer .copyright-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  }

  footer .footer-left {
    padding-right: 30px;
  }

  footer .footer-right {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }

  footer .business-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  footer .business-name::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    margin-right: 15px;
    border-radius: 2px;
  }

  footer .contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
    font-size: 15px;
    transition: all 0.3s ease;
  }

  footer .contact-info-item:hover {
    color: #29ca8e;
    transform: translateX(5px);
  }

  footer .contact-info-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #29ca8e;
    font-size: 14px;
  }

  footer .contact-info-item a {
    color: #29ca8e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  footer .contact-info-item a:hover {
    color: #26b87a;
    text-decoration: none;
  }

  footer .footer-tagline {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 14px;
  }

  footer .service-highlights {
    text-align: right;
  }

  footer .service-highlight {
    background: rgba(41, 202, 142, 0.1);
    border: 1px solid rgba(41, 202, 142, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  footer .service-highlight:hover {
    background: rgba(41, 202, 142, 0.15);
    border-color: rgba(41, 202, 142, 0.3);
    transform: translateY(-2px);
  }

  footer .service-highlight .highlight-icon {
    color: #29ca8e;
    margin-right: 8px;
    font-size: 12px;
  }

  .copyright-text p {
    margin: 5px 0;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }
  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 60px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 15px;
      padding-left: 15px;
    }

    #feature .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: -24em;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    footer {
      padding: 60px 0 30px;
    }

    footer .footer-left,
    footer .footer-right {
      padding: 0;
    }

    footer .footer-right {
      margin-top: 30px;
      align-items: flex-start;
    }

    footer .service-highlights {
      text-align: left;
    }

    #contact .section-title h1 {
      font-size: 2.2rem;
    }

    #contact .contact-card {
      padding: 40px 30px;
    }
  }


  @media screen and (max-width: 767px) {

    .section-title {
      padding-bottom: 20px;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #202020;
      font-weight: normal;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #656565;
    }

    .feature-image {
      position: relative;
      bottom: 0;
    }

    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: 85vh;
    }

    .testimonial-info {
      padding: 30px;
    }

    /* Mobile Contact Section */
    #contact .section-title h1 {
      font-size: 1.8rem;
    }

    #contact .contact-card {
      padding: 30px 20px;
      margin: 10px 0;
    }

    #contact .contact-item {
      padding: 15px;
    }

    #contact .contact-item .icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    #contact .section-btn {
      padding: 15px 30px;
      font-size: 16px;
    }

    /* Mobile Footer */
    footer {
      padding: 40px 0 20px;
    }

    footer .copyright-text {
      padding: 30px 20px;
    }

    footer .business-name {
      font-size: 20px;
      text-align: center;
      margin-bottom: 25px;
    }

    footer .business-name::before {
      display: none;
    }

    footer .contact-info-item {
      justify-content: center;
      text-align: center;
      font-size: 14px;
    }

    footer .contact-info-item:hover {
      transform: none;
    }

    footer .footer-tagline {
      text-align: center;
      margin-top: 20px;
      font-size: 12px;
    }

    footer .footer-right {
      margin-top: 25px;
    }

    footer .service-highlight {
      padding: 12px 15px;
      font-size: 13px;
      text-align: center;
    }
  }


  @media screen and (max-width: 480px) {

    .online-form input[type="email"],
    .online-form .form-control {
      width: 85%;
    }

    .online-form .form-control {
      display: block;
      margin: 20px auto;
    }

    .online-form button {
      position: relative;
      right: 0;
    }

    .testimonial-image,
    .testimonial-info {
      height: 65vh;
    }

    /* Extra Small Mobile - Contact */
    #contact .section-title h1 {
      font-size: 1.5rem;
    }

    #contact .contact-card {
      padding: 25px 15px;
    }

    #contact .contact-item {
      padding: 12px;
      margin: 20px 0;
    }

    #contact .contact-item .icon {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }

    #contact .section-btn {
      padding: 12px 25px;
      font-size: 15px;
    }

    /* Extra Small Mobile - Footer */
    footer .copyright-text {
      padding: 25px 15px;
    }

    footer .business-name {
      font-size: 18px;
    }

    footer .contact-info-item {
      font-size: 13px;
      margin-bottom: 10px;
    }

    footer .service-highlight {
      padding: 10px 12px;
      font-size: 12px;
      margin-bottom: 10px;
    }
  }



  /*---------------------------------------
      FAQ               
  -----------------------------------------*/

  #faq {
    background: linear-gradient(135deg, #f8fcfa 0%, #ffffff 50%, #f1f9f5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  #faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #29ca8e 0%, #26b87a 50%, #29ca8e 100%);
    z-index: 1;
  }

  #faq::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(41, 202, 142, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
  }

  #faq .container {
    position: relative;
    z-index: 2;
  }

  #faq .section-title {
    margin-bottom: 60px;
  }

  #faq .section-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #202020 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
  }

  .panel-group {
    margin-bottom: 0;
  }

  .panel-group .panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(41, 202, 142, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .panel-group .panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(41, 202, 142, 0.15);
    border-color: rgba(41, 202, 142, 0.3);
  }

  .panel-group .panel-heading {
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfa 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .panel-group .panel-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 202, 142, 0.1), transparent);
    transition: left 0.6s ease;
  }

  .panel-group .panel:hover .panel-heading::before {
    left: 100%;
  }

  .panel-group .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top: 1px solid rgba(41, 202, 142, 0.1);
  }

  .panel-group .panel-title {
    margin: 0;
  }

  .panel-group .panel-title a {
    color: #29ca8e;
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 30px 35px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .panel-group .panel-title a::after {
    content: '+';
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #29ca8e;
    transition: all 0.3s ease;
    font-family: sans-serif;
    line-height: 1;
  }

  .panel-group .panel-title a[aria-expanded="true"]::after {
    content: '\2212';
    transform: translateY(-50%) rotate(180deg);
  }

  .panel-group .panel-title a:hover {
    color: #222;
    text-decoration: none;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .panel-group .panel-body {
    padding: 30px 35px 35px 35px;
    background: linear-gradient(135deg, #f8fcfa 0%, #f0f9f5 100%);
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    border-radius: 0 0 20px 20px;
  }

  .panel-group .panel-title a[aria-expanded="true"] {
    background: linear-gradient(135deg, #29ca8e 0%, #26b87a 100%);
    color: #ffffff;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    border-radius: 20px 20px 0 0;
  }

  .panel-group .panel-title a[aria-expanded="true"]:hover {
    background: linear-gradient(135deg, #26b87a 0%, #22a06b 100%);
    color: #ffffff;
  }

  .panel-group .panel-title a[aria-expanded="true"]::after {
    color: #ffffff;
  }

  /* Mobile FAQ Styles */
  @media screen and (max-width: 767px) {
    #faq .section-title h1 {
      font-size: 2.2rem;
    }

    .panel-group .panel-title a {
      font-size: 16px;
      padding: 25px 30px;
    }

    .panel-group .panel-title a::after {
      right: 30px;
      font-size: 20px;
    }

    .panel-group .panel-body {
      padding: 25px 30px 30px 30px;
      font-size: 15px;
    }
  }

  @media screen and (max-width: 480px) {
    #faq .section-title h1 {
      font-size: 1.8rem;
    }

    .panel-group .panel-title a {
      font-size: 15px;
      padding: 20px 25px;
    }

    .panel-group .panel-title a::after {
      right: 25px;
      font-size: 18px;
    }

    .panel-group .panel-body {
      padding: 20px 25px 25px 25px;
      font-size: 14px;
    }
  }
