@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@1,700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

/* Hero section starts here */

/* Nav section starts here */

body {
  font-family: "Poppins", sans-serif;
}

nav {
  width: 100%;
    height: 6rem;
    background: #e4e1e1;
    padding: 3px 20px;
    display: flex;
    align-items: center;
    margin-top: 0; /* Remove margin-top to ensure it sits flush against the top */
    position: relative;
}

nav a {
  color: #000000;
  text-decoration: none; /* Ensure no underline for links */
}

nav a:hover {
  color: #ef4b3f;
}

#desk-logo {
  width: 200px;
  padding: 5px 20px;
  margin: 5px 20px;
}

.logo {
  flex: 1;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #000000;
}

.logo img {
  width: 150px;
  margin-right: 10px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto; /* Aligns menu to the right */
}

.menu li {
  padding: 0 40px; /* Simplified padding */
  font-size: 16px;
  list-style: none;
}

.menu li a {
  position: relative; /* Better for positioning if needed */
}

.toggle {
  font-size: 30px;
  display: none;
  color: #000000;
}

.tag-line {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  font-size: 10rem;
  width: 100%;
}

.tag-line h1 {
  /* width: 100%; */
  color: #333;
  font-size: 2.0rem; /* Adjust font size as needed */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Optional shadow for better readability */
}

/* Media query for tablets (600px to 900px) */
@media screen and (max-width: 900px) {
  .tag-line h1 {
      font-size: 1.5rem; /* Adjust font size for smaller screens */
  }
}

/* Media query for mobile devices (up to 600px) */
@media screen and (max-width: 600px) {
  .tag-line h1 {
      font-size: 1.2rem; /* Further adjust font size for mobile screens */
      text-align: center; /* Center the text for better aesthetics */
      padding: 0 10px; /* Add some horizontal padding */
  }
}


@media screen and (max-width: 600px) {
  nav {
    flex-direction: column; /* Changed from left to column */
    align-items: flex-start; /* Aligns items to the start */
    padding: 5px 20px;
    height: auto; /* Adjusts height */
  }

  .logo {
    margin-bottom: 10px;
  }

  .menu {
    display: none;
    flex-direction: column;
    margin-top: 15px;
    width: 100%; /* Ensures menu occupies full width */
  }

  .menu.active {
    display: flex;
  }

  .toggle {
    display: block;
    position: absolute;
    top: 38px;
    right: 20px;
  }
}

/* Nav Section Ends Here */



.image-container {
  width: 100%;
  overflow: hidden; /* Ensures image is not clipped */
}


.hero {
  width: 100%;
  height: 20vh; /* Adjust this height as needed */
  display: flex;
  flex-direction: column; /* Allows stacking of nav and tag-line */
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mb-5 {
  margin-bottom: -3rem !important;
}

#head-line {
  margin-top: 18rem;
}

    /* Hide the logo by default */
    .logo {
      display: none;
    }

    /* Show only on mobile view */
    @media (max-width: 768px) {
      .logo {
        display: block;
        width: 100px; /* Adjust as needed */
        height: auto;
        margin: 0 auto;
      }
    }

/* Hero Section Ends Here */

/* hero ends here */

/* For mobile screens, only show the logo and tagline */
@media (max-width: 767px) {
  /* Hide the navbar and sidebar on mobile */
  .custom-navbar,
  #sidebar,
  .navbar-toggler {
      display: none; /* Hide navbar and sidebar on mobile */
  }

  /* Ensure the logo is displayed and centered */


  /* Ensure the tagline is visible and properly styled */
  .banner-head {
      font-size: 24px; /* Adjust font size for the tagline */
      text-align: center; /* Center the tagline */
      margin-top: 20px; /* Add some margin above the tagline */
  }
}


/* Custom styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fa;
}

header h1 {
  font-size: 1.5rem;
  margin: 0;
}

.contact-info p {
  margin: 0;
}

/* Main Section */
main h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 20px;
}

main p {
  color: #777;
  line-height: 1.6;
}

main img {
  max-width: 100%;
  border-radius: 10px;
}

/* Zoom effect on image */
main img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease; /* Smooth zoom effect */
}

/* main img:hover {
  transform: scale(1.1); /* Zoom-in effect */


/* Button on image styling */
.position-relative {
  position: relative; /* For positioning the button absolutely on the image */
}

.btn-explore {
  position: absolute;
  bottom: 20px; /* Fixed 20px from the bottom */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust to exactly center */
  background-color: rgba(0, 123, 255, 0.8); /* Semi-transparent */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: auto;
}

.btn-explore:hover {
  background-color: rgba(0, 123, 255, 1); /* Solid color on hover */
}

/* Ensure responsiveness */
@media (max-width: 767.98px) {
  .btn-explore {
    padding: 8px 16px; /* Slightly reduce padding for smaller screens */
    bottom: 10px; /* Adjust bottom position for smaller screens */
  }
}


/* Optional tweaks for alignment */
main img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease; /* Smooth zoom effect */
}

/* main img:hover {
  transform: scale(1.1); /* Zoom-in effect */




/* properties starts here */
.property-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.image-section {
  position: relative;
  width: 45%;
  height: 100%;
}

.background-image {
  width: 100%;
  border-radius: 10px;
  filter: grayscale(100%)

}


.py-5-1 {
  margin-top: 4rem;
}

.overlay-image {
  position: absolute;
  top: 13%; /* Adjust based on design */
  left: 16%; /* Adjust to center horizontally */
  transform: translateZ(-50%);
  width: 68%; /* Adjust to desired size */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  /* Add smooth transition and transform-origin */
  transition: transform 0.3s ease-in-out;
  translate: transform(-30%);

  /* transform-origin: r;  */
}

.overlay-image:hover {
  /* Apply any hover effect if needed */
  transform: scale(1.2) ; /* Example: slightly enlarging the overlay on hover */
  /* translate: transform(-0); */
}
.property-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 10px;
    background: rgba(238, 236, 236, 0.85);
    color: black;
    width: calc(100% - 20px);
    padding: 10px 20px;
    left: 10px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}


.overlay h5 {
    font-size: 1.5rem;
    font-weight: 600;
}

.overlay-ruppee {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.overlay-icons {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.icon-img {
    width: 20px;
    /* Adjust icon size */
    height: auto;
    margin-right: 8px;
}

.location-icon {
    margin-right: 5px;
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #1F4B43;
    color: white;
    padding: 9px 15px;
    border-radius: 25px;
    font-size: 15px;
}

p.location-icon {
    margin-right: 5px;
    font-size: 1.2rem;
    letter-spacing: 3px !important;
}

.btn-outline-dark {
    border-radius: 25px;
}

.btn-link {
    text-decoration: none;
    color: black;
}

p.overlay-text {
    font-size: 20px !important;
    font-weight: 800;
}
/* properties ends here */



/* experience starts here */

.bg-image {
    background-image: url('./images/experience_background.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
    margin-top: 3rem;
}

.experience-title {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(to bottom, #FFFFFF, #002ABD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-subtitle {
    font-size: 2.5rem;
    background: linear-gradient(to right, #FFFFFF, #002ABD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.address-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.address {
    font-size: 1.5rem;
    color: #001357;
    font-weight: 900;
    margin-right: 65px !important;
}

.icons i {
    font-size: 1.5rem;
    margin-right: 30px;
    color: #29bdbc;
}
/* experience ends here */



/* responsive for all screens */
@media (max-width: 1440px) {
    .custom-navbar {
      display: none;
        width: 100%;
    }
}


@media (max-width: 1024px) {
    .custom-navbar {
        width: 80%;
    }

    .properties-container {
        width: 90% !important;
    }
}

@media (max-width: 1200px) {
    .experience-title {
        font-size: 4rem;
    }

    .experience-subtitle {
        font-size: 2rem;
    }

    .address {
        font-size: 1.25rem;
    }

    .icons i {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    #sidebar.active {
        left: 0;
    }

    .navbar-toggler {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10000;
    }

    .experience-title {
        font-size: 3.5rem;
    }

    .experience-subtitle {
        font-size: 1.75rem;
    }

    .address {
        font-size: 1.1rem;
    }

    .icons i {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    #sidebar {
        display: none;
    }

    .navbar-toggler {
        display: none;
    }
}


@media (min-width: 993px) {
    .property-img {
        height: 500px;
    }

    .overlay h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .filter-bar {
        width: 90%;
    }

    .filter-bar .btn,
    .filter-bar .form-control,
    .filter-bar .form-select {
        font-size: 0.9rem;
    }

    .d-none.d-md-block {
        display: block !important;
    }

    .filter-bar .btn {
        margin-bottom: 10px;
    }

    .property-card {
        margin-bottom: 20px;
    }

    .overlay {
        padding: 8px 15px;
    }

    .overlay h5 {
        font-size: 1.25rem;
    }

    .overlay-ruppee {
        font-size: 1rem;
    }

    .overlay-icons {
        font-size: 1rem;
    }

    .bg-image {
        height: 70vh;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .experience-subtitle {
        font-size: 1.5rem;
    }

    .address {
        font-size: 1rem;
        margin-right: 10px;
    }

    .icons i {
        font-size: 1.1rem;
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
.navbar-toggler-icon{
  color: #000 !important;
  position: relative;
  left: 45%;
}
.filter-bar{
    width: 80%;
    position: absolute;
    top: 3%;
}
    .filter-bar .col-md-4,
    .filter-bar .col-md-3,
    .filter-bar .col-md-2 {
        margin-bottom: 10px;
    }

    .property-card {
        margin-bottom: 15px;
    }

    .property-img {
        height: 300px;
    }

    .badge-sale {
        font-size: 12px;
        padding: 7px 12px;
    }

    .overlay {
        padding: 5px 10px;
    }

    .overlay h5 {
        font-size: 1rem;
    }

    .overlay-ruppee {
        font-size: 1rem;
    }

    .overlay-icons {
        font-size: 0.9rem;
    }

    .bg-image {
        height: 60vh;
    }

    .experience-title {
        font-size: 2rem;
    }

    .experience-subtitle {
        font-size: 1.25rem;
    }

    .address {
        font-size: 0.9rem;
    }

    .icons i {
        font-size: 0.9rem;
        margin-right: 5px; 
    }

    .text-content {
        padding: 2rem; 
    }

    .hero h1{
        display: none;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .property-img {
        height: 350px;
    }

    .overlay h5 {
        font-size: 1.3rem;
    }
}


@media (max-width: 320px) {
    .btn {
        font-size: 0.8rem;
    }
}




/* property */
body {
    font-family: 'Lato', sans-serif;
  }
  
  .selection-process{
    margin-top: 5%;
  }
  .step {
    text-align: center;
    position: relative;
    padding: 20px;
  }
  
  .step-img-1 img {
    margin: 20px 0px;
    height: 100%;
  }
  .step-img-1 .icon {
    position: absolute;
    top: 35%;
    left: 60%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: black;
  }
  .step-text-1 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    color: black;
    font-weight: bold;
    top: 45%;
    font-size: 25px;
  }
  .numbers-1{
    position: absolute;
    bottom: 10px;
    left: 15%;
    color: black;
    font-weight: bold;
    top: 37%;
    font-size: 30px;
  }
  
  .step-img-2 img {
    margin-top: -5%;
    left: 6%;
    position: relative;
  }
  .step-img-2 .icon {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: black;
  }
  
  .step-text-2 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    font-weight: bold;
    top: 45%;
    font-size: 25px;
  }
  .numbers-2{
    position: absolute;
    bottom: 10px;
    left: 28%;
    color: black;
    font-weight: bold;
    top: 5%;
    font-size: 30px;
  }
  .step-img-3 img {
    margin: 20px 20px;
  }
  .step-img-3 .icon {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: black;
  }
  .step-text-3 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    font-weight: bold;
    top: 45%;
    font-size: 25px;
  }
  .numbers-3{
    position: absolute;
    bottom: 10px;
    left: 27%;
    color: black;
    font-weight: bold;
    top: 75%;
    font-size: 30px;
  }
  .step-img-4 img {
    margin-top: -8%;
    left: 6%;
    position: relative;
  }
  .step-img-4 .icon {
    position: absolute;
    top: 35%;
    left: 53%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: black;
  }
  .step-text-4 {
    position: absolute;
    bottom: 10px;
    left: 53%;
    transform: translateX(-50%);
    color: black;
    font-weight: bold;
    top: 45%;
    font-size: 25px;
  }
  .numbers-4{
    position: absolute;
    bottom: 10px;
    left: 28%;
    color: black;
    font-weight: bold;
    top: 5%;
    font-size: 30px;
  }
  
  
  /*  */
  .thumbnail {
    width: 80px;
    height: 90px;
    object-fit: cover;
    border: 2px solid white;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s;
  }
  
  .thumbnail.active {
    border-radius: 20%;
    width: 100%;
  }
  .main-image {
    width: 100%;
    height: auto;
  }
  /*  */
  .icon-item {
    text-align: center;
    margin-bottom: 20px;
  }
  .icon-item img {
    width: 50px;
    height: 50px;
  }
  .map-img {
    width: 90%;
    height: auto;
  }
  .map-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  /*  */
  .transport-section {
    padding: 20px;
    text-align: center;
  }
  
  .transport-option {
    margin-bottom: 20px;
  }
  
  .transport-icon {
    font-size: 36px;
    color: #00b8d4;
  }
  
  .transport-title {
    font-weight: bold;
    margin-top: 10px;
  }
  
  .transport-time {
    font-size: 14px;
    color: gray;
  }
  /* enquiry */
  .form-section {
    margin: 0 auto;
    padding: 20px;
  }
  .form-section h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .form-control{
    border-bottom: 1px solid black;
    border-radius: 0%;
    border-top: none;
    border-left: none;
    border-right: none
  }
  .send-message-btn {
    background-color: #003c47;
    color: white;
    padding: 10px 30px;
    border: none;
  }
  .send-message-btn:hover {
    background-color: #004f5e;
  }
  .image-background {
    background-image: url('/path/to/your/image.png');
    background-size: cover;
    background-position: right;
  }
  .checkbox-label {
    margin-right: 20px;
  }
  /* footer */
  .footer {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
  }
  .footer-container{
    padding: 30px 0;
  }
  .footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .footer a {
    color: #fff;
    text-decoration: none;
  }
  .footer a:hover {
    text-decoration: underline;
  }
  .footer .social-icons a {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  .footer .copyright {
    margin-top: 20px;
    text-align: center;
    padding-top: 15px;
  }
  @media(max-width:1024px){
    .step-img-1 img {
     width: 120%;
     height: 100%;
    }
    .step-img-1 .icon {
      position: absolute;
      top: 30%;
      left: 55%;
      width: 10%;
      height: 10%;
      transform: translate(-50%, -50%);
      color: black;
    }
    .step-text-1 {
      position: absolute;
      bottom: 10px;
      left: 45%;
      color: black;
      font-weight: bold;
      top: 45%;
      font-size: 20px;
    }
    .numbers-1{
      position: absolute;
      bottom: 10px;
      left: 15%;
      color: black;
      font-weight: bold;
      top: 33%;
      font-size: 30px;
    }
    
    .step-img-2 img {
      width: 120%;
     height: 120%;
     position: relative;
     left: -3%;
    }
    .step-img-2 .icon {
      position: absolute;
      top: 35%;
      left: 45%;
      width: 10%;
      height: 10%;
      transform: translate(-50%, -50%);
      color: black;
    }
    
    .step-text-2 {
      position: absolute;
      bottom: 10px;
      left: 46%;
      transform: translateX(-50%);
      color: black;
      font-weight: bold;
      top: 45%;
      font-size: 20px;
    }
    .numbers-2{
      position: absolute;
      bottom: 10px;
      left: 20%;
      color: black;
      font-weight: bold;
      top: 5%;
      font-size: 30px;
    }
    .step-img-3 img {
      width: 120%;
     height: 120%;
     position: relative;
     left: -5%;
    }
    .step-img-3 .icon {
      position: absolute;
      top: 30%;
      left: 43%;
      width: 10%;
      height: 10%;
      transform: translate(-50%, -50%);
      font-size: 30px;
      color: black;
    }
    .step-text-3 {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      color: black;
      font-weight: bold;
      top: 45%;
      font-size: 20px;
    }
    .numbers-3{
      position: absolute;
      bottom: 10px;
      left: 27%;
      color: black;
      font-weight: bold;
      top: 72%;
      font-size: 30px;
    }
    .step-img-4 img {
      width: 100%;
     height: 100%;
     left: -5%;
     position: relative;
    }
    .step-img-4 .icon {
      position: absolute;
      top: 35%;
      left: 45%;
      width: 10%;
      height: 10%;
      transform: translate(-50%, -50%);
      font-size: 30px;
      color: black;
    }
    .step-text-4 {
      position: absolute;
      bottom: 10px;
      left: 45%;
      transform: translateX(-50%);
      color: black;
      font-weight: bold;
      top: 45%;
      font-size: 20px;
    }
    .numbers-4{
      position: absolute;
      bottom: 10px;
      left: 19%;
      color: black;
      font-weight: bold;
      top: 5%;
      font-size: 30px;
    }
    
  }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .selection-process {
      display: flex;
      flex-wrap: nowrap;
    }
  
    .step {
      flex: 1;
      max-width: 100%;
    }
  }
  
  @media(max-width:768px){
    
    .step-img-1 img {
      width: 120%;
      height: 100%;
     }
     .step-img-1 .icon {
       position: absolute;
       top: 30%;
       left: 55%;
       width: 10%;
       height: 10%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-1 {
       position: absolute;
       bottom: 10px;
       left: 45%;
       color: black;
       font-weight: bold;
       top: 45%;
       font-size: 15px;
     }
     .numbers-1{
       position: absolute;
       bottom: 10px;
       left: 17%;
       color: black;
       font-weight: bold;
       top: 34%;
       font-size: 20px;
     }
     
     .step-img-2 img {
       width: 120%;
      height: 120%;
      position: relative;
      left: -3%;
     }
     .step-img-2 .icon {
       position: absolute;
       top: 30%;
       left: 45%;
       width: 15%;
       height: 15%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-2 {
       position: absolute;
       bottom: 10px;
       left: 46%;
       transform: translateX(-50%);
       color: black;
       font-weight: bold;
       top: 40%;
       font-size: 15px;
     }
     .numbers-2{
       position: absolute;
       bottom: 10px;
       left: 23%;
       color: black;
       font-weight: bold;
       top: 7%;
       font-size: 20px;
     }
     .step-img-3 img {
       width: 120%;
      height: 120%;
      position: relative;
      left: -5%;
     }
     .step-img-3 .icon {
       position: absolute;
       top: 30%;
       left: 43%;
       width: 15%;
       height: 15%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-3 {
       position: absolute;
       bottom: 10px;
       left: 53%;
       transform: translateX(-50%);
       color: black;
       font-weight: bold;
       top: 50%;
       font-size: 15px;
     }
     .numbers-3{
       position: absolute;
       bottom: 10px;
       left: 30%;
       color: black;
       font-weight: bold;
       top: 70%;
       font-size: 20px;
     }
     .step-img-4 img {
       width: 100%;
      height: 100%;
      left: -5%;
      position: relative;
     }
     .step-img-4 .icon {
       position: absolute;
       top: 30%;
       left: 45%;
       width: 15%;
       height: 15%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-4 {
       position: absolute;
       bottom: 10px;
       left: 45%;
       transform: translateX(-50%);
       color: black;
       font-weight: bold;
       top: 40%;
       font-size: 15px;
     }
     .numbers-4{
       position: absolute;
       bottom: 10px;
       left: 19%;
       color: black;
       font-weight: bold;
       top: 5%;
       font-size: 20px;
     }
     
   }
  
   @media(max-width:567px){
    
    .step-img-1 img {
      width: 70%;
      height: 100%;
     }
     .step-img-1 .icon {
       position: absolute;
       top: 30%;
       left: 50%;
       align-items: center;
       width: 10%;
       height: 10%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-1 {
       position: absolute;
       bottom: 10px;
       left: 43%;
       top: 47%;
       text-align: center;
       font-size: 15px;
     }
     .numbers-1{
       position: absolute;
       bottom: 10px;
       left: 25%;
       color: black;
       font-weight: bold;
       top: 40%;
       font-size: 20px;
     }
     
     .step-img-2 img {
       width: 70%;
      height: 120%;
      position: relative;
      left: 3%;
  
     }
     .step-img-2 .icon {
       position: absolute;
       top: 39%;
       left: 45%;
       width: 15%;
       height: 15%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-2 {
       position: absolute;
       bottom: 10px;
       left: 47%;
       transform: translateX(-50%);
       color: black;
       font-weight: bold;
       top: 55%;
       font-size: 15px;
     }
     .numbers-2{
       position: absolute;
       bottom: 10px;
       left: 30%;
       color: black;
       font-weight: bold;
       top: 7%;
       font-size: 20px;
     }
     .step-img-3 img {
       width: 70%;
      height: 120%;
      position: relative;
      left: 5%;
     }
     .step-img-3 .icon {
       position: absolute;
       top: 30%;
       left: 43%;
       width: 15%;
       height: 15%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-3 {
       position: absolute;
       bottom: 10px;
       left: 47%;
       transform: translateX(-50%);
       color: black;
       font-weight: bold;
       top: 50%;
       font-size: 15px;
     }
     .numbers-3{
       position: absolute;
       bottom: 10px;
       left: 33%;
       color: black;
       font-weight: bold;
       top: 73%;
       font-size: 20px;
     }
     .step-img-4 img {
       width: 70%;
      height: 100%;
      left: 5%;
      position: relative;
     }
     .step-img-4 .icon {
       position: absolute;
       top: 40%;
       left: 53%;
       width: 15%;
       height: 15%;
       transform: translate(-50%, -50%);
       color: black;
     }
     .step-text-4 {
       position: absolute;
       bottom: 10px;
       left: 53%;
       transform: translateX(-50%);
       color: black;
       font-weight: bold;
       top: 50%;
       font-size: 15px;
     }
     .numbers-4{
       position: absolute;
       bottom: 10px;
       left: 35%;
       color: black;
       font-weight: bold;
       top: 5%;
       font-size: 20px;
     }
     
   }
   @media (max-width: 1024px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 45%;
    }
  }
  @media (max-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 45%;
    }
  }
  @media (max-width: 567px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 65%;
    }
  }


/* Developer Information */

.dev-info {
  display: flex;
  justify-content: center;
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}

.dev-img img {
  width: 15rem;
  height: 8rem;
}

.content {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
}

.content h1, .content h3 {
  padding-left: 50px;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  .dev-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dev-img img {
    width: 10rem;
    height: 6rem;
    padding-bottom: 10px;
  }

  .content {
    padding-left: 0;
  }

  .content h1, .content h3 {
    padding-left: 0;
  }
}

