@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

body {
  font-family: 'Oswald', sans-serif;

    overflow-x: hidden;
    background: #f9f9f9;
    }



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

  *{
    box-sizing: border-box;
  }
/* Applying Google Font */
* {
  font-family: 'Oswald', sans-serif;

}

  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: 15px;
    font-weight: normal;
    line-height: 24px;
  }
  
  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.anchor-tag{
  padding-left: 2rem;
  font-weight: bold;
  color: #007aff;
}
.anchor-tag:hover{
  font-weight: bolder;
  color: black;
}

  /*---------------------------------------
     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: #007aff;
    outline: none;
  }

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

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

  .section-title {
    padding-bottom: 20px;
    
  }
  
 
  section {
    position: relative;
    padding: 100px 0;
  }

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

  .overlay {
    background: #536976;  
    background: -webkit-linear-gradient(to right, #292E49, #536976); 
    background: linear-gradient(to right, #292E49, #536976);
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .margin-bottom{
    margin-bottom: 3rem;
  }
  .margin-top{
    margin-top: 4rem;
  }

  .secondary-title{
    margin-top: 5rem;
  }
  /*---------------------------------------
     RESPONSE MESSAGE             
  -----------------------------------------*/


  #response-message {
    display: none;
    position: fixed;
    top:90px;
    left: 50%;
    z-index: 9999;
    text-align: center;
    transform: translateX(-50%);
    width: 15vw;
    transition: all 0.3s ease-in-out;
}

.success-message {
    color: #ffffff; 
    font-weight: 600;
    background-color: #219945;
    padding: 10px;
    border-radius: 25px;
}

.error-message {
    color: #ffffff;
    font-weight: 600;
    background-color: #FF4C4C;
    padding: 10px;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    #response-message {
        width: 60vw;
        padding: 0px;
    }
}

@media screen and (max-width: 480px) {
    #response-message {
        width: 80vw;
        padding: 0px;
    }

    .success-message,
    .error-message {
        font-size: 14px;
    }
}




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

  .section-btn {
    background: #007aff;
    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;
  }
  .full-btn{
    background: #007aff;
    border: 0;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 30px;
    transition: 0.5s 0.2s;
    width: 100%;
  }

  .full-btn:hover,
  .full-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 #005c86;
    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: 15px 0;
  }
  
  .custom-navbar .navbar-brand {
    color: #000000;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-left: 0;
    padding: 0px;
  }
  
  .top-nav-collapse {
    background: #ffffff;
  }
  
  .custom-navbar .navbar-nav {
    margin-left: 6em;
  }
  
  .custom-navbar .nav li a {
    font-size: 18px;
    font-weight: 500;
    color: #f0f0f0;
    padding-right: 22px;
    padding-left: 22px;
  }
  
  .custom-navbar .nav li a:hover {
    background: transparent;
    background-color: #000000;
    color: #007aff;
  }
  
  .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: #007aff;
  }
  
  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }
  
  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }
  
  .custom-navbar .navbar-toggle .icon-bar {
    background: #007aff;
    border-color: transparent;
  }
  
  .custom-navbar .nav li a:active {
    background-color: #007aff;
    color: #ffffff;
  }
  
  .custom-navbar .navbar-toggle:active {
    background-color: #007aff;
  }
  
  .navbar-brand img {
    display: none;
    width: auto;
    height: 56px;
  }
  .navbar-collapse .navbar-nav .navbar-logo{
    display: flex;
    padding: 0px;
    margin: 0px;
    transform: translateY(-2px);
    margin-right: 10rem;
  }
  .navbar-logo img{
    display: none;
    width: auto;
    height: 65px;
    padding: 0px;
     margin: 0px;
  }
  
  @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;
    }
  }
  
  @media (max-width: 767px) {

    

    .custom-navbar .navbar-collapse {
      background-color: #ffffff;
      width: 100%;
      position: absolute;
      top: 60px; 
      left: 0;
      display: none; 
    }
  
    .navbar-brand img {
      display: block;
      width: auto;
      height: 65px;
      position: absolute;  
      top: 0;             
      left: 15px;            
    }
    
    
    .navbar-logo img {
      display: none !important   ;
      width: auto;
      height: 80px;
    }

    .custom-navbar .navbar-collapse.in {
      display: block;
    }
  

    .custom-navbar .navbar-toggle {
      position: absolute;
      top: 5px;
      right: 15px;
    }

    .custom-navbar .navbar-collapse .navbar-nav {
      display: block;
      width: 100%;
      text-align: center;
      padding-top: 5px;
      
    }
  
    .custom-navbar .navbar-collapse .navbar-nav li {
      margin: 10px 0;
    }
  
    .custom-navbar .navbar-collapse .navbar-nav li a {
      color: #000000;
      padding:6px;
      font-size: 16px;
      font-weight: 600;
    }
  
    .custom-navbar .navbar-collapse .navbar-nav li a:hover {
      background-color: transparent !important;
      color: #007aff !important;
    }
    
  }
  
  /*---------------------------------------
      ANIMATE         
  -----------------------------------------*/



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

  #home {
    background: url('../storage/homeimage.avif') 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;
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
}

.home-text {
  padding-bottom: 10px;
  text-align: center;
}

.home-info h1 {
  font-size: 3.2rem !important;
}


.home-text span {
    color: white;
    font-size: 1.3rem !important;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
    display: block; 
    margin: 0 auto; 
    text-align: center; 
    line-height: 1.5; 
    width: 100%; 
}



@media screen and (min-width: 768px) {
    .home-text span {
        width: 60%; 
    }
}
@media screen and (max-width: 768px) {
  .home-info img{
    width: 200px;
  }
  .image-container img{
    display: none;
  }
  /* .navbar-logo img{
    display: none;
  } */
}

@media screen and (min-width: 1024px) {
    .home-text span {
        width: 70%; 
    }
}


@media screen and (min-width: 1200px) {
    .home-text span {
        width: 50%; 
    }
}


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

  #feature {
    background: #ffffff;
  }

  #feature .nav-tabs {
    border-bottom: 0;
  }

  #feature .nav>li>a {
    padding: 8px 0;
  }

  #feature .nav-tabs>li>a {
    color: #999999;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-right: 35px;
  }

  #feature .nav-tabs>li.active>a, 
  #feature .nav-tabs>li.active>a:focus, 
  #feature .nav-tabs>li.active>a:hover {
    background: transparent;
    color: #202020;
    border-bottom: 3px solid #007aff;
  }

  #feature .nav>li>a:focus, 
  #feature .nav>li>a:hover {
    background: transparent;
    border-bottom: 3px solid #007aff;
    color: #202020;
  }

  #feature .tab-content {
    margin-top: 20px;
  }

  .tab-pane-item {
    margin: 20px 0;
  }

  .tab-pane-item h2 {
    margin: 0 0 5px 0;
  }

  .feature-image {
    position: absolute;
    bottom: -27em;
  }

  .trasition{
    transition: all 0.s ease-in-out;
  }
  
  .object-flex-container {
    display: flex;             
    justify-content: center;   
    align-items: center;                    
}
.object-flex-container img{
  width: 60%; max-width: 500px; height: auto;
}
.text-container {
  text-align: center; 
  margin: 0 auto;    
}
.text-container h2{
  font-weight: 700; font-size: 25px; color: #000000;
}
.text-container h3{
  font-weight: 700; font-size: 25px; color: #000000;
}
.text-container p{
  font-size: 15px; color: #555; text-align: justify; padding: 10px;
}

.example {
  max-height: 20rem;
  flex: 1 1 calc(25% - 20px);
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease; 
}

.example img {
  width: 25%;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s ease; 
}
.example p{
  font-weight: 700;
}
.example:hover p {
  color: rgb(0, 109, 233) !important;
}

.example:hover img {
  transform: scale(1.16); 
}

.example:hover {
  transform: scale(1.16);
}


.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0px;
  max-width: 1200px;
}

.feature {
  margin-bottom: 30px;
  padding: 15px;
  height: 33rem;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
.feature img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

#features{
  margin: 0px;
  padding: 30px;
}
.feature:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.point-item {
  background-color: #ffffff;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 25rem !important;
  gap: 10px; 
}

.icon {
  font-size: 2.5em !important;
  margin-bottom: 2px;
}
.point-item img {
 width: 10rem;
 height: auto;
}
.point-item strong {
  font-size: 1.7em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.point-item p {
  font-size: 1.3em;
  color: #777;
  text-align: center;
}


@media (max-width: 768px) {
  .point-item {
    height: auto !important;
    border: none;
  }

  .icon {
    font-size: 2em;
  }

  .point-item strong {
    font-size: 1.5em;
  }

  .point-item p {
    font-size: 1.2em;
    text-align: justify;
    padding: 1.5rem;
  }
  #features{
    padding-left: 0px;
    padding-right: 0px;
  }
}




@media (max-width: 767px) {
h1, h3 {
font-size: 24px; 
text-align: center;
}

.col-md-6 {
padding: 0rem;
}

.section-title {
margin-bottom: 1rem;
}

.col-12 {
margin-bottom: 1rem;
}

img {
max-width: 100%;
height: auto;
padding: 1rem;
}
}

@media (max-width: 767px) {
h1 {
font-size: 3rem;
}

.online-form input, .online-form button {
width: 100%;
max-width: 100%;
margin: 10px 0;
}

.home-info {
padding: 20px;
}

}

.feature-container .example {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px; 
  flex: 1 1 23%; 
  padding: 0px;
  box-sizing: border-box;
}

.feature-container .example img {
  width: 80px; 
  height: 80px;
  margin-bottom: 10px;
}

.feature-container .example p {
  text-align: center;
  font-size: 14px; 
  font-weight: bold;
  color: #333;
}

@media (max-width: 500px) {
  .example {
    flex: 1 1 calc(25% - 20px); 
    margin-bottom: 5px;
    text-align: center;
  }

  .example img { 
    width: 45%; 
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .example p {
    font-size: 10px;
    color: #000000; 
    font-weight:600;
  }
}

@media (max-width: 400px) {
  .example {
    flex: 1 1 calc(50% - 10px); 
    margin-bottom: 5px; 
  }

  .example img {
    width: 70px !important; 
    height: auto;
    margin-bottom: 8px;
  }

  .example p {
    font-size: 10px !important; 
    color: #000000; 
    font-weight: 500; 
  }
}


.upper-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.upper-step .step {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.upper-step .step div {
  flex: 1;
  min-width: 250px;
}

.upper-step img {
  width: 80%;
  height: auto;
  border-radius: 8px;
}

.upper-step h1 {
  font-weight: 600;
  font-size: 1.5em;
}

.upper-step h3 {
  font-weight: 600;
  font-size: 2em;
  color: #333;
}

.upper-step p {
  color: #777;
  text-align: justify;
}


@media (min-width: 701px) {
  .upper-step {
    flex-direction: column; 
  }

  .upper-step .step {
    flex-direction: row; 
    gap: 20px;
    margin-bottom: 30px;
  }

  .upper-step .step div {
    flex: 1;
    min-width: 250px; 
  }

  .upper-step img {
    width: 80%; 
    height: auto;
    border-radius: 8px;
    margin: 0; 
  }

  .upper-step h1 {
    font-size: 1.5em; 
  }

  .upper-step h3 {
    font-size: 2em;
  }

  .upper-step p {
    font-size: 1.1em;
  }


  .upper-step svg {
    margin: 20px 0;
    cursor: pointer;
  }
}


@media (max-width: 760px) {
  .upper-step {
    display: none; 
  }

  .lower-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .upper-step img {
    display: none; 
  }
}

@media (max-width: 790px) {
  .upper-step {
    display: none; 
  }

  .lower-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .step {
    display: flex;
    flex-direction: column; 
    gap: 20px;
    align-items: center; 
    margin-bottom: 30px;
  }

  .step img {
    width: 90%; 
    height: auto;
    border-radius: 8px;
  }

  .step h1 {
    font-weight: 600;
    font-size: 1.3em;
    text-align: center;
  }

  .step h3 {
    font-weight: 600;
    font-size: 1.8em;
    color: #333;
    text-align: center;
  }

  .step p {
    color: #777;
    text-align: justify;
    font-size: 1em;
  }

  .step svg {
    margin: 20px 0;
    cursor: pointer;
  }
}


@media (min-width: 785px) {
  .upper-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .lower-step {
    display: none; 
  }

  .step {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
  }

  .step img {
    width: 80%; 
    height: auto;
    border-radius: 8px;
  }

  .step h1 {
    font-weight: 600;
    font-size: 1.5em;
  }

  .step h3 {
    font-weight: 600;
    font-size: 2em;
    color: #333;
  }

  .step p {
    color: #777;
    font-size: 1.2em;
  }
}





  @keyframes rotate {
    0%{transform: rotate(0deg);}
    100%{transform: rotate(720deg);}
  } 
  .rotate-class:hover .rotate{
    animation: rotate 7s linear infinite !important;
  }

  .shake-class:hover .shake{
    animation: shake 3s linear infinite !important;
  }

  @keyframes shake {
    0%{transform: translateY(0px);}
    25%{transform: translateY(-15px);}
    50%{transform: translateY(0px);}
    75%{transform: translateY(15px);}
    100%{transform: translateY(0px);}
  } 

  .scale-class:hover .scale{
    animation: scale 2s linear infinite !important;
  }

  @keyframes scale {
    0%{transform: scale(1);}
    50%{transform: scale(1.4);}
    100%{transform: scale(1);}
  } 

  .shakehorizontal-class:hover .scale {
    animation: shakehorizontal 0.5s ease-in-out infinite !important;
  }
  
  @keyframes shakehorizontal {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-5px);
    }
    50% {
      transform: translateX(5px);
    }
    75% {
      transform: translateX(-5px);
    }
    100% {
      transform: translateX(0);
    }
  }
  

  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/
  #about {
    background-color: #f7f7f7;
    padding: 4rem 0;
}

.section-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title h2{
  margin: 10px;
}
.about-section  {
  padding: 15px;
}

.about-section p {
    text-align: justify;
    padding: 10px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #555;
}

.project-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.project-item {
    width: 23%;
    text-align: center;
    margin-bottom: 2rem;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-logo-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}

.project-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto 10px;
}

.project-name {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.project-logo-container:hover .project-name {
    opacity: 1;
    visibility: visible;
}

.project-url {
    display: inline-block;
    padding: 5px 10px;
    color: #007aff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-url:hover {
    color: #0056b3;
}

.loyalty img {
    width: 100%;
    height: auto;
}

.leleloyalty {
    margin-top: 3rem;
    text-align: center;
}

.leleloyalty div {
    margin-bottom: 3rem;
}

.leleloyalty div h3 {
    font-weight: 800;
    font-size: 1.8rem;
    color: #333;
}

.leleloyalty h4 p {
    text-align: justify;
    font-size: 1.4rem;
    color: #444;
}

.leleloyalty h4 a {
    font-weight: 900;
    font-size: 1.1rem;
    color: #007aff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.leleloyalty h4 a:hover {
    color: #0056b3;
}
.anchor-tag{
  font-size: 1.6rem;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Media Queries */
@media (max-width: 767px) {
    .project-item {
        width: 48%;
    }
    .project-logo {
        height: 70px;
    }
    .about-section p {
      margin: 1rem !important;
  }
}

@media (max-width: 480px) {
    .project-item {
        width: 45%;
    }
    .project-logo {
        height: 60px;
    }
    .about-section p {
      margin: 1rem !important;
  }
}

@media (max-width: 1000px) and (min-width: 765px) {
    .project-item {
        width: 35%;
    }
    .loyalty img {
        display: block;
        margin-top: 2rem;
    }
    .project-list {
        justify-content: center;
    }
    .project-item:hover {
        transform: translateY(0);
    }
    .about-section p {
      margin: 1rem !important;
  }
}

@media (max-width: 768px) {
  h4 {
      padding: 1rem;
  }
}
@media (min-width: 992px) {

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

  #testimonial {
    background: #ffffff;
    background-color: #202020
}

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

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

#testimonial h1 {
    color: #ffffff;
}

.testimonial-image {
    background: url('../images/feedback.png') no-repeat center center;
    background-size: contain;
    width: 80%;
    height: 30vh;
    padding: 5px;
    
}

.testimonial-info {
    background: #202020;
    padding: 10px;
    height: auto;
    color: #d9d9d9;
}

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

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

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


@media (max-width: 767px) {
    .testimonial-image {
      width: 90%;
      margin: 15px !important;
        
    }

    .testimonial-info {
        padding: 15px !important; 
    }

    .testimonial-info h3 {
        font-size: 1.1em;
    }

    .owl-carousel .item h3 {
        font-size: 1.2em;
        text-align: justify;
        padding: 1rem;
    }
}


  .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;
  }



  /*---------------------------------------
      PRICING             
  -----------------------------------------*/

  #pricing {
    padding: 100px 0;
}

.pricing-thumb {
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-info p {
    margin: 5px 0;
    color: #333;
}

.pricing-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    text-align: center;
}

.pricing-dollar {
    font-size: 28px;
    font-weight: 700;
    color: #007aff;
}

.pricing-btn {
    margin-top: 15px;
    background-color: #007aff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5rem;
    text-decoration: none;
    font-size: 16px;
}

.pricing-btn:hover {
    background-color: #000000;
}
.section-title h1{
  font-weight: 800; color: #202020; margin-bottom: 2rem; text-align: center; font-size:30px;
}
.section-title h2{
  font-weight: 800; color: #202020; margin-bottom: 2rem; text-align: center; font-size:25px;
}
.section-title p{
  font-size: 16px; color: #555; margin-bottom: 2rem; text-align: center; ;
}

@media (max-width: 767px) {
    .pricing-thumb {
        padding: 20px;
    }

    .pricing-title h2 {
        font-size: 20px;
    }

    .pricing-dollar {
        font-size: 24px;
    }

    .pricing-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/
  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
    margin-bottom: 1rem;
    background-color: #f4f4f4;
    padding: 50px 0;
}

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

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


#contact-form input[type='submit']:hover {
    background: #007aff;
    color: white;
}
.horizontal-divs {
  display: flex;
  justify-content: space-evenly; 
  flex-wrap: wrap;
  gap: 15px; 
  margin-bottom: 3rem;
  padding: 0 20px;
}

.horizontal-div {
  flex: 1 1 15vw; 
  min-width: 180px; 
  max-width: 250px; 
  padding: 15px;
  background-color: #f3f3f3;
  box-shadow: 0 5px 10px #d4d4d4;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.horizontal-div i {
  font-size: 35px; 
  color: #007bff;
  margin-bottom: 15px;
}

.horizontal-div:hover i {
  color: #000000;
  transform: scale(1.2);
}

.horizontal-div:hover {
  background-color: #faf9f9;
  box-shadow: none;
}

.horizontal-div h3 {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.horizontal-div p {
  font-size: 1.2rem;
  color: #555;
}

.map{
  margin-bottom: 3rem;

}

@media (max-width: 995px) {
  .horizontal-divs {
    justify-content: center;
  }

  .horizontal-div {
    flex: 1 1 48%;  
    padding: 20px;
  }

  .horizontal-div i {
    font-size: 30px;
  }

  .horizontal-div h3 {
    font-size: 1.4rem; 
  }

  .horizontal-div p {
    font-size: 1rem; 
  }

}


@media (max-width: 480px) {
  .horizontal-divs {
    padding: 0 10px;
  }

  .horizontal-div {
    flex: 1 1 100%; 
  }

  .horizontal-div i {
    font-size: 28px; 
  }

  .horizontal-div h3 {
    font-size: 1.2rem; 
  }

  .horizontal-div p {
    font-size: 0.9rem; 
  }
}


@media (max-width: 991px) {
  #contact-form .col-md-12 {
      margin-bottom: 1rem;
  }
}


@media (max-width: 768px) {
  .col-md-4 {
      margin-bottom: 2rem;
      text-align: center;
  }


  .col-md-6, .col-md-12 {
      width: 100%; 
      margin-bottom: 1rem; 
  }


  .col-md-12.col-sm-12 {
      padding: 0;
  }

  #contact-form button {
      width: 100%; 
  }
}


@media (max-width: 700px) {
  .col-md-6, .col-md-12 {
      width: 100%; 
      margin-bottom: 1rem;
  }

  #contact-form button {
      width: 100%; 
  }
}


 #map{
  font-weight: 800; margin-bottom: 3rem; text-align: center; color: #333; font-size:2.8rem;
 }
 #map h1{
  font-weight: 600;
  font-size: 2.5rem;
 }


@media (max-width: 991px) {
  .col-md-4 {
      margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-box {
      padding: 20px;
  }

  .contact-box i {
      font-size: 2rem;
  }

  .contact-box h4 {
      font-size: 1.2rem;
  }

  .contact-box p {
      font-size: 0.9rem;
  }
}

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

.footer-black {
  background-color: #000000;
  color: white;
  padding-top: 50px; 
  padding-bottom: 50px; 
}


.footer-logo {
  max-width: 160px; 
  margin: 0 auto;
}


.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0; 
  display: flex;
  justify-content: center;
}

.footer-links li {
  margin-right: 20px;
}

.footer-links li a {
  color: rgb(214, 214, 214);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.footer-links li a:hover {
  color: #007aff !important;
}


.social-icons {
  list-style: none;
  padding: 0;
  margin: 20px 0; 
  display: flex;
  justify-content: center;
}

.social-icons li {
  margin-right: 20px;
}

.social-icons li a {
  color: #007eff;
  background-color: rgb(0, 0, 0);
  font-size: 22px;
  text-decoration: none;
  border: 2px solid #007eff; 
  padding: 6px;
  border-radius: 50%; 
  transition: background-color 0.3s, color 0.3s; 
}

.social-icons li a:hover {
  color: black; 
  background-color: #ffffff; 
  border: 2px solid #ffffff;
}


.copyright-section {
  background-color: #202020;
  padding-top: 20px;
  padding-bottom: 20px;
}

.copyright-section p {
  margin: 0;
  color: rgb(214, 214, 214);
  font-size: 14px;
}


@media (max-width: 768px) {
  .footer-links {
      flex-direction: column;
      align-items: center;
  }
  .social-icons{
    flex-direction: row;
      align-items: center;
  }

  .footer-links li,
  .social-icons li {
      margin-bottom: 10px;
  }
  .social-icons {
    list-style: none;
    padding: 0;
    margin: 20px 0; 
    display: flex;
    justify-content: center;
  }
  

  
  .social-icons li a {
    color: #007bff;
    font-size: 20px;
    text-decoration: none;
    border: 2px solid #007bff; 
    padding: 5px;
    border-radius: 50%; 
    transition: background-color 0.3s, color 0.3s; 
  }
  .copyright-section p {
    margin: 0;
    color: white;
    font-size: 10px;
  }
}

  


  /*---------------------------------------
     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;
    font-size: 24px;
    width: 55px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
    color: #007aff;
  }

  .social-icon li a:hover {
    color: black;
    transform: scale(1.2);
  }



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

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

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

  
  }


  @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-bottom: 40px;
    }
  }


  @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: 5px 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: -5px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 5px solid #ffffff;
    }
  .copyright-div{
    background-color: #202020; padding: 3rem 0;
  }
  .copyright-div div p{
    color: #ffffff; text-align: center; font-size: 1.3rem;
  }
  .copyright-text p {
    margin: 5px;
    color: white;
    font-weight:500;
    font-size: 10px;
  }
    
  }
  @media screen and (max-width: 500px) {
    .copyright-div{
      background-color: #202020; padding: 2rem 0;
    }
    .copyright-div div p{
      color: #ffffff; text-align: center; font-size: 1.1rem;
    }
    
  }