
 /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
                  margin: 0;
    padding: 0;
    text-align: left;
    letter-spacing: 0;
    color: #000;
    font-family: "Poppins", arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 28px;

        }

p{
/*    margin: 0 0 2em;*/
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 25px;

}

p{
    color: #2f2f34;
}


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: .2rem;
/*    margin-bottom: .6em;*/
    letter-spacing: -.03em;
    font-weight: 600;
    font-style: normal;
    text-rendering: optimizeLegibility;
}

h2{
    font-size: 45px;
}

section{
margin: 115px 0px;
}

     
.section-inner-padding{
    padding:75px 0px;
}


a {
    text-decoration: none;
    color: white;

}

  a:link {
            color: black;
        }




        .navbar {
/*            padding: 15px 0;*/
            background-color: white;
/*            box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
        }

        .navbar-brand img {
            max-height: 40px;
            width: auto;
        }

        .nav-link {
            color: #333 !important;
            font-weight: 500;
            padding: 8px 16px !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #007bff !important;
        }

        .navbar-toggler {
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .search-icon {
            color: #333;
            font-size: 1.2rem;
            padding: 8px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .search-icon:hover {
            color: #007bff;
        }

        @media (max-width: 991px) {
            .navbar-nav {
                padding: 1rem 0;
                background-color: black;
            }
            
            .search-icon {
                display: inline-block;
                margin-top: 10px;
            }
            
            .nav-link {
                padding: 10px 0 !important;
                color: white;

            }
        }



.breadcrumb-container {
/*    background-color: #f8f9fa; /* Light gray background for the breadcrumb */*/
    padding: 30px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0; /* Subtle bottom border */
}

.breadcrumb-container .container {
    display: flex;
    align-items: center;
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    position: relative;
}

.breadcrumb li a {
    text-decoration: none;
    color: #000; /* Link color */
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #0056b3; /* Darker link color on hover */
}

.breadcrumb li.active {
    color: #6c757d; /* Gray for active breadcrumb */
    cursor: default;
}

.breadcrumb li::after {
    content: ">";
    margin: 0 8px;
    color: #6c757d; /* Separator color */
}

.breadcrumb li:last-child::after {
    content: ""; /* Remove the separator for the last item */
}



 footer{
            background-color: #000;
            color: #fff;
            font-size: 14px;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .footer-links a {
            color: #fff;
            text-decoration: none;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .footer-underline {
            border-top: 1px solid #444;
            margin: 15px 0;
        }


    .footer-logo img {
            max-width: 85%; /* Makes the image responsive */
            height: auto; /* Maintains aspect ratio */
        }

             @media (max-width: 576px) {
            .footer-logo img {
                width: 80%; /* Reduce logo size on smaller screens */
            }
        }


/* Style for the Go to Top Button */
.go-to-top-btn {
  position: fixed;
  bottom: 30px; /* Adjusted for better visibility */
  right: 30px; /* Adjusted for better visibility */
  background: linear-gradient(145deg, #007bff, #0056b3); /* Gradient background */
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px 20px;
  font-size: 24px; /* Larger icon */
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
  transition: all 0.3s ease; /* Smooth transition */
  opacity: 0; /* Hidden by default */
  visibility: hidden; /* Hidden by default */
  z-index: 1000; /* Ensure it is on top of other elements */
}

.go-to-top-btn.show {
  opacity: 1; /* Visible when class "show" is added */
  visibility: visible; /* Ensure visibility when active */
  transform: translateY(0); /* Smoothly moves into position */
}

.go-to-top-btn:hover {
  background: linear-gradient(145deg, #0056b3, #003d7a); /* Darker gradient on hover */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); /* Larger shadow on hover */
}

.go-to-top-btn i {
  font-size: 24px;
}




          /* Navbar styles */
    header {
      position: fixed;
      top: -100px; /* Initially hidden */
      width: 100%;
      z-index: 1000;
      background-color: white;
      transition: top 0.6s ease, opacity 0.6s ease; /* Fade-down animation */
    }



    .navbar .logo {
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin-left: 20px;
    }

    .nav-links a {
      color: black;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #ff6600; /* Highlight */
    }

    /* Placeholder section for scrolling */
    .content {
      height: 2000px;
      background: #f4f4f9;
      padding: 100px 20px;
      text-align: center;
    }


/* Hide header in mobile view */
@media (max-width: 768px) {
  header {
    display: none;
  }
}









/* index section starts here */






/* Fullscreen Carousel Images */
.carousel-item {
/*  height: 100vh;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Full Overlay */
.carousel-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: white; /* Semi-transparent white */
  transform: skewY(-16deg);
  transform-origin: 0 0;
}

/* Overlay Text Styling */
.carousel-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: #000;
  width: 100%;
}

.carousel-content .container {
  max-width: 1140px;
}

.carousel-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.carousel-content p {
  font-size: 1.2rem;
}


  .carousel-item video {
    object-fit: contain; /* Fit the video within the viewport without cropping */
  }

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .carousel-content .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .carousel-content h1 {
    font-size: 2.5rem;
  }

  .carousel-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {

.carousel-item {
/*  height: 100vh;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  .carousel-overlay {
    height: 35%; /* Adjust for smaller screens */
  }

  .carousel-content h1 {
    font-size: 1.8rem;
  }

  .carousel-content p {
    font-size: 0.9rem;
  }

  .carousel-content {
    padding: 0 20px; /* Add some padding for smaller screens */
  }
}


.carousel-mt{
    margin-top:-350px;
}




/* General carousel settings */
.carousel-inner video {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensures videos fit neatly */
}

/* Adjustments for tablets */
@media (max-width: 768px) {
  .carousel-inner video {
    height: 300px; /* Reduce height for smaller screens */
    object-fit: contain; /* Ensure full video visibility */
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px; /* Smaller controls for tablets */
  }
}

/* Adjustments for mobile devices */
@media (max-width: 480px) {
  .carousel-inner video {
    height: 600px; /* Adjust video height for smaller screens */
    object-fit: cover;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px; /* Smaller controls for mobiles */
  }

  .carousel-mt{
    margin-top:-270px;
}

}






   /* General hover-column styles */
        .hover-column {
            position: relative;
            overflow: hidden;
            text-align: center;
            color: white;
            height: 100%; /* Adjust height as needed */
        }

        .hover-column img {
             width: 100%;
            height: auto;
            display: block;
          filter: saturate(0) contrast(200%);
            transition: filter 0.4s ease, transform 0.4s ease;
        }


        

        .text-overlay,
        .hover-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            padding: 0 10px; /* Ensures text is readable even on smaller screens */
        }

        .text-overlay {
              position: absolute;
            top: 20%;
            left: 50%;
/*            transform: translateX(-50%);*/
            color: white;
        
            padding: 5px 10px;
            font-size: 18px;
            font-weight: bold;
        }

        .hover-text {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
           
            padding: 5px 10px;
            font-size: 16px;
            font-weight: bold;
            transition: bottom 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .hover-column:hover img {
            filter: blur(3px) grayscale(0%);
        }

        .hover-column:hover .text-overlay {
            opacity: 1; 
        }

        .hover-column:hover .hover-text {
            opacity: 1; /* Hover title appears */
        }

        /* Section Styles */
        .capabilities-title {
            font-size: 2rem;
            font-weight: bold;
        }

        .capabilities-description {
            font-size: 1rem;
            text-align: justify;
        }


















.accordion-button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: transform 0.3s ease-in-out;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-left {
    text-align: left;
    padding-left: 2rem;
}

.accordion-right {
    text-align: right;
    padding-right: 2rem;
}

.accordion-body {
    background-color: #333;
    color: white;
    padding: 1.5rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #000;
    color: #fff;
}



.circle-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            border: 2px solid #000;
            border-radius: 50%;
            text-decoration: none;
            color: #000;
            font-size: 24px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .circle-btn:hover {
            transform: scale(0.9); /* Shrink effect */
            color: #000; /* Keep color black */
        }

        .circle-container {
            display: flex;
            gap: 20px;
        }








/* Container for individual boxes */
.indbox {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Ensures padding doesn’t affect box dimensions */
    background-color: #f9f9f9;
    margin: 0; /* Remove any margins between boxes */
    transition: flex 0.3s ease, transform 0.3s ease; /* Smooth transition for resizing */
    flex: 1; /* Default size */
    overflow: hidden; /* Ensures no overflow */
}

.indbox:hover {
    flex: 1.5; /* Enlarge the hovered card */
    z-index: 10; /* Brings the hovered card to the front */
    transform: scale(1.02); /* Slight scale-up on hover */
}

/* Shrink non-hovered cards */
.slider .indbox:not(:hover) {
    flex: 0.5; /* Shrink non-hovered cards */
}

/* Top section of the card */
.top-part {
    flex: 0.65; /* Takes 65% of the vertical space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical alignment */
    align-items: center; /* Horizontal alignment */
    text-align: center;
    padding: 10px;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    border-bottom: none; /* No bottom border */
    box-sizing: border-box; /* Include padding in dimensions */
}

.top-part i {
    font-size: 40px; /* Icon size */
    color: #333;
    margin-bottom: 10px; /* Space between icon and text */
}

.top-part span {
    font-size: 16px; /* Text size */
    color: #555;
}

/* Bottom section with image */
.bottom-part {
    flex: 1; /* Takes the remaining vertical space */
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333; /* Border at the bottom */
    overflow: hidden; /* Ensures no overflow for the image */
}

.bottom-part img {
    width: 100%; /* Image spans full width */
    height: 100%; /* Image spans full height */
    object-fit: cover; /* Ensures the image fits and maintains aspect ratio */
    display: block; /* Removes extra spacing under the image */
    margin: 0; /* No extra margin */
    padding: 0; /* No extra padding */
    transition: filter 0.3s ease, transform 0.3s ease; /* Smooth grayscale and zoom */
    filter: grayscale(100%); /* Start in grayscale */
}

.indbox:hover .bottom-part img {
    filter: grayscale(0%); /* Remove grayscale on hover */
    transform: scale(1.1); /* Zoom in slightly */
}

/* Slider container */
.slider-container {
    margin-top: 20px; /* Adjusted top margin */
}

/* Slider items */
.slider .slick-item {
    padding: 0px;
}














        .case-studies-slider-container {
            margin: 50px auto;
/*            max-width: 1200px;*/
            position: relative;
            padding: 0 40px;
        }

        .case-studies-navigation {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 30px;
        }

        .case-studies-nav-button {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #f8f9fa;
            border: 1px solid #e0e0e0;
            display: flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 10;
        }

        .case-studies-nav-button:hover {
            background: #007bff;
            border-color: #007bff;
        }

        .case-studies-nav-button:hover i {
            color: white;
        }

        .case-studies-nav-button i {
            color: #333;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .case-studies-slick-item {
/*            margin: 15px;*/
            position: relative;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .case-studies-image-container {
            position: relative;
/*            overflow: hidden;*/
            aspect-ratio: 16/9;
        }

        .case-studies-image {
            width: 100%;
/*            height: 100%;*/
            object-fit: cover;
            filter: grayscale(100%);
            transition: all 0.4s ease-in-out;
        }

        .case-studies-image-container:hover .case-studies-image {
            filter: grayscale(0%);
/*            transform: scale(1.05);*/
        }

        .case-studies-bottom-part {
        /*    position: absolute;
            bottom: 0;
            left: 0;
            right: 0;*/
            color: black;
            text-align: center;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px;
           /* transform: translateY(100%);
            transition: all 0.4s ease-in-out;*/
             transform: translateY(0); /* Default position */
  transition: transform 0.3s ease; /* Smooth transition */
        }

        .case-studies-image-container:hover .case-studies-bottom-part {
          /*  transform: translateY(0);
            background: rgba(0, 123, 255, 0.9);*/
            background: white;
            color: black;
            border-top: 5px solid rgb(227, 22, 53);
            transform: translateY(-55px); /* Moves the text 20px up */
        }

        .case-studies-progress-bar-container {
            height: 4px;
            background: #f0f0f0;
            margin-top: 30px;
            border-radius: 2px;
            overflow: hidden;
        }

        .case-studies-progress-bar {
            height: 100%;
            background: #007bff;
            width: 0%;
            transition: width 0.4s ease-in-out;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .case-studies-slider-container {
                padding: 0 20px;
            }

            .case-studies-nav-button {
                width: 40px;
                height: 40px;
            }
        }















.custom-slider-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
}

.custom-navigation {
    position: absolute;
    right: 20px;
    top: 0;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.custom-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-nav-btn:hover {
    background: #3b82f6;
    color: white;
}

.custom-slider {
    margin-top: 60px;
    overflow: hidden;
}

.custom-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.custom-slide {
    min-width: 100%;
    display: flex;
    gap: 1rem;
}

.custom-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.custom-card:first-child {
    width: 40%;
}

.custom-card:not(:first-child) {
    width: 30%;
}

.custom-card img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.custom-card:hover img {
    filter: grayscale(0%);
}

.custom-card:first-child img {
    height: 200px;
}

.custom-card:not(:first-child) img {
    height: 160px;
}

.custom-card-content {
    padding: 1rem;
    max-height: 170px;
  min-height: 170px;
}

.custom-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.custom-card-desc {
    color: #666;
}

.custom-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.custom-indicator {
    width: 24px;
    height: 4px;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-indicator:hover,
.custom-indicator.active {
    width: 32px;
    background: #3b82f6;
}



@media (max-width: 768px) {
    section {
        background-position: top center;
    }
}





/* index section ends here */



/* about us section starts here */


    .about-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/aboutusbanner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: top center;
    }
    .headline-one {
        position: relative;
        top: 50px;
        left: 20px;
 
      color: #fff;
      font-size: 2rem; /* Adjust font size as needed */
      font-weight: bold;
      line-height: normal;
      text-transform: uppercase;
       text-shadow: 3px 3px 5px #000000;
    }
    .headline-two {
position: relative;
  top: 300px;
  right: 20px;
      
      color: #fff;
      font-size: 2rem; /* Adjust font size as needed */
      font-weight: bold;
      line-height: normal;
      text-transform: uppercase;
       text-shadow: 3px 3px 5px #000000;
    }








/* about us section ends here */





/* industries section starts here */


    .industries-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/industries-banner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: top center;
    }

section-heading {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 2rem;
      text-align: center;
      color: #343a40;
    }
    .industry-row {
      margin-bottom: 3rem;
      align-items: center;
    }
    .industry-image {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .text-content {
      font-size: 1rem;
      color: #6c757d;
    }
    .text-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }
    .read-more {
      font-size: 0.9rem;
      color: #007bff;
      text-decoration: none;
    }
    .read-more:hover {
      text-decoration: underline;
    }








/* industries section ends here */





/* insights section starts here */

    .insights-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/insights.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: top center;
    }



        .capabilities-section {
           /* padding: 60px 0;
            background: #f8f9fa;*/
        }
        .capabilities-title {
           /* font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;*/
        }
        .capabilities-description {
            font-size: 1rem;
            color: #555;
        }
        .capabilities-section .card {
            border: none;
            border-radius: unset !important;
            text-align: center;
/*            padding: 15px;*/
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .capabilities-section .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .capabilities-section .card img {
            width: 100%;
/*            border-radius: 10px;*/
            margin-bottom: 15px;
        }
        .capabilities-section .card h5 {
            font-size: 1.2rem;
            font-weight: bold;
        }





       .industry-card {
            background: #f8f9fa;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            border-radius: 4px;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            background: #000;
            color: white;
        }

        .circle-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
        }

        .circle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .title-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 1.25rem;
            color: #333;
            transition: all 0.3s ease;
        }

        .industry-card:hover .title-section {
            color: white;
        }

        .arrow {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .industry-card:hover .arrow {
            transform: translateX(5px);
            color: white;
        }

        @media (max-width: 768px) {
            .circle-image {
                width: 150px;
                height: 150px;
            }
            
            .title-section {
                font-size: 1.1rem;
            }
        }


              .pdf-viewer-container {
            margin-top: 30px;
        }

        .pdf-frame {
            border: none;
            width: 100%;
            height: 600px;
        }







/* insights section ends here */




/* career section starts here */


    .career-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('images/banner1.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }








/* career section ends here */


/* contact us section starts here */


    .contact-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/contactus.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: top scenter;
    }



.accordion-button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: transform 0.3s ease-in-out;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-left {
    text-align: left;
    padding-left: 2rem;
}

.accordion-right {
    text-align: right;
    padding-right: 2rem;
}

.accordion-body {
    background-color: #333;
    color: white;
    padding: 1.5rem;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #000;
    color: #fff;
}






          .contactform-container {
            padding: 40px 20px;
        }

        .contactform-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .contactform-subtitle {
            font-size: 16px;
            margin-bottom: 30px;
            color: #ccc;
        }

        .contactform-label {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .contactform-control {
            background-color: #1a1a1a;
            border: 1px solid #333;
            color: #fff;
        }

        .contactform-control:focus {
            background-color: #1a1a1a;
            color: #fff;
            border-color: #555;
            box-shadow: none;
        }

        .contactform-check-label {
            font-size: 14px;
            color: #ccc;
        }

        .contactform-check-input:checked {
            background-color: #fff;
            border-color: #fff;
        }

        .contactbtn-submit {
            background-color: #fff;
            color: #000;
            padding: 10px 20px;
            font-size: 14px;
            text-transform: uppercase;
            border: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .contactbtn-submit:hover {
            background-color: #555;
            color: #fff;
        }

        .contactrecaptcha {
            margin-top: 20px;
        }





/* contactus section ends here */








    .enterprise-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/enterprise-banner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: top center;

    }


   .dataintegration-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/dataintegrationbanner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }



   .automation-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/automation-banner001.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }

   .business-operations-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/business-operations-banner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }


   .bigdata-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/bigdata-banner01.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }

   .training-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/corporatetraining-banner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }



   .outsourcing-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/outsourcingbanner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }



  .partner-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/partnerwithus.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: top center;
    }

      .student-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/student-banner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }


         .studentsuccess-banner {
      position: relative;
      width: 100%;
      height: 400px; /* Adjust height as needed */
      background-image: url('../images/student-banner.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
    }





    .service-heading {
            text-align: left;
            margin-top: 50px;
            margin-bottom: 30px;
        }
        .service-heading h1 {
            font-size: 2rem;
            font-weight: bold;
        }
        .service-heading p {
            font-size: 1rem;
            color: #555;
        }
        .service-card {
            background: white;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            transition: box-shadow 0.3s ease;
        }
        .service-card:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        
        
            /* Footer Links Styling */
    .footer-links {
        color: #ffffff; /* Choose a visible color, e.g., white */
        text-decoration: none;
        font-weight: 500;
    }

    .footer-links:hover {
        color: #ffc107; /* Add hover effect (e.g., gold color) */
        text-decoration: underline;
    }
        
        
        
        