
    body, html {
      overflow-x: hidden; /* Prevent horizontal overflow */
      margin: 0; /* Remove default margin */
      padding-top: 40px;
    }
  @media (max-width: 768px) {
    body, html {
      padding-top: 50px; /* Optional: Adjust padding for smaller screens */
    }
  }

    /* Define the font-face rule */
        @font-face {
          font-family: "Helvetica Neue LT Std 75 Bold";
          src: url("path-to-font/HelveticaNeueLTStd75-Bold.woff2") format("woff2"),
              url("path-to-font/HelveticaNeueLTStd75-Bold.woff") format("woff");
        }

        @font-face {
          font-family: "Helvetica Neue LT Std 55 Roman";
          src: url("path-to-font/HelveticaNeueLTStd55-Roman.woff2") format("woff2"),
              url("path-to-font/HelveticaNeueLTStd55-Roman.woff") format("woff");
        }

            /* Apply fonts to h2 and p elements */
        h1 {
          font-family: "Helvetica Neue LT Std 75 Bold", sans-serif;
          font-weight: bold;
        }
        h2 {
          font-family: "Helvetica Neue LT Std 75 Bold", sans-serif;
          font-weight: bold;
        }
        h5 {
          font-family: "Helvetica Neue LT Std 75 Bold", sans-serif;
          font-weight: bold;
        }


        p {
          font-family: "Helvetica Neue LT Std 55 Roman", sans-serif;
          font-weight: normal;
        }


    /* Navbar custom styles */
      .custom-navbar {
        background-color: black; /* Black background for the navbar */
        padding: 4px 20px;
        position: fixed; /* Fix the navbar to the viewport */
        top: 0; /* Position it at the very top */
        left: 0; /* Align it to the left */
        width: 100%; /* Ensure it spans the full width of the viewport */
        z-index: 1000; /* Ensure it appears above other content */
        margin-bottom: 50px;
      }
      /* Navbar text styles */
      .nav-link {
        color: white !important; /* White text color for links */
        margin-right: 30px; /* Spacing between nav items */
        font-size: 14px;
      }
      
      .nav-link:hover {
        text-decoration: none;
      }
        /* Add styles for the active nav-item */
        .nav-item.active .nav-link {
          position: relative; /* Position relative to add pseudo-element */
        }

        .nav-item.active .nav-link::after {
          content: ''; /* Create the green bar */
          position: absolute;
          bottom: -25px; /* Adjust the bar to be on the edge of the navbar */
          left: 0;
          width: 100%; /* Full width under the nav-link */
          height: 7px; /* Height of the green bar */
          background-color: #3bb44a; /* Green color for the bar */
        }

       /* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  /* Navbar styles for mobile */
  .custom-navbar {
    padding: 15px 10px; /* Adjust padding for smaller screens */
    margin-bottom: 0; /* Remove unnecessary bottom margin */
  }

  /* Navbar brand/logo adjustments */
  .logo {
    width: 180px; /* Scale down the logo size */
    margin-left: 0 !important;
  }

  /* Navbar collapse section */
  .navbar-collapse {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center align all items */
    width: 100%; /* Full width for the collapse area */
  }

  /* Navbar items */
  .navbar-nav {
    display: flex;
    flex-direction: column; /* Stack nav items vertically */
    width: 100%; /* Ensure full width for each item */
    margin: 0;
    padding: 0;
  }

  .nav-item {
    width: 100%; /* Full width for clickable area */
    text-align: center; /* Center align the text */
    margin-bottom: 10px; /* Add spacing between items */
  }

  .nav-link {
    color: white !important; /* Retain white text color */
    font-size: 16px; /* Slightly larger text for better readability */
    padding: 10px 0; /* Add padding for touch-friendly links */
    width: 100%; /* Ensure links span the full width */
    display: block; /* Block display for full clickable area */
  }

  .nav-link:hover {
    background-color: rgba(59, 180, 74, 0.1); /* Add subtle hover effect */
  }

  /* Remove the green bar for active nav items on mobile */
  .nav-item.active .nav-link::after {
    content: none; /* Remove the bar on mobile */
    display: none;
  }

  /* Contact button */
  .contact-btn {
    width: 90%; /* Make the button span almost the full width */
    margin-left: 20px; /* Center the button with vertical spacing */
    padding: 12px; /* Increase padding for a larger, touch-friendly button */
    font-size: 16px; /* Slightly larger text */
    text-align: center; /* Center align text within the button */
  }

  .contact-btn:hover {
    background-color: #34a239; /* Slightly darker green on hover */
  }
}
/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  /* Active nav item color for mobile */
  .nav-item.active .nav-link {
    color: #3bb44a !important; /* Green color for active nav item */
  }
}


        
        
      /* Logo styles */
      .logo {
        width: 230px; /* Set the logo width */
        height: auto; /* Maintain aspect ratio */
        margin-left: 30px; /* Add margin to the left */
      }
      
      /* Contact button styles */
      .contact-btn {
        background-color: #3bb44a;
        color: white !important;
        font-weight: bold;
        font-size: 14px;
        padding: 6px 8px;
        margin-right: 40px; /* Space on the right */
        transition: background-color 0.3s ease;
      }
      
      .contact-btn:hover {
        background-color: #34a239; /* Slightly darker green on hover */
      }


      /*banner*/
      /* Left Content Styling */
      .content-left {
        max-width: 50%; /* Restrict width for better layout */
      }
      
      .content-left h1 {
        font-size: 35px; /* Increase heading size */
        font-weight: bold;
        color: #343a40; /* Dark gray text */
      }
      
      .content-left p {
        font-size: 18px; /* Adjust font size */
        color: #000; /* Black text */
        line-height: 1.6; /* Improve readability */

      }
      
      /* Right Image Styling */
      .content-right {
        max-width: 50%; /* Adjust max width for larger image */
        text-align: center; /* Center image */
      }
      
      .content-right img {
        width: 100%; /* Set image to fill the container's width */
        max-width: 600px; /* Limit the maximum size */
        height: auto; /* Maintain aspect ratio */
        border-radius: 10px; /* Optional rounded corners */
      }
      /* Media query for screens smaller than 768px (tablets and smaller) */
    @media (max-width: 768px) {
      .content-left, .content-right {
        max-width: 100%; /* Allow full width for both sections */
        text-align: center; /* Center-align the text and content */
      }

      .content-left h1 {
        font-size: 28px; /* Reduce heading size for smaller screens */
      }

      .content-left p {
        font-size: 16px; /* Adjust paragraph font size */
        line-height: 1.6; /* Slightly improve readability */
      }

      .content-right img {
        max-width: 90%; /* Reduce image size slightly */
      }
    }

    /* Media query for screens smaller than 576px (mobile devices) */
    @media (max-width: 576px) {
      .content-left h1 {
        font-size: 24px; /* Further reduce heading size */
      }

      .content-left p {
        font-size: 14px; /* Adjust paragraph font size */
      }

      .content-right img {
        max-width: 100%; /* Use full width for smaller devices */
        border-radius: 5px; /* Adjust rounded corners for smaller screens */
      }
    }

      

    /* Second section styling */
    /* Second section styling */
    .heading {
      text-align: center;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 40px;
    }

    /* Row Styling */
    .row-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    /* Left and Right Content */
    .left-content, .right-content {
      width: 40%;
    }

    .left-content p, .right-content p {
      font-size: 20px;
      color: #333;
      line-height: 1.6;
      text-align: center;
    }

    .right {
      color: #3bb44a;
    }

    /* Horizontal Line */
    .line {
      border-bottom: 2px solid #000;
      margin: 20px 0;
    }

    /* Right Line Styling */
    .right {
      border-bottom: 2px solid #3bb44a;
      margin: 20px 0;
    }

    /* "vs" circle styling */
    .vs {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-style: italic;
      background-color: #000000;
      color: white;
      text-align: center;
      line-height: 60px;
      font-weight: bold;
      font-size: 24px; /* Navbar custom styles */
      margin: 0 20px;
    }

    /* Image Styling with Border Bottom */
    .image-container {
      width: 100%;
      border-bottom: 3px solid #000;
    }

    .image-container img {
      width: 100%;
    }
    .rishi img {
      width: 100%;
      height: 250px;
      
    }
    .add{
      margin-bottom: 5px;
    }



    /* Media query for screens smaller than 768px (tablets and smaller) */
    @media (max-width: 768px) {
      .heading {
        font-size: 24px;
        margin-bottom: 30px;
      }

      /* Row Styling */
      .row-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      /* Left and Right Content */
      .left-content, .right-content {
        width: 80%; /* Make content take up more space */
        text-align: center;
        margin-bottom: 20px;
      }

      .left-content p, .right-content p {
        font-size: 18px;
        text-align: center;
      }

      /* Horizontal Line */
      .line {
        width: 100%; /* Make the line take up less space on mobile */
        margin: 20px 0;
      }

      .right {
        border-bottom: 2px solid #3bb44a;
        margin: 20px 0;
      }

      /* "vs" circle styling */
      .vs {
        width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
        margin: 0 10px;
      }

      /* Image Styling with Border Bottom */
      .image-container {
        width: 70%;
        border-bottom: 2px solid #000;
      }
    }

    /* Media query for screens smaller than 576px (mobile devices) */
    @media (max-width: 576px) {
      .heading {
        font-size: 20px;
        margin-bottom: 20px;
      }

      .left-content, .right-content {
        width: 90%;
      }

      .left-content p, .right-content p {
        font-size: 16px;
        line-height: 1.4;
        margin-top: 20px;
      }

      .vs {
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
      }

      .image-container {
        width: 100%;
      }
    }

    /* Media query for larger screens (desktop and laptop) */
    @media (min-width: 769px) {
      /* Adjust the line to span the full width under images */
      .image-container {
        width: 100%; /* Ensure image container is 100% width */
      }

      /* Full-width line for larger screens */
      .line {
        width: 100%; /* Make the line span full width */
        margin: 40px 0; /* Add more space above and below the line */
      }
    }

    /* Media query for screens larger than 768px (desktop, laptop, and larger devices) */
    @media (min-width: 769px) {
      /* Hide the left image for desktop and laptop */
      .left-content .image-container {
        display: none; /* Hide image */
      }

      /* Hide the right image for desktop and laptop */
      .right-content .image-container {
        display: none; /* Hide image */
      }
    }

    /* Media query for mobile and tablet (screens smaller than 768px) */
    @media (max-width: 768px) {
      /* Ensure the left image is visible for smaller screens */
      .left-content .image-container {
        display: block; /* Ensure the image container is displayed */
      }

      /* Ensure the right image is visible for smaller screens */
      .right-content .image-container {
        display: block; /* Ensure the image container is displayed */
      }
    }


    /* Media query for mobile devices (screens smaller than 768px) */
    @media (max-width: 768px) {
      /* Hide both images on mobile */
      .image-container {
        display: none; /* Hide images */
      }
    }

    /* For devices larger than 768px (desktop and tablet), images will be displayed by default */
    @media (min-width: 769px) {
      .image-container {
        display: block; /* Ensure images are displayed */
      }
    }

    /* Media query for mobile devices (screens smaller than 768px) */
    @media (max-width: 768px) {
      .break-mobile {
        display: none; /* Hide <br> tags on mobile */
      }
    }


      /*cards*/
      /* Centered Heading */
    .services-heading {
      text-align: center;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .view-all {
      color: #3bb44a; /* Green text for "View All" */
      text-decoration: none;
      font-size: 24px;
      font-weight: 600;
    }

    /* Horizontal Line */
    .services-line {
      width: 100%;
      height: 2px;
      background-color: #000000; /* Green line */
      margin: 0 auto 30px; /* Center the line */
    }

    /* Card Styling */
    .card {
      border: 2px solid #3bb44a; /* Green border with 2px thickness */
      text-align: left; /* Align text to the left */
      margin-bottom: 20px;
      border-radius: 4px; /* Optional: to give rounded corners to the border */
    }
    
    .card-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 0; /* Remove bottom margin */
    }
    
    .card-text {
      font-size: 18px;
      color: #3bb44a; /* Set color for card title */
      margin-bottom: 0; /* Remove top margin to eliminate gap */
    }
    
    .card-img {
      width: 100%; /* Make the image span the full width of the card */
      height: 230px; /* Fixed height for the image */
      object-fit: fill; /* Ensure the image covers the area and maintains aspect ratio */
      margin-top: 5px;
      border-radius: 8px; /* Optional rounded corners for images */
    }
    /* Media query for screens smaller than 768px (tablets and smaller) */
@media (max-width: 768px) {
  /* Centered Heading */
  .services-heading {
    font-size: 24px; /* Reduce font size */
    margin-bottom: 15px; /* Adjust margin */
  }

  /* View All Link */
  .view-all {
    font-size: 20px; /* Reduce font size for mobile */
  }

  /* Horizontal Line */
  .services-line {
    width: 80%; /* Make the line smaller to fit mobile screen */
    margin: 0 auto 20px; /* Adjust bottom margin */
  }

  /* Card Styling */
  .card {
    border: 2px solid #3bb44a; /* Green border with 2px thickness */
    text-align: left; /* Keep text aligned to the left */
    margin-bottom: 20px; /* Add space between cards */
    border-radius: 8px; /* Rounded corners for mobile */
  }

  .card-title {
    font-size: 18px; /* Reduce font size for the title */
  }

  .card-text {
    font-size: 16px; /* Reduce font size for the card text */
  }

  .card-img {
    height: 200px; /* Reduce the image height */
    object-fit: cover; /* Ensure the image fits within the container */
    margin-top: 5px;
    border-radius: 8px; /* Optional rounded corners for images */
  }
}

/* Media query for screens smaller than 576px (mobile devices) */
@media (max-width: 576px) {
  /* Centered Heading */
  .services-heading {
    font-size: 20px; /* Further reduce font size */
    margin-bottom: 10px; /* Adjust bottom margin */
  }

  /* View All Link */
  .view-all {
    font-size: 18px; /* Reduce font size */
  }

  /* Horizontal Line */
  .services-line {
    width: 90%; /* Make the line even smaller */
    margin: 0 auto 15px; /* Adjust bottom margin */
  }

  /* Card Styling */
  .card {
    border: 2px solid #3bb44a; /* Green border with 2px thickness */
    text-align: left; /* Keep text aligned to the left */
    margin-bottom: 15px; /* Adjust space between cards */
    border-radius: 8px; /* Rounded corners for mobile */
  }

  .card-title {
    font-size: 16px; /* Further reduce font size for the card title */
  }

  .card-text {
    font-size: 14px; /* Further reduce font size for the card text */
  }

  .card-img {
    height: 250px; /* Reduce the image height */
    object-fit: fill; /* Ensure the image fits within the container */
    margin-top: 5px;
    border-radius: 8px; /* Optional rounded corners for images */
  }
}



    /*second type cards*/
    /* Heading Styles */
    .headings {
      text-align: left;
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* Horizontal Line Below Heading */
    .lines {
      width: 100%;
      height: 2px;
      background-color: #000000;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    /* Card Styling */
    .presentation-card {
      text-align: left;
      border: none;
      padding: 20px;
      margin: 10px;
    }

    .creation-card {
      text-align: left;
      border: none;
      padding: 20px;
      margin: 10px;
    }

    .storytelling-card {
      text-align: left;
      border: none;
      padding: 20px;
      margin: 10px;
    }

    .bro {
      font-size: 22px;
      font-weight: 600;
      color: #333;
    }

    .ram {
      font-size: 16px;
      color: #3bb44a;
    }

    .small-line {
      width: 60px;
      height: 4px;
      background-color: #3bb44a;
      margin-top: 10px;
      margin-bottom: 10px;

    }

   /* Default Vertical Line Styling (for larger screens) */
.vertical-line {
  border-left: 1.5px solid #333; /* Vertical line */
  height: 250px; /* Fixed height for the vertical line */
}

/* Media Query for Mobile (Screens Smaller than 768px) */
@media (max-width: 768px) {
  .vertical-line {
    border-left: none; /* Remove vertical line */
    border-top: 1.5px solid #333; /* Add horizontal line at the top */
    height: auto; /* Remove fixed height */
    padding-left: 10px; /* Reset padding for mobile */
    padding-top: 20px; /* Add space below the line */
    margin-top: 20px; /* Add spacing above the column */
    
  }
}

  
    /* Icon Style */
    .card-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }



    /*slider*/
    /*slider*/
       /* Portfolio Heading */
       .portfolio-heading {
        text-align: left;
        font-size: 28px;
        font-weight: 300;
        margin-bottom: 10px;
      }

     /* Styling for the container-fluid with class "top" */
      .top {
        position: relative;
        padding: 20px; /* Add padding for spacing */
        background-color: #f8f9fa; /* Light background */
      }

      /* Top border */
      .top::before,
      .top::after {
        content: '';
        position: absolute;
        left: 50%; /* Start from the center */
        transform: translateX(-50%); /* Center horizontally */
        width: 1200px; /* Border width */
        height: 2px; /* Border thickness */
        background-color: #333; /* Border color */
      }

      .top::before {
        top: 0; /* Position at the top */
      }

      .top::after {
        bottom: 0; /* Position at the bottom */
      }
     /* Horizontal Line Below Heading */
     .ramu {
      max-width: 1200px; /* Adjust as needed for your design */
    }
      .portfolio-line {
        width: 80px; /* Slightly larger for a more pronounced look */
        height: 4px;
        background-color: #3bb44a;
        margin-bottom: 30px;
      }
     

      /* Content Section */
      .content-section h5 {
        font-size: 22px;
        font-weight: bold;
        color: #333;
       
      }

      .content-section p {
        font-size: 16px;
        color: #555;
        line-height: 1.2;
        margin-bottom: 5px; /* Remove top margin */
      }

      .small-line {
        width: 50px;
        height: 2px;
        background-color: #3bb44a;
        margin: 15px 0;
      }
  
    /* Center Navigation Arrows Vertically */
      .carousel-control-prev,
      .carousel-control-next {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #3bb44a;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute; /* Position absolutely within the container */
        top: 50%; /* Center vertically */
        transform: translateY(-50%); /* Adjust for perfect centering */
      }

      .carousel-control-prev {
        left: -60px; /* Adjust this to move the arrow outside the container */
      }

      .carousel-control-next {
        right: -60px; /* Adjust this to move the arrow outside the container */
      }

      /* Adjust Carousel Image */
      .carousel-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
      }

      /* Media query for screens smaller than 768px (tablets and smaller) */
@media (max-width: 768px) {
  /* Portfolio Heading */
  .portfolio-heading {
    font-size: 24px; /* Reduce font size */
    text-align: center; /* Center-align the heading */
    margin-bottom: 15px;
  }

  /* Top border adjustment */
  .top::before,
  .top::after {
    width: 100%; /* Make the top and bottom borders full width */
  }

  /* Horizontal Line Below Heading */
  .ramu .portfolio-line {
    width: 60px; /* Reduce width for mobile */
    margin-bottom: 20px; /* Adjust spacing */
  }

  /* Content Section */
  .content-section h5 {
    font-size: 18px; /* Smaller heading for mobile */
  }

  .content-section p {
    font-size: 14px; /* Smaller font size */
    margin-top:20px; /* Increase bottom margin for readability */
  }

  .small-line {
    width: 30px; /* Smaller line on mobile */
  }

  /* Adjust carousel control arrows */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px; /* Smaller arrow size */
    height: 40px; /* Smaller arrow size */
    left: -40px; /* Adjust position of the left arrow */
    right: -40px; /* Adjust position of the right arrow */
  }

  /* Adjust Carousel Image */
  .carousel-item img {
    max-width: 100%; /* Ensure the image fills the container */
  }
}

/* Media query for screens smaller than 576px (mobile devices) */
@media (max-width: 576px) {
  /* Portfolio Heading */
  .portfolio-heading {
    font-size: 20px; /* Further reduce font size */
  }

  /* Horizontal Line Below Heading */
  .ramu .portfolio-line {
    width: 50px; /* Further reduce width for smaller devices */
    margin-bottom: 15px; /* Adjust bottom margin */
  }

  /* Content Section */
  .content-section h5 {
    font-size: 16px; /* Adjust heading font size for smaller devices */
  }

  .content-section p {
    font-size: 12px; /* Adjust paragraph font size */
    margin-top: 10px;
  }

  /* Disable carousel control arrows on mobile */
  .carousel-control-prev,
  .carousel-control-next {
    display: none; /* Hide arrows on mobile */
  }

  /* Show hand gesture cursor for carousel */
  #portfolioCarousel {
    cursor: pointer; /* Change cursor to a hand gesture when hovering over the carousel */
  }

  /* Adjust Carousel Image */
  .carousel-item img {
    max-width: 100%;
    height: auto;
  }
}



      /*second-slider*/
      /*slider*/
       /* Container Styling */
       .testimonial-container {
        background-color: #3bb44a; /* Background color */
        padding: 50px 0;
        height: 250px; /* Adjust the value as needed */
        
    }
    
    .testimonial-wrapper {
      width: 1150px; /* Set container width */
      margin: 0 auto; /* Center the container */
    }

    /* Testimonial Slider Styles */
    .testimonial-slide {
      display: flex;
      align-items: center; /* Vertically center content */
    }

    /* Image Section */
    .testimonial-image {
      max-width: 25%; /* Set width for the image */
      margin-right: 20px; /* Space between image and text */
    }

    /* Content Section */
    .testimonial-content {
      max-width: 70%; /* Allow text to take up the remaining space */
    }

    .testimonial-content p {
      font-size: 16px;
      color: #fff;
      line-height: 1.5;
    }

    .testimonial-content h5 {
      font-size: 18px;
      font-weight: bold;
      color: #fff;
    }

    .testimonial-divider {
      width: 100%;
      height: 3px;
      background-color: #000000;
      margin: 15px 0;
    }

    /* Carousel Image */
    .testimonial-carousel-item img {
      width: 100%;
      height: auto;
      border-radius: 8px; /* Optional rounded corners for images */
    }

    /* Navigation Arrows */
    .testimonial-prev,
    .testimonial-next {
      background-color: #3bb44a;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .testimonial-prev-icon,
    .testimonial-next-icon {
      background-size: 60%; /* Adjust the icon size */
    }

    /* Optional: styling for the active slide */
    .testimonial-carousel-item.active {
      transition: transform 0.5s ease-in-out;
    }

    /* Media query for screens smaller than 768px (tablets and smaller) */
@media (max-width: 768px) {
  .testimonial-wrapper {
    width: 100%; /* Allow full width for smaller screens */
    padding: 0 20px; /* Add padding for better spacing on mobile */
  }

  /* Adjust the testimonial slide layout */
  .testimonial-slide {
    flex-direction: column; /* Stack the image and text vertically */
    align-items: center; /* Center the content */
  }

  /* Image Section */
  .testimonial-image {
    max-width: 100%; /* Set image to full width */
    margin-bottom: 20px; /* Add space below the image */
  }

  /* Content Section */
  .testimonial-content {
    max-width: 100%; /* Allow text to take up full width */
    text-align: center; /* Center the text */
  }

  .testimonial-content p {
    font-size: 14px; /* Reduce font size for smaller screens */
  }

  .testimonial-content h5 {
    font-size: 16px; /* Adjust heading size */
  }

  /* Hide navigation arrows on mobile */
  .testimonial-prev,
  .testimonial-next {
    display: none; /* Hide the arrows on mobile */
  }
}

/* Media query for screens smaller than 576px (mobile devices) */
@media (max-width: 576px) {
  .testimonial-content p {
    font-size: 12px; /* Further reduce font size for smaller devices */
  }

  .testimonial-content h5 {
    font-size: 14px; /* Further adjust heading size */
  }
}

@media (max-width: 768px) {
  .testimonial-slide .col-2 img {
    position: static !important; /* Disables the relative position */
    top: auto !important; /* Removes the top offset */
    left: auto !important; /* Removes the left offset */
  }
  .testimonial-container {
    height: 380px;
  }
}




    /*remo*/
    /*footer*/
      /* General footer styling */
.footer {
  background-color: #fff; /* White background */
  padding: 20px 0; /* Spacing around the footer */
  border-top: 2px solid #000; /* Black top border */
}

.footer .row {
  display: flex; /* Flexbox container */
  justify-content: space-evenly; /* Evenly space columns */
  align-items: center; /* Vertically align items */
}

.remo .row {
  margin: 0; /* Remove any margin between the row */
}

.remo .col-sm-6 {
  padding: 0; /* Remove padding from the columns */
}

.footer p {
  margin: 0;
  font-size: 14px; /* Smaller text size */
  color: #000; /* Black text */
  line-height: 1.5; /* Better spacing for text */
}

.footer i {
  font-size: 18px; /* Icon size */
  color: #000; /* Black icons */
  vertical-align: middle;
}

.footer .remo {
  border-right: 1px solid #000; /* Vertical divider between columns */
  border-left: 1px solid #000; /* Vertical divider between columns */
}

.footer a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit the color of the parent element */
}

.footer .col-sm-6 .row {
  flex: 1;
}

.footer .col-sm-3:last-child {
  border-right: none; /* Remove divider for the last column */
}

.footer .d-flex a {
  text-decoration: none; /* Remove underline */
}

.footer .d-flex i {
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.footer .d-flex .bi-behance {
  font-size: 22px; /* Increase Behance icon size */
}

.footer .d-flex i:hover {
  color: #007bff;
}

/* Responsive adjustments for mobile (max-width: 768px) */
@media (max-width: 768px) {
  .footer {
    padding: 15px;
    text-align: center;
  }

  .footer .row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer .col-sm-4,
  .footer .col-sm-5,
  .footer .col-sm-3 {
    width: 100%;
    margin-bottom: 10px;
  }

  .remo {
    border-left: none;
    border-right: none;
  }

  .remo .row {
    flex-direction: column;
    gap: 10px;
  }

  .remo .col-sm-6 {
    text-align: center;
    padding: 0;
  }

  .footer p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .footer i {
    font-size: 16px;
    margin: 0 5px;
  }

  .footer .d-flex {
    justify-content: center;
    margin-top: 10px;
  }

  .footer .d-flex i {
    font-size: 18px;
    margin-right: 8px;
  }
}

@media (max-width: 768px) {
  .footer .remo {
    border-right: none;
    border-left: none;
  }
}

/* ===== Additional Custom Adjustments ===== */
.footer .row > div {
  padding-left: 10px;
  padding-right: 10px;
}

.footer p {
  font-size: 13px; /* Slightly smaller text */
}

.footer .d-flex i,
.footer i {
  font-size: 16px; /* Slightly smaller icons */
}

.footer span {
  font-size: 13px;
}

.footer .d-flex a i {
  margin-right: 8px; /* Tighter space between icons */
}

.info p {
  line-height: 2; /* Adjust as needed: 1.6–2.0 is usually good */
  font-size: 13px;  /* Optional: Adjust font size for consistency */
  margin: 0;
}
/* Responsive adjustments for laptops (screen widths: 992px to 1440px) */
@media (min-width: 992px) and (max-width: 1440px) {
  .footer {
    padding: 25px 10px;
    width: 1250px;
  }

  .footer p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .footer .row > div {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer i {
    font-size: 16px;
  }

  .footer .d-flex i {
    font-size: 17px;
    margin-right: 10px;
  }

  .footer .d-flex {
    justify-content: start;
    align-items: center;
    gap: 8px;
  }

  .footer span {
    font-size: 13px;
  }
}



/*benefits container*/
/* Box */
.benefits-container {
  background-color: #3bb44a; /* Green background */
  padding: 30px;
}

.benefits-left h2 {
  font-size: 30px;
  color: white;
  writing-mode: vertical-lr; /* Vertical text */
  transform: rotate(180deg); /* Correct orientation */
  text-align: center;
}

.benefits-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefits-right p {
  font-size: 22px;
  color: white;
  font-weight: 250;
  margin: 0;
}

.top-benefits .row,
.bottom-benefits .row {
  display: flex;
  margin-left: 0; /* Remove any extra left margin */
  margin-right: 0; /* Remove any extra right margin */
  justify-content: space-between;
}

.top-benefits .col-md-6,
.bottom-benefits .col-md-6 {
  display: flex;
  align-items: center;
  padding: 0; /* Remove padding to eliminate space between columns */
}

.benefits-right .row {
  margin: 0; /* Remove any margin between rows */
}

.benefit-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px; /* Optional: space between the icon and text */
}

.top-benefits .row,
.bottom-benefits .row {
  display: flex;
  justify-content: flex-start; /* Align all columns to the left */
}

.top-benefits .col-md-6,
.bottom-benefits .col-md-6 {
  text-align: left;
}

.benefits-line {
  border: 1px solid rgb(0, 0, 0);
  width: 100%;
  margin: 20px 0;
}

/* Aligning Image and Text */
.d-flex {
  display: flex;
  align-items: center;
}

/* Media Query for tablet screens (max-width: 768px) */
@media (max-width: 768px) {
  .benefits-container {
    padding: 15px;
  }

  .benefits-left h2 {
    font-size: 24px;
    writing-mode: unset; /* Remove vertical text */
    transform: unset; /* Remove rotation */
    text-align: center; /* Align text to the left for smaller screens */
  }

  .benefits-right .col-md-6 {
    width: 100%;
    margin-bottom: 15px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
  }

  /* Center content vertically */
  .row.align-items-center {
    display: flex;
    align-items: center; /* Vertically center content */
  }
}

/* Media Query for mobile screens (max-width: 576px) */
@media (max-width: 576px) {
  .benefits-left h2 {
    font-size: 20px;
    writing-mode: unset; /* Ensure text is horizontal */
    transform: unset; /* Ensure no rotation */
    text-align: center; /* Align text to the left */
  }

  .benefits-right .col-md-6 {
    width: 100%;
    margin-bottom: 15px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
  }
}



/*Banner page two*/
/* Media Query for tablets and smaller screens (max-width: 768px) */
/* Media Query for tablet screens (max-width: 768px) */
@media (max-width: 768px) {
  .share {
    display: flex;
    flex-direction: column; /* Stack the content vertically */
    align-items: center;
    padding: 0 10px; /* Adjust padding for better spacing */
  }

  .banner-left, .banner-right {
    max-width: 100%; /* Allow full width for both sections */
    text-align: center; /* Center align the text and content */
    margin-bottom: 20px; /* Add margin between the text and the image */
    padding-left: 0; /* Remove left padding to avoid gaps */
    padding-right: 0; /* Remove right padding to avoid gaps */
  }

  .banner-left h1 {
    font-size: 20px; /* Adjust title font size for smaller screens */
    margin-bottom: 10px; /* Space between title and highlighted text */
  }

  .highlight-text {
    font-size: 32px; /* Adjust font size for highlighted text */
  }

  .banner-img {
    width: 100%; /* Use full width for the image */
    height: auto; /* Maintain aspect ratio */
    max-height: 250px; /* Limit the height for better appearance */
    margin-top: 20px; /* Add margin between text and image */
  }
}

/* Media Query for mobile screens (max-width: 576px) */
@media (max-width: 576px) {
  .share {
    padding: 10px; /* Add smaller padding for mobile */
  }

  .banner-left, .banner-right {
    width: 100%; /* Ensure both sections take up full width */
    padding-left: 0; /* Remove left padding */
    padding-right: 0; /* Remove right padding */
  }

  .banner-title {
    font-size: 22px; /* Reduce title font size for mobile */
    margin-bottom: 10px; /* Space between title and highlighted text */
  }

  .highlight-text {
    font-size: 28px; /* Reduce size of highlighted text */
  }

  .banner-img {
    max-width: 100%; /* Use full width for image */
    height: auto; /* Maintain aspect ratio */
    max-height: 200px; /* Adjust height to fit better on mobile */
    margin-top: 15px; /* Add margin between text and image */
  }

  .banner-left {
    order: 0; /* Ensure text is on top */
  }

  .banner-right {
    order: 1; /* Image below text */
  }
}


/*improve*/
.improve {
  max-width: 98%; /* Reduce the row width */
  margin: 0 auto; /* Center the row */
}

.code {
  width: 80%; /* Reduce image size to 80% of the container */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure the image behaves like a block element */
}

.coder  {
  width: 70%; /* Reduce image size to 80% of the container */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure the image behaves like a block element */
}
.coders  {
  width: 76%; /* Reduce image size to 80% of the container */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure the image behaves like a block element */
}
.coding  {
  width: 90%; /* Reduce image size to 80% of the container */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure the image behaves like a block element */
}
.codings {
  width: 98%; /* Reduce image size to 80% of the container */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure the image behaves like a block element */
}
.codinger {
  width: 100%; /* Reduce image size to 80% of the container */
  height: 174px; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure the image behaves like a block element */
}

/*portfolio*/
/*portfolio content */
.portfolio-headings {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #3bb44a;
}

.portfolio-subheading {
  font-size: 24px;
  color: #555;
  margin-bottom: 15px;
}

.portfolio-line {
  background-color: #3bb44a; /* Green line */
  height: 4px;
  width: 25%;
  margin: 10px 0;
}

.log {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .portfolio-headings {
    font-size: 18px; /* Reduce the font size for mobile */
    margin-bottom: 5px; /* Add a little margin at the bottom */
    margin-top: 10px;
    text-align: left;
  }

  .portfolio-subheading {
    font-size: 20px; /* Reduce the font size for mobile */
    color: #555;
    margin-bottom: 10px; /* Reduce the margin for better alignment */
  }

  .portfolio-line {
    width: 40%; /* Increase the width of the green line for smaller screens */
    margin: 15px 0; /* Add more space between the line and the text */
  }

  .log {
    font-size: 14px; /* Reduce the font size for the paragraph */
    color: #333;
    line-height: 1.4; /* Adjust line height for better readability */
  }
}


/*resources*/
/*resources banner*/
.custom-height {
  height: 350px; /* Adjust the height as needed */
}

.soon {
  position: relative;
  width: 100%; /* Full width for the container */
  height: 575px; /* Adjust the height as needed */
  
}

.coming {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: 100%; /* Make the image fill the container */
  object-fit: cover; /* Ensure the image covers the entire area while maintaining its aspect ratio */

}
@media (max-width: 576px) {
  .custom-height {
    height: 250px; /* Adjust the height for mobile */
  }

  .soon {
    height: 350px; /* Adjust the height for mobile */
  }

  .coming {
    top: -80px; /* Adjust the top position for mobile */
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill; /* Ensure the image still covers the entire area */
  }

  .content-center h1 {
    font-size: 28px; /* Adjust font size for mobile */
    margin-bottom: 10px; /* Adjust the margin for better spacing */
  }
}

/*about*/
/*checks*/
.check{
  font-size: 38px;
}
.checks{
  font-size: 32px;
  font: bold;
}




/*about page*/
/*about page style*/
.about .line {
  width: 500px;
  height: 3px;
  background-color: #3bb44a;
 
}
.about .highlight {
  color: #3bb44a;
  font-weight: bold;
}
.about img {
  width: 100%;
  height: 400px;
  object-fit: fill;
  border-radius: 8px;
}
.about .content {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  height: 100%; /* Ensure full column height */
}
.about p{
  font-size: 18px;
}

/* Media Queries */

/* For tablets (screen width between 768px and 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .about img {
    height: 300px; /* Adjust image height for tablets */
  }
  .about p {
    font-size: 16px; /* Slightly reduce font size for paragraphs */
  }
  .about .highlight {
    font-size: 18px; /* Adjust the highlight text size */
  }
}

/* For mobile devices (screen width below 768px) */
@media (max-width: 767px) {
  .about {
    padding: 20px; /* Reduce padding for smaller screens */
  }
  .about .line {
    width: 40px; /* Reduce the width of the line */
    margin: 8px 0; /* Adjust margin */
  }
  .about img {
    height: auto; /* Let the image adjust naturally to screen width */
  }
  .about .content {
    text-align: center; /* Center-align text for better readability */
  }
  .about p {
    font-size: 14px; /* Further reduce paragraph font size */
  }
  .about .highlight {
    font-size: 16px; /* Adjust highlight text size */
  }
  h2 {
    font-size: 24px; /* Adjust heading size for mobile */
  }
}



/*team styles*/
/*team conatiner*/
.team-member {
  text-align: left;
  margin-bottom: 20px;
  padding: 5px;
}

.team-member img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  color: #000000;
  font-size: 18px;
  margin: 8px 0;
}

.team-member p {
  font-size: 12px;
  color: #333;
  margin-bottom: 6px;
}

.team-member .role {
  color: #3bb44a;
  font-size: 18px;
  line-height: 1.2;
}

.line {
  width: 100%;
  height: 3px;
  background-color: #3bb44a;
  margin: 15px 0;
  position: relative;
}

.team-section {
  padding: 40px 0;
}

.head {
  font-size: 22px;
  color: #3bb44a;
  margin-bottom: 5px;
  text-align: left;
}
.meet{
  font-size: 35px;
  margin-bottom: 45px;
  color: #3bb44a;
}
@media (max-width: 768px) {
  .meet {
    font-size: 24px;
    margin-bottom: 5px;
    text-align: center; /* Optional: for better alignment on small screens */
  }
}

.row.team-members {
  margin-top: -90px;
}

@media (max-width: 767px) {
  .row.team-members {
    margin-top: 0;
  }

  .team-member {
    text-align: center;
    margin-bottom: 15px;
  }

  .team-member img {
    width: 110px;
    height: 110px;
    margin-bottom: 10px;
  }

  .team-member h3 {
    font-size: 16px;
  }

  .team-member p {
    font-size: 11px;
  }

  .team-member .role {
    font-size: 16px;
  }

  .team-section {
    padding: 25px 10px;
  }
}


/*last section*/
 /* Square Image class */
 .support-img {
  width: 100%;
  height: 220px; /* Adjust size as needed */
  object-fit: cover; /* Ensures the image is cropped to fit the square */
}

/* Square Card class */
/* Card Styles */
.support-card {
  background-color: black;
  color: white;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: scale(1.05);
}

/* Card Body Custom Styles */
.card-body-custom {
  padding: 20px;
  position: relative;
}

/* Card Number Positioning */
.card-number {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 24px;
  color: #e0e0e0; /* Green color */
}

/* Card Title Styling */

/* Flex alignment for the heading and line */
.head-container {
  display: flex;
  align-items: center; /* Vertically center the line with the heading */
  justify-content: left; /* Center the entire block */
  gap: 15px; /* Space between the heading and the line */
}

.services-line {
  width: 80%; /* Adjust the line width */
  height: 3px;
  background-color: #3bb44a; /* Match the brand color */
  margin: 0; /* Remove any default margin */
}

.support {
  margin-top: 30px;
  font-size: 16px;
  font-weight: bold;
  color: white;
}

/* Bullet Points Styling */
.supports p {
  font-size: 16px;
  color: white;
  line-height: 1.4;
  margin-top: 20px;
}
.supports p i {
  color: #ffffff; /* Green color for the ticks */
  margin-right: 8px;
}

.supporting p {
  font-size: 16px;
  color: white;
  line-height: 1;
  margin-top: 22px;
}
.supporting p i {
  color: #ffffff; /* Green color for the ticks */
  margin-right: 8px;
}

.supporter p {
  font-size: 12px;
  color: white;
  line-height: 1.6;
  margin-top: 22px;
}
.supporter p i {
  color: #ffffff; /* Green color for the ticks */
  margin-right: 8px;
}
.super p {
  font-size: 12px;
  color: white;
  line-height: 1;
  margin-top: 13px;
}
.super p i {
  color: #ffffff; /* Green color for the ticks */
  margin-right: 8px;
}
.black{
  font-size: 12px;
}

/* Media Queries for Mobile (max-width: 767px) */
@media (max-width: 767px) {
  /* Support Images */
  .support-img {
    height: auto; /* Allow the image height to adjust naturally */
    margin-bottom: 15px; /* Add spacing between images */
  }

  /* Cards */
  .support-card {
    margin: 10px 0; /* Reduce margin for a more compact layout */
    box-shadow: none; /* Simplify the appearance on smaller screens */
  }

  .card-body-custom {
    padding: 15px; /* Reduce padding inside the card */
  }

  .card-number {
    font-size: 20px; /* Slightly smaller font for card numbers */
  }

  .support {
    font-size: 14px; /* Adjust card title size */
    margin-top: 32px; /* Reduce spacing above card titles */
  }

  /* Bullet Points */
  .supports p,
  .supporting p,
  .supporter p,
  .super p {
    font-size: 12px; /* Reduce text size for bullet points */
    line-height: 1.4; /* Adjust line spacing for readability */
    margin-top: 10px; /* Reduce spacing between bullet points */
  }

  /* Section Layout */
  .row {
    margin: 0; /* Remove extra margins */
  }

  .col-sm-3 {
    width: 100%; /* Make all columns take full width */
    margin-bottom: 20px; /* Add spacing between cards */
  }

  h2.headings {
    font-size: 24px; /* Adjust heading size */
    text-align: center; /* Center align heading */
  }

  .services-line {
    width: 30px; /* Reduce the line width */
    margin: 10px auto; /* Center align the line */
  }
}

/*contactus*/

/* Container and Layout */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px; /* Reduced padding */
  background-color: #f9f9f9;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Reduced gap between columns */
}

/* Contact Image */
.contact-image {
  width: 100%;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Contact Form */
.contact-form {
  flex: 1 1 50%; /* Keep the form at 50% width */
  max-width: 500px; /* Reduced max-width for a smaller form */
  background-color: #fff;
  padding: 20px; /* Reduced padding */
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: auto; /* Form height stays auto */
}

.form-card {
  animation: fadeIn 1s ease-in-out;
}

.form-title {
  text-align: center;
  font-size: 24px; /* Reduced font size */
  color: #333;
  font-weight: 700;
  margin-bottom: 15px; /* Reduced margin */
}

/* Input Fields */
.form-group {
  margin-bottom: 15px; /* Reduced margin between input fields */
}

.form-label {
  display: block;
  font-size: 14px; /* Reduced label font size */
  color: #555;
  font-weight: 600;
  margin-bottom: 6px; /* Reduced margin */
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px; /* Reduced padding */
  font-size: 14px; /* Reduced font size */
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #3bb44a;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(59, 180, 74, 0.2);
  outline: none;
}

/* Submit Button */
.form-btn {
  width: 100%;
  padding: 12px; /* Reduced padding */
  font-size: 16px; /* Reduced font size */
  font-weight: bold;
  background-color: #3bb44a;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-btn:hover {
  background-color: #2a9d3d;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 10px;
  }

  .contact-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-image {
    flex: 1 1 100%;
    max-width: none;
  }

  .contact-form {
    flex: 1 1 100%;
    padding: 20px; /* Reduced padding for mobile */
  }

  .form-title {
    font-size: 22px; /* Slightly smaller font on mobile */
  }

  .form-input,
  .form-textarea {
    font-size: 13px; /* Reduced font size on mobile */
    padding: 10px; /* Reduced padding on mobile */
  }

  .form-btn {
    font-size: 14px; /* Reduced font size on mobile */
    padding: 10px 18px; /* Adjusted padding on mobile */
  }
}
/* Remove margin-top for mobile devices */
@media (max-width: 768px) {
  .contact-image {
    margin-top: 0 !important; /* Removes the margin-top */
  }
}


/* Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}



/* Media Queries for Mobile (max-width: 767px) */
/* Media query for screens smaller than 768px (tablets and smaller) */
@media (max-width: 768px) {
  /* Adjusting the layout for the 'share' container */
  .share {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Adjusting the 'win' class */
  .win {
    text-align: center; /* Center-align the text on smaller screens */
    margin-bottom: 20px; /* Add some space below the text */
  }

  /* Adjusting the 'shared' class */
  .shared {
    padding: 10px;
  }

  /* Adjusting the 'sure' class */
  .sure {
    text-align: center; /* Center the image */
    margin-top: 20px; /* Add spacing between the text and image */
  }

  /* Adjust the width of the image in 'sure' */
  .sure img {
    width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain aspect ratio */
  }
}

/* Media query for screens smaller than 576px (mobile devices) */
@media (max-width: 576px) {
  /* Adjusting the 'win' class */
  .win {
    margin-bottom: 10px; /* Reduce bottom margin for mobile */
  }

  /* Adjusting the font sizes */
  .win h1 {
    font-size: 24px; /* Adjust heading font size */
  }

  .win .highlight-text {
    font-size: 28px; /* Adjust highlighted text size */
  }

  /* Adjusting the 'sure' class */
  .sure img {
    width: 100%; /* Make the image take full width */
    height: auto; /* Ensure the aspect ratio is preserved */
  }

  /* Adjusting the layout for 'share' */
  .share {
    padding: 10px;
  }

  /* Adjusting the 'shared' class */
  .shared {
    padding: 0;
  }
}

/* Custom overlay popup */
#pdfOverlay {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position on the screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark background */
  z-index: 9999; /* Ensure it stays on top of other content */
  justify-content: center;
  align-items: center;
  display: flex; /* Center content */
}

/* PDF container */
#pdfContainer {
  position: relative;
  background-color: white;
  padding: 20px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

/* Close button */
#closePdfBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

/* Ensure PDF fits within the container */
#pdfEmbed {
  width: 100%;
  height: 600px;
  pointer-events: none; /* Disable interaction with PDF */
}





