@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
}

/* Hide the hamburger icon in desktop view */
.navbar-toggler {
  display: none;
}

/* Responsive styles */
@media (max-width: 991px) { 
  /* Show hamburger menu in the top-right corner */
  .navbar-toggler {
      display: block; /* Show only on mobile */
      position: absolute;
      top: 25px;  /* Adjust distance from top */
      right: 25px; /* Adjust distance from right */
      z-index: 1100; /* Ensure it's above other elements */
  }

  /* Hide navigation links initially */
  .nav {
      display: none;
      flex-direction: column;
      background: white;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      text-align: center;
      padding: 10px 20px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  }

  /* Show nav when toggled */
  .nav.show {
      display: flex;
  }

  /* Completely remove social icons on mobile */
  .social-icons {
      display: none !important;
  }
}

/* Default styles for the navigation items */
.nav-item .nav-link {
    font-size: 14px;
    font-weight: 450;
    color: rgba(112, 112, 112, 1); /* Inactive state - Grey */
    transition: color 0.3s ease; /* Smooth transition for color change */
  }
  
  /* Hover effect - Dark blue when hovered */
  .nav-item .nav-link:hover {
    color: rgba(22, 5, 111, 1);
  }
  
  /* Active state - Blue teal gradient for the active link */
  .nav-item .nav-link.active {
    color: rgba(22, 5, 111, 1);
  }

.social-icons {
  display: flex; /* Use flexbox for horizontal alignment */
  align-items: center; /* Align icons vertically */
  gap: 20px; /* Adds space between each icon */
  margin-right: 40px;
}.social-icons-container {
  display: flex;
  justify-content: center;
}

.social-icons {
  display: flex;
  gap: 10px;

}

.social-icon-container {
  position: relative;
  width: 40px;
  height: 40px;
}

.social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  position: absolute;
  transition: opacity 0.7s ease;
  margin-top: 10px;
}

.social-icon.active {
  opacity: 0;
}

.social-icon-container:hover .inactive {
  opacity: 0;
}

.social-icon-container:hover .active {
  opacity: 1;
}

/* Control the Size of Specific Icons */
.fb-icon {
  width: 22px;  /* Set width of Facebook icon */
  height: 22px; /* Set height of Facebook icon */
  margin-top: 9.5px;
}
.fb-icon.active {
  width: 24px;
  height: 24px;
  margin-top: 8px;
}

.twitter-icon {
  width: 20px;  /* Set width of Twitter icon */
  height: 20px; /* Set height of Twitter icon */
  margin-top: 10px;
}
.twitter-icon.active  {
  width: 24px;
  height: 24px;
  margin-top: 9px;
}

.ig-icon {
  width: 24px;  /* Set width of Instagram icon */
  height: 24px; /* Set height of Instagram icon */
  margin-top: 9.5px;
}

.linkedin-icon {
  width: 22px;  /* Set width of LinkedIn icon */
  height: 22px; /* Set height of LinkedIn icon */
  margin-top: 9.5px;
}

.linkedin-icon.active {
  width: 25px;
  height: 25px;
  margin-top: 10px;
}

.bluesky-icon {
  width: 22px; /* Set width of LinkedIn icon */
  height: 22px; /* Set height of LinkedIn icon */
  margin-top: px;
}

.bluesky-icon.active {
  width: 25px;
  height: 25px;
  margin-top: 10px;
  border-radius: 6px;
}

.pinterest-icon {
  width: 25px; /* Set width of LinkedIn icon */
  height: 22px; /* Set height of LinkedIn icon */
  margin-top: px;
}

.pinterest-icon.active {
  width: 25px;
  height: 25px;
  margin-top: 10px;
  border-radius: 6px;
}

.footer-custom-social img{
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-left: -3px;
}


.social-icons a {
  font-size: 1.5rem; /* Increase icon size */
}

.itmgmt-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 10px;
    margin-left: 30px;
}
  
.itmgmt-content {
    flex: 1;
    margin-left: 80px;
    width: 100%;
    position: relative;
}

.itmgmt-section h1 strong {
    font-weight: 600; /* Adjust the weight value to your preference (e.g., 400, 600, 700, etc.) */
}
  
.itmgmt-content h1 {
    font-size: 2rem; 
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 55px;
    color: rgb(88, 88, 88); 
}

.itmgmt-content h1 a {
  color: inherit; /* Inherits the text color from the parent */
  text-decoration: none; /* Removes underline */
}
  
.highlight-text {
    font-family: 'Poppins', sans-serif; /* Added font-family */
    font-size: 60px; /* Updated font size */
    font-weight: 700; /* Font weight */
    line-height: 82px; /* Line height */
    text-align: left; /* Text alignment */
    background-image: linear-gradient(135deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 40px 0px;
}
  
.itmgmt-content p {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 400;
    line-height: 33px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(18, 18, 18, 1);
}
  
.itmgmt-image {
    flex: 1;
    margin-right: -120px;
    margin-top: 40px;
}
  
.itmgmt-image img {
    width: 70%; /* Adjust the width to 100% to fill the container */
    max-width: 740px; /* Optional: limit the maximum width of the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px;
    
}
  
  
.freequote-btn {
    padding: 10px 35px;
    background: linear-gradient(to right, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1)); /* Custom gradient */
    color: white; /* White text */
    font-family: 'Poppins', sans-serif; /* Set the font family */
    font-size: 16px; /* Set the font size */
    font-weight: 600; /* Set the font weight */
    line-height: 27px; /* Set the line height */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-top: 40px;
    margin-bottom: 10px;
}
  
a {
    text-decoration: none; /* Remove underline from all links */
}

.customitmgmtdesc {
    margin-top: 70px;
    width: 100%;
}

  
.highlight-text1 {
    font-weight: 600;
    font-size: 36px;
    background-image: linear-gradient(89deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 10px 0;
}

  
.text-dark {
    color: rgba(18, 18, 18, 1);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    width: 95%; /* Make it span the full width */
    margin: 20px 0; /* Add vertical spacing */
}


/* Subtitle (Key Benefits of Cloud Consulting) */
.customitmgmtdesc .sub-title {
    font-size: 20px;
    font-weight: 550;
    color: rgba(18, 18, 18, 1);
    margin-top: 30px;
    margin-bottom: 18px;
}

.customitmgmtdesc .bullet-points li {
    font-size: 18px; /* Modify the font size of the points */
    line-height: 1.2; /* Adjust vertical gap between points */
    color: rgba(18, 18, 18, 1); /* Change text color (optional) */
    margin-bottom: 14px; /* Vertical gap between points */
}


.process-section {
    background-color: white; /* Background color of the inner section */
    max-width: 100%;
    padding: 40px;
    margin: 60px 80px;
    position: relative;
    z-index: 1;
    border-radius: 10px; /* Rounded corners for the section */
    border: 2px solid transparent;  /* Define the border thickness */
    border-image: linear-gradient(94.41deg, #009788 19.7%, #190474 100%); /* Apply gradient to border */
    border-image-slice: 1;  /* Ensures the gradient is applied evenly along the border */
}


.process-title {
    font-size: 36px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 70px;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-box {
    width: 220px;
    height: 100px;
    padding: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    position: relative;
    background-color: white; /* Keep the box background white */
    border-top-left-radius: 20px; /* Rounded corners on the top-left */
    border-top-right-radius: 20px; /* Rounded corners on the top-right */
    border: 2px solid transparent;  /* Define the border thickness */
    border-image: linear-gradient(94.41deg, #009788 19.7%, #190474 100%); /* Apply gradient to border */
    border-image-slice: 1;  /* Ensures the gradient is applied evenly along the border */
}


.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid transparent;  /* Define the border thickness */
    border-image: linear-gradient(94.41deg, #009788 19.7%, #190474 100%); /* Apply gradient to border */
    border-image-slice: 1;  /* Ensures the gradient is applied evenly along the border */
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.process-icon img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}


/* Cloud Implementation Consultation*/
.customitmgmtdesc1 {
    margin-top: 90px;
    width: 100%;
}

  
.highlight-text2 {
    font-weight: 600;
    font-size: 36px;
    background-image: linear-gradient(89deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
}

  
.text-dark {
    color: rgba(18, 18, 18, 1);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    width: 95%; /* Make it span the full width */
    margin: 20px 0; /* Add vertical spacing */
}


.customitmgmtdesc1 .bullet-points1 li {
    font-size: 18px; /* Modify the font size of the points */
    line-height: 1.6; /* Adjust vertical gap between points */
    color: rgba(18, 18, 18, 1); /* Change text color (optional) */
    margin-bottom: 28px; /* Vertical gap between points */
}


.hireadevdesc {
    margin-top: 40px;
    width: 100%;
}

  
.highlight-text3 {
    font-weight: 600;
    font-size: 36px;
    background-image: linear-gradient(135deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 60px;
}

.custommobapp {
    margin-top: 40px;
    padding: 50px 0;
}

.container3 {
    max-width: 100%;
    margin: 0 auto;
}

.row {
    display: flex;
    align-items: left;
    justify-content: space-between;
    margin-left: 60px;
    margin-bottom: 70px;
}

.custommobapp .text h2 {
    font-size: 36px; /* Set font size */
    font-weight: 600; /* Make the text bold */
    background-image: linear-gradient(135deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px; /* Add space below the heading */
    line-height: 1.4; /* Adjust line height for better readability */
}


.rowreverse {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-right: 60px;
    margin-bottom: 70px;
}

.rowreverse .text {
    width: 55%;
    text-align: left;
    align-items: end;
}

.text {
    width: 50%;
}


.customitmgmtdesc1 .bullet-points2 li {
    font-size: 18px; /* Modify the font size of the points */
    line-height: 1.6; /* Adjust vertical gap between points */
    color: rgba(18, 18, 18, 1); /* Change text color (optional) */
    margin-bottom: 22px; /* Vertical gap between points */
}


/* General styling for the section */
.other-consultation-services {
    background-color: #f0f0f0; /* Light grey background */
    width: 100vw;
    padding: 40px 0;
    margin-left: calc(-50vw + 50%);

}

/* Title of the section */
.other-consultation-services .section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 40px;
}

/* Container for the row of service boxes */
.other-consultation-services .row {
    display: flex;
    justify-content: space-between; /* Space between the boxes */
    max-width: 1400px;
    margin: 0 auto;
    margin-left: 60px;
}

/* Each service box styling */
.other-consultation-services .service-box {
    width: 30%; /* Each service box takes up 30% of the row width */
    padding: 20px;
}

/* Title inside each service box */
.other-consultation-services .service-title {
    font-size: 24px;
    font-weight: 600;
    background-image: linear-gradient(135deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-align: left;
}

/* Bullet points styling */
.other-consultation-services .bullet-points {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0;
    margin-bottom: 20px;
}

/* Bullet point styling */
.other-consultation-services .bullet-points li {
    
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 10px;
}

/* Middot (•) customization */
.other-consultation-services .bullet-points li::before {
    content: "\2022"; /* Unicode for middot (•) */
    color: #000000; /* Bullet color */
    font-size: 18px; /* Bullet size */
    margin-right: 10px; /* Space between bullet and text */
    vertical-align: middle;
}


/* Wrapper for the entire section */
.contact-section {
    background-color: black; /* Black background */
    padding: 40px 0; /* 40px padding on top and bottom */
    margin-top: 60px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  
  /* Inner content container */
  .content {
    text-align: center;
    color: white; /* Default text color */
  }
  
  /* Main text style */
  .main-text {
    background: linear-gradient(to right, rgba(13, 148, 136, 1), rgba(80, 63, 166, 1)); /* Gradient background */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text; /* Clip the background to the text */
    color: transparent; /* Make text transparent to show the gradient */
    
    font-size: 50px; /* Set font size */
    font-weight: 700; /* Set font weight */
    line-height: 65px; /* Set line height */
    text-align: center; /* Center align the text */
    text-underline-position: from-font; /* Text underline position */
    text-decoration-skip-ink: none; /* Text decoration skip */
    margin-bottom: 30px; /* Spacing between the elements */
  }
  
  
  /* Sub-text style */
  .sub-text {
    font-size: 0.9rem; /* 0.9rem font size */
    margin-bottom: 30px; /* Spacing between the sub-text and button */
    font-weight: 300;
    font-size: 20px;
  }
  
  /* Button style */
  .contact-btn {
    display: block;
    margin-left: auto;
    margin-right: auto; /* Centers the button */
    padding: 10px 45px;
    background: linear-gradient(to right, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
    color: white;
    font-size: 16px;
    font-weight: 550;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}




.footer-custom-section {
    margin-top: -30px;  /* Remove any top margin */
    padding: 40px 0;    /* Add padding for spacing */
    background-color: #000; /* Black background for the footer */
    color: #fff; /* Text color set to white */
    width: 100vw;
    margin-left: -110px;
    
}

/* Footer Container (Flexbox layout for columns) */
.footer-custom-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 80px;
}

/* Each Column (responsible for making them evenly distributed) */
.footer-custom-column {
    flex: 1 1 22%; /* Allow columns to be flexible but no less than 22% of the container */
    margin-bottom: 20px;
    padding: 0 20px;
}

/* Company Logo & Description */
.footer-custom-column.logo-description img {
    height: 70px; /* Control logo height */
    margin-bottom: 15px;
}

.footer-custom-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-left: 170px;
}

.footer-custom-column p {
    font-size: 14px;
    width: 150%;
    line-height: 2;
}

.footer-custom-list:nth-child(2) {
    width: 100%
}

.footer-custom-column:nth-child(2) {
    margin-right: -60px;
    margin-left: 60px;
}

.footer-custom-column:nth-child(3) {
    margin-right: -80px;
}



/* Remove bullet points and left-align the list items in Categories and Services */
.footer-custom-list {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0; /* Remove padding */
    margin-left: 160px; /* Remove margin */

}

/* Control line height/gap between list items (for Categories and Services) */
.footer-custom-list li {
    margin-bottom: 14px; /* You can adjust this value to control the gap */
    line-height: 1.6; /* Adjust the line height for the desired gap between items */
    text-align: left;
    color: white;
    font-size: 14px;
}

.footer-custom-list li a {
    color: white;  /* Set link color to white */
    text-decoration: none; /* Remove underline */
    font-size: 14px;
}

.footer-custom-column.footer-custom-social h4 {
    margin-left: 220px;
    width: 100%;
    margin-bottom: 20px;
}

.footer-custom-social li {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    margin-left: 60px;
}

.footer-custom-social i {
    margin-right: 10px;
}

/* Styling the bottom section */
.footer-custom-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 15px;
}

.footer-custom-bottom p {
    margin: 0;
}

.footer-custom-bottom a {
    color: #fff;
    margin-left: 15px;
}

.gradient-line {
    height: 2px;
    border: none;
    background: linear-gradient(to left, transparent 10%, rgb(255, 255, 255) 50%, transparent 90%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 125vw;
    margin-left: -200px;
    margin-top: -10px;
    margin-bottom: -15px;
}

.gradient-line1 {
    height: 2px;
    border: none;
    background: linear-gradient(to left, transparent 10%, rgb(255, 255, 255) 50%, transparent 90%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 125vw;
    margin-left: -200px;
    margin-top: -35px;
    margin-bottom: 40px;
}





/* Mobile Styling */

@media (max-width: 430px) {

  /* General Styling for all text */
  * {
        font-size: 14px; /* Set a base font size for mobile */
    }

    body, html {
        overflow-x: hidden; /* Hide any horizontal overflow */
    }

  header .container img {
      height: 40px; /* Keep the same height for the image */
      margin-left: 25px; /* Adjust the left margin to position the image */
      margin-top: 5px; /* Adjust the top margin for vertical positioning */
    }

  /* About Section */
  .itmgmt-section {
      flex-direction: column;  /* Stack content vertically */
      padding: 20px;
      align-items: center; /* Center content */
      margin-right: 40px;
    }

    .itmgmt-content {
        margin-left: 0;
        text-align: center;  /* Center text for mobile */
    }
  
    .itmgmt-content h1, .itmgmt-section h1 strong {
      font-size: 8px; /* Adjust font size for smaller screens */
      margin-bottom: 15px;
      text-align: left;
      align-items: left;
    }

    .itmgmt-content h1 a {
      font-size: 8px;
      color: inherit; /* Inherits the text color from the parent */
      text-decoration: none; /* Removes underline */
    }

  .highlight-text {
      font-size: 30px; /* Scale down font size for mobile */
      line-height: 40px;
      background-image: linear-gradient(135deg, rgba(13, 148, 136, 1), rgba(22, 5, 111, 1));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin: 15px 0;
      text-align: center;
    }

  .itmgmt-content p {
      font-size: 14px;  /* Adjust font size for readability */
      margin: 10px 0;
      margin-left: 20px;
      line-height: 22px;
      text-align: center;
    }

  .itmgmt-image {
      display: none; /* Set the parent container to flexbox */
    }

  .freequote-btn{
      font-size: 12px;
      padding: 6px 20px;
      margin-top: 14px;
    }

    .customitmgmtdesc h2 {
        font-size: 22px; /* Adjust font size for mobile screens */
        margin-bottom: 25px; /* Reduce space below the heading */
        text-align: left;
        margin-left: 10px;
        margin-top: -40px;
    } 

    .customitmgmtdesc p{
        font-size: 14px;
        width: 80vw;
        margin-left: 10px;
    }

    .customitmgmtdesc .sub-title {
        font-size: 18px;
        margin-left: 20px;
    }

    .customitmgmtdesc .bullet-points li {
        font-size: 14px;
        margin-left: 200px;
        line-height: 1.6;
    }

    .process-container {
        display: block;  /* Stack all the process boxes vertically */
        margin-top: -20px;
    }

    .process-section .process-title{
        font-size: 22px;
        width: 90vw;
        margin-left: -100px;
        margin-top: 0px;
    }


    .process-section .section-description1 {
        font-size: 16px;
        width: 90vw;
        margin-left: -70px;
    }

    
    .process-box {
        text-align: left;  /* Center the text for better presentation */
        margin-bottom: 40px;  /* Add some spacing between the boxes */
        padding: 20px;
        margin-left: -50px;
        height: 18vh;
        width: 45vw;
        margin-left: -10px;
    }

    .contact-section {
        margin-top: -30px;
    }

    .contact-section .main-text {
        font-size: 26px;
        line-height: 1.4;
        margin-top: 10px;
    }
    .contact-section .sub-text {
        font-size: 14px;
    }
    .contact-section .contact-btn {
        font-size: 14px;
        margin-top: 55px;
    }

    .customitmgmtdesc1 h2 {
        font-size: 22px; /* Adjust font size for mobile screens */
        margin-bottom: 25px; /* Reduce space below the heading */
        text-align: left;
        margin-left: 10px;
        margin-top: -40px;
    } 
    
    .customitmgmtdesc1 p{
        font-size: 14px;
        width: 80vw;
        margin-left: 10px;
    }

    .customitmgmtdesc1 .bullet-points1 li {
        font-size: 14px; /* Modify the font size of the points */
        line-height: 1.6; /* Adjust vertical gap between points */
        color: rgba(18, 18, 18, 1); /* Change text color (optional) */
        margin-bottom: 14px; /* Vertical gap between points */
        margin-left: 15px;
    }

    .custommobapp .row .text h2 {
        font-size: 20px;
        margin-bottom: 5px; /* Reduce margin space for mobile */
        margin-left: -60px;
        width: 90vw;
    }
    .custommobapp .row .text p {
        font-size: 14px;
        width: 90vw;
        margin-left: -60px;
    }

    .custommobapp .rowreverse .text h2 {
        font-size: 20px;
        margin-bottom: 5px; /* Reduce margin space for mobile */
        margin-left: -50px;
        width: 90vw;
    }
    .custommobapp .rowreverse .text p {
        font-size: 14px;
        width: 90vw;
        margin-right: 20px;
    }

    .custommobapp .bullet-points2 li {
        font-size: 14px;
        width: 60vw;
        margin-left: -60px;
    }

    .other-consultation-services .container {
        padding: 25px; /* Add some padding for mobile view */
    }

    .other-consultation-services .section-title {
        font-size: 24px; /* Reduce font size for section title */
        text-align: center; /* Center-align the section title */
        margin-bottom: 20px; /* Space below the title */
    }
    
    /* Stack the service boxes vertically */
    .other-consultation-services .row {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align the service boxes */
    }
    
    .service-box {
        width: 100%; /* Ensure service boxes take full width */
        margin-bottom: 20px; /* Space between the boxes */
        text-align: center; /* Center-align the text in the boxes */
    }
    
    .service-title {
        font-size: 18px; /* Reduce font size for the service titles */
        margin-bottom: 10px; /* Space below the title */
        width: 90vw;
        margin-left: -170px;
    }
    
    .bullet-points {
        list-style-type: none; /* Remove default bullet points */
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margin */
        width: 90vw;
        margin-left: -150px;
    }
    
    .bullet-points li {
        font-size: 14px; /* Reduce font size for bullet points */
        margin-bottom: 8px; /* Space between the bullet points */
        text-align: left; /* Align the bullet points to the left */
    }
}



/* Mobile Footer Customization for Screen Width 430px */
@media screen and (max-width: 430px) {

    /* Remove the logo and gradient lines */
    .footer-custom-section {
      padding: 30px 10px;  /* Adjust padding for mobile view */
      background-color: #000; /* Keep background color black */
      color: #fff;
    }
  
    .footer-custom-column.logo-description img {
      display: none; /* Hide the company logo image */
    }
    .footer-custom-column.footer-custom-column.logo-description p {
      width: 90vw;
    }
  
    /* Make everything stack vertically */
    .footer-custom-container {
      display: block; /* Stack elements vertically */
      width: 100%; /* Full width for mobile view */
    }
  
    .footer-custom-column {
      flex: 1 1 100%; /* Make each column 100% width for stacking */
      padding: 10px 0; /* Add padding for spacing between stacked sections */
      text-align: center; /* Center-align all text */
      margin-bottom: 20px; /* Add space between sections */
    }
  
    .footer-custom-column h4 {
      font-size: 18px; /* Adjust heading font size */
      margin-bottom: 10px; /* Add space below headings */
      margin-left: -110px;
      text-align: center;
    }
  
    .footer-custom-column:nth-child(3) {
      margin-left: 50px;
    }
  
    .footer-custom-list li {
      margin-bottom: 12px; /* Adjust gap between items */
      font-size: 14px; /* Adjust text size for better readability */
      align-items: center;
      margin-left: -200px;
      text-align: center;
    }
  
    .footer-custom-list li a {
      font-size: 14px;
    }
  
    .footer-custom-column.footer-custom-social h4 {
      margin-left: 10px;
    }
  
    .footer-custom-column.footer-custom-social li {
      margin-bottom: 15px; /* Reduce gap for mobile view */
      margin-left: -25px; /* Remove left margin for social links */
    }
  
    .footer-custom-column.footer-custom-social i {
      margin-right: 5px; /* Reduce space between icon and text */
    }
  
    /* Bottom Section: Align the copyright and Terms & Conditions */
    .footer-custom-bottom {
      display: flex;
      flex-direction: row; /* Align elements horizontally */
      justify-content: space-between;
      align-items: center;
      width: 100%; /* Full width for the bottom section */
      margin-top: 20px; /* Add margin for spacing */
    }
  
    .footer-custom-bottom p {
      font-size: 10px; /* Make the copyright text smaller */
      margin-left: -10px;
      text-align: center;
      width: 50vw;
    }
  
    .footer-custom-bottom a {
      font-size: 10px; /* Make the link text smaller */
      text-align: center;
      
    }
  
    .footer-custom-bottom a:nth-child(2) {
      margin-right: 0px; /* Add space between copyright and terms link */
      text-align: right;
      line-height: 0.5;
      width: 40vw;
  
    }
    .footer-custom-bottom a:nth-child(1) {
      display: none; /* Hide the second link, which is the Privacy Policy */
    }
  
    .gradient-line {
      margin-top: 10px;
      margin-left: -70px;
    }
  
    .blogs, .image-wrapper, .images-container, .back-image, .front-image {
      display: none;
    }
}
