.section-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white !important;
    width: auto;
    padding: 200px 0px 50px 0px; 
    color: #000000;
}

.section-con h3 {
    color: #b70040ff;
    font-size: 45px;
}

.section-con p {
    font-size: 15px;
    color: black;
    line-height: 1.6; 
    font-weight: 600;
    margin: 20px 0; 
    max-width: 100%; 

}

/* Media Queries */
@media (max-width: 1200px) {
    .section-con {
        padding: 80px 20px; 
    }

    .section-con p {
        margin: 20px 40px; 
        max-width: 100%; 
    }
}

@media (max-width: 768px) {
    .section-con {
        padding: 60px 15px; 
    }

    .section-con h3 {
        font-size: 30px; 
    }

    .section-con p {
        margin: 20px 20px; 
        max-width: 100%; 
        line-height: 1.4; 
    }
}

@media (max-width: 480px) {
    .section-con {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: white !important;
        width: auto;
        padding: 170px 0px 60px 0px; 
        color: #000000;
    }

    .section-con h3 {
        font-size: 25px; 
    }

    .section-con p {
        margin: 20px 10px; 
        line-height: 1.2; 
    }
}

/* -------------------------------------- */

#features {
    margin-bottom: 80px;
    padding: 0 2rem; 
}

.features-items {
    margin-bottom: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    border: 2px solid #f4f3f3;
    border-radius: 25px;
    width: 100%; 
    padding: 20px;
    margin-bottom: 20px; 
}

.feature-item:hover{
    box-shadow: 3px 3px 3px #cacaca80; 
}

.feature-item .left-icon img {
    margin-right: 20px; 
}

.feature-item .right-content {
    flex: 1; 
}

.feature-item .right-content h4 {
    margin-top: 0px;
    margin-bottom: 7px;
    letter-spacing: 0.25px;
    color: #232d39;
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
}

.feature-item .right-content p {
    color: #000000;
}

.location {
    width: 100%; 
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #f4f3f3;
    border-radius: 25px;
    margin-bottom: 20px; 
}

.location .left-icon img {
    margin-right: 20px; 
}

.location .right-content {
    flex: 1; 
}

.location .right-content h4 {
    margin-top: 0px;
    margin-bottom: 7px;
    letter-spacing: 0.25px;
    color: #232d39;
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
}

.location .right-content p {
    color: #000000;
}

@media only screen and (max-width: 1200px) {
    .feature-item,
    .location {
        width: 80%; 
        padding: 1rem;
    }
    #features {
        margin-left: 0; 
        padding: 0 1rem; 
    }
}

@media only screen and (max-width: 768px) {
    .feature-item,
    .location {
        width: 100%; 
        flex-direction: column; 
        align-items: flex-start; 
    }

    .feature-item .left-icon img,
    .location .left-icon img {
        margin-right: 0; 
        margin-bottom: 10px; 
    }

    #features {
        padding: 0; 
    }
}

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




    .section-con h3 {
        color: #b70040ff;
        font-size: 45px;
    }
    
    .section-con p {
        font-size: 15px;
        color: black;
        line-height: 1.6; 
        font-weight: 600;
        margin: 10px 0; 
        max-width: 100%; 
    }

    .feature-item,
    .location {
        width: 100%; 
        padding: 1rem; 
    }

    .feature-item .left-icon img,
    .location .left-icon img {
        width: 50px; 
        height: auto; 
    }
}




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

}




.right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to start of the container */
  }
  
  .right-content input,
  .right-content textarea {
    color: white;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    margin-bottom: 10px;
    padding-bottom: 10px;
    outline: none;
    width: 100%; /* Take up full width of the container */
  }
  
  .right-content input[type="submit"] {
    color: rgb(0, 0, 0);
    font-size: 14px;
    background-color: rgb(255, 255, 255);
    border: 1px solid white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50px;
    font-weight: bold;
    width: 100px;
  }
  
  .right-content input[type="submit"]:hover,
  .right-content input[type="submit"]:active {
    background-color: white;
    color: black;
  }
  
  .right-content input[type="submit"]:focus {
    outline: none;
  }
  
  .input {
    margin-bottom: 20px !important; 
  }
  
  .right-content input::placeholder,
  .right-content textarea::placeholder {
      color: white;
  }

  /* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white; /* Background set to white */
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
  }
  
  .js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  /* Animation for the dot to move right */
  @-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
  }
  
  @keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
  }
  
  /* Animation for the dots to move left */
  @-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
  }
  
  @keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
  }
  
  .preloader-inner {
    position: relative;
    width: 180px; /* Increased width */
    height: 60px; /* Increased height */
    background: white; /* Background set to white */
  }
  
  .preloader-inner .dot {
    position: absolute;
    width: 24px; /* Increased size of the dot */
    height: 24px; /* Increased size of the dot */
    top: 18px; /* Adjusted position */
    left: 20px; /* Adjusted position */
    background: #232d39;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 5s infinite; /* Animation duration set to 5 seconds */
    animation: dot 5s infinite; /* Animation duration set to 5 seconds */
  }
  
  .preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 18px; /* Adjusted margin */
    margin-left: 40px; /* Adjusted margin */
    -webkit-animation: dots 5s infinite; /* Animation duration set to 5 seconds */
    animation: dots 5s infinite; /* Animation duration set to 5 seconds */
  }
  
  .preloader-inner .dots span {
    display: block;
    float: left;
    width: 24px; /* Increased size of the dots */
    height: 24px; /* Increased size of the dots */
    margin-left: 20px; /* Adjusted margin */
    background: #232d39;
    border-radius: 50%;
  }


  .contact-text {
    color: #ffffff;
    font-size: 40px;
    width: 450px !important;
    font-weight: bold;
    text-align: end;
    line-height: 45px;
  }


  /* What is Section */

.unique-section {
    padding: 10px;
  }
  .unique-row {
    margin-bottom: 20px;
  }
  .unique-para {
    font-size: 16px;
    color: #000;
  }
  .unique-button {
    text-align: center;
  }
  .unique-button a {
    text-decoration: none;
    color: #000;
    background-color: #b70040ff;
    padding: 10px 20px;
    border-radius: 5px;
  }
  
  .unique-seo-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #F2F2F2; /* Background color matching the image */
  }
  
  .unique-seo-content {
    flex: 1 1 50%;
    color: #000000;
    padding: 60px;
    padding-left: 90px;
    padding-right: 10px;
    box-sizing: border-box;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  
  .unique-seo-content h2 {
    color: #000000; /* Set the paragraph text color to white */
    padding: 10px;
    font-size: 25px;
    font-weight: bold;
  
  }
  .unique-seo-content p {
    color: #000000; /* Set the paragraph text color to white */
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .unique-seo-image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    padding-left: 30px;
    box-sizing: border-box;
  }
  
  .unique-seo-image img {
    max-width: 100%;
    height: 250px;
    border-radius: 30px;
    object-fit: cover
  }
  
  @media (max-width: 768px) {
    .unique-seo-section {
        flex-direction: column;
    }
    .unique-seo-content {
        flex: 1 1 100%;
        padding: 40px; 
        padding-top: 60px;
        
    }
    .unique-seo-content h2{
      text-align: left;
    }
    .unique-seo-image {
      flex: 1 1 100%;
      padding: 40px;
      padding-bottom: 60px;
    }
  }