/* Global Styles */

/* General Styling */
body {
  font-family:  'Inter'!important;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  line-height: 1.6;
  overflow-x: hidden;

}

@font-face {
  font-family: 'Montserrat';
  /* src: url('font/3') format('truetype'); */
  font-weight: 100 900;
  /* font-style: italic; */
  src: url('fonts/Montserrat-Italic-VariableFont_wght.ttf');
}

  a {
	text-decoration: none;
	color: inherit;
  }
  
  ul {
	list-style: none;
  }
  /* Header Styles */



/* Header Styles */
/* General Reset */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header */
.header1 {
  /* background-color: #f7f7f7; */
  /* padding: 10px 0; */
  border-bottom: 1px solid #ddd;
  
}

/* mobile sl */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  display: block; /* Ensure it's always available but toggled visually */
  background: rgba(0, 0, 0, 0.5); /* Optional backdrop for mobile navigation */
  visibility: hidden; /* Hide initially */
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  max-width: 300px;
  background: linear-gradient(to right, #230FBF 0%, #1A0E66 100%); /* Updated */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  transform: translateX(-100%); /* Sidebar starts hidden */
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
}
.sidebar:hover {
  background-position: right center; /* Moves the gradient */
}
.sidebar.active {
  transform: translateX(0); /* Sidebar moves into view */
}
.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.sidebar-menu li {
  margin: 15px 0;
}

.sidebar-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.sidebar-logo {
  text-align: center;
  padding: 20px;
}

.sidebar-logo img {
  width: 80%; 
  height: auto;
  display: block;
  /* margin: 0 auto; */
}

.navbar-toggle {
  display: block;
  background: transparent;
  border: none;
  outline: none;
}

.icon-bar {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 4px 0;
}




.navbar-header {
  display: flex;
  align-items: center;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
}

.logo img {
  max-height: 50px;
}

.header-infos {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-info-group {
  display: flex;
  align-items: center;
}

.header-info-icon {
  font-size: 20px;
  color: #6c63ff;
  margin-right: 10px;
  transform:rotate(110deg);
}

.header-info-labels h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.header-info-labels h5 {
  font-size: 14px;
  margin: 0;
  color: #888;
}

.header-button .button {
  background-color: #6c63ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.header-button .button:hover {
  background-color: #5a54d9;
}

/* Navigation */
.navbar {
  /* background-color: #fff; */
  border-top: 1px solid #ddd;
  margin-top: 20px;
}

.menu {
  display: flex;
  list-style: none;
  /* padding: 10px 0; */
  justify-content: space-around;
  position: relative;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-item a {
  /* text-decoration: none;
  color: #333;
  padding: 10px 20px;
  transition: color 0.3s ease;
  font-weight: bold; */
    color: #252525;
    display: block;
    font-size: 14px;
    line-height: 35px;
    padding: 18px 25px;

    /* padding: 18px 35px; */
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out 0s;
    /* border-left: 1px solid #eaeaef; */
}
.menu li{
  border-right: 1px solid #ccc;
  /* padding: 18px 35px; */
  margin-top: -8px;
    margin-bottom: -25px;

}
.menu-item a:hover {
  color: #230fbf;
  text-decoration: none;
}

/* Submenu */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 220px;
  z-index: 1000;
}

.submenu li {
  /* padding: 10px 20px; */
  margin-top: 0;
  margin-bottom: 0;

}

.submenu li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  display: block;
  /* padding: 12px 18px; */
  font-weight: 400;
    line-height: 23px;
    padding: 7px 15px 7px 15px;
    text-transform: none;
    border: 0 !important
}

.submenu li a:hover {
  color: #6c63ff;
  background-color: #f2f2f2;
}

.menu-item:hover .submenu {
  display: block;
}


/* Responsive Design */

/* Mobile Styles */
/* Mobile Styles */
/* Mobile Styles */
@media (max-width: 768px) {

  /* .navbar{
    border: 0;
  } */
  .header1{
    border: 0;
  }
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .menu {
    display: none; /* Initially hidden */
    flex-direction: column;
    width: 100%;
  }

  .navbar .menu-item {
    width: 100%;
    text-align: left;
  }

  .navbar .menu-item a {
    padding: 15px;
    display: block;
    width: 100%;
  }

  .navbar .submenu {
    position: static;
    display: none;
    margin-top: 10px;
    background-color: #444;
  }
.header-infos{
  display: none;
}
  .navbar .menu-item:hover .submenu {
    display: block;
  }

  .navbar-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0px;
    margin-right: 0;
    cursor: pointer;
  }

  .icon-bar {
    width: 30px;
    height: 4px;
    margin: 5px auto;
    background-color: #fff;
  }

  /* Active menu visibility */
  .navbar-toggle.active + .menu {
    display: flex; /* Show the menu when the toggle is active */
  }

  /* Additional Styles for Mobile Menu Toggle */
  .navbar-toggle.active .icon-bar:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 10px;
  }

  .navbar-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .icon-bar:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -10px;
  }
}



/* Additional Styles for Mobile Menu Toggle */
.navbar-toggle.active .icon-bar:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 10px;
}

.navbar-toggle.active .icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -10px;
}

.try-demo {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px; /* Adjusted button padding */
  border-radius: 4px;
  cursor: pointer;
}

.try-demo:hover {
  background: #0056b3; /* Button hover effect */
}


/* Try Demo Button */
.try-demo {
  background: linear-gradient(90deg, #6e00ff, #ae00ff);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.try-demo:hover {
  background: linear-gradient(90deg, #5900cc, #9300cc);
}

  

  /* about section */


  .about-us {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    /* background-color: #f0f8ff; */
}


.about-image  {
    width: 100%;
    height: auto;
    max-width: 100%;
}

 /* img {
    width: 80%;
    height: auto;
    max-width: 100%;
} */

.buton_image_class{
  width: 35px;
}
.about-content {
    padding: 20px;
}

.about-content.content-wrapper {
    max-width: 600px;
    margin: auto;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .about-content .content-wrapper {
    margin-top: 50px; /* Ensure this applies on mobile */
  }

  .about-content .section-title {
    font-size: 24px; /* Adjust font size for mobile */
  }
  .about-content .research-heading {
    text-align: left;
  }

  .about-content .about-description {
    font-size: 14px; /* Adjust font size for better readability on small screens */
  }

  .about-content .icon-list li {
    font-size: 14px; /* Adjust list item font size */
  }
  .about-content .iconresearchlist li{
   text-align: left;
  }
.content-wrapper .subtitle-wrapper {
  padding: 10px 5px;
}
}


.section-subtitle {
    font-size: 14px;
    color: #ff7f50;
    text-transform: uppercase;
    font-weight: bold;
}

/* .section-border {
    flex-grow: 1;
    height: 2px;
    background-color: #ff7f50;
} */



.about-content p {
    font-size: 16px;
    color: #4c4c4c;
    line-height: 1.6;
    margin-bottom: 15px;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #4c4c4c;
    margin-bottom: 10px;
}

.icon-list i {
    color: #230fbf;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        width: 100%;
    }
}

  /* Responsive Design */
  @media (max-width: 768px) {
	.custom-header .main-header .container {
	  flex-direction: column;
	  align-items: flex-start;
	}
  
	.custom-header .navbar .menu {
	  flex-direction: column;
	  gap: 10px;
	}
  }
  
  .header {
	background: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 15px 20px;
  }
  
  .header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  

  /* banner section */

  /* General Banner Section Styles */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item .auto-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    z-index: 2;
}
.bannericonWrap{
  display: flex;
   flex-direction: row; 
   justify-content: center;
}
.column-container{
  flex-direction: column;
   display: flex; 
   width: 200px;
    margin-right: 10px;
}

@media (max-width: 768px) {

  .bannericonWrap{
    display: flex;
     flex-direction: column; 
     justify-content: center;
     align-items: center;
  }
 
  .column-container {
    width: 80%; 
    margin-right: 0; 
}
  }

.content-box {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.content-box .title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content-box h2 {
    font-size: 50px;
    font-weight: 900;
    margin: 10px 0 20px;
    color: #fff;
    text-transform: capitalize;
}

/* For tablets (screen width <= 768px) */
@media (max-width: 768px) {
    .content-box h2 {
        font-size: 28px!important ;
        line-height: 32px!important;
 /
    }
}


.content-box h2 span {
    color: #eb0028; /* Highlight color */
}

.btn-box {
    margin-top: 20px;
}

.theme-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #eb0028;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.theme-btn:hover {
    background-color: #fff;
    color: #eb0028;
    text-decoration: none;
    transform: scale(1.05);
}


.background-wrapper {
  background-image: url('image/');
  background-image: url(https://aipt.modeltheme.com/wp-content/uploads/2023/04/Aipt-slide_bg1-scaled.jpg?id=4072) !important;
  /* background: #e5e4fd url('/images/Aipt-slide_bg1-scaled.jpg')!important; */

  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Optional: Makes the background static during scroll */
  padding-top: 20px;
  /* padding: 20px 0;  */
}


/* about us */

/* General Section Padding and Layout */

.abouts .mb-2 {
  font-size: 84px;
}
/* Left Column: Image */
.about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: url(images/Aipt-About_img.png) no-repeat center center; */
  background-size: cover; 
  height: 100%;
}

.about-image-wrapper img {
  width: 80%; 
  height: auto;
  border-radius: 10px;
  position: relative;
  bottom: 59px;
  left: 62px;

}
.about-image-wrapper:hover img {
  transform: rotate(5deg) scale(1.05); /* Rotate and zoom */
}

/* General Styles */


/* For large screens */
@media (min-width: 769px) {
  .abouts.row {
      display: flex;
      flex-direction: row;
  }

  .abouts.col-lg-6 {
      flex: 1;
  }

  .abouts.subtitle-wrapper {
      margin-top: 20px;
      margin: 0;
  }

  .abouts.section-subtitle {
      color: #000;
      font-weight: 500;
      font-size: 14px;
  }



  .abouts.mb-4 {
      color: #4c4c4c;
  }

  .abouts.button-container {
      display: flex;
      justify-content: flex-start;
      margin-right: 30px;
  }

  .abouts.custom-button {
      padding: 10px 20px;
      background-color: orange;
      color: white;
      text-decoration: none;
      border-radius: 5px;
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .abouts .row {
      flex-direction: column;
  }

  .abouts .col-lg-6 {
      width: 100%;
      margin-bottom: 20px;
  }

  .abouts.subtitle-wrapper {
      text-align: center;
  }

  .abouts.section-subtitle {
      font-size: 18px;
      color: #000;
  }

  .abouts.mb-2 {
      font-size: 40px;
      text-align: center;
  }

  .abouts.mb-4 {
      color: #4c4c4c;
      font-size: 16px;
      text-align: center;
  }

  .abouts.button-container {
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }

  .abouts.custom-button {
      padding: 12px 25px;
      background-color: orange;
      color: white;
      text-decoration: none;
      border-radius: 5px;
  }

  .abouts.about-image {
      width: 100%;
      height: auto;
  }

  .abouts .about-content {
      padding: 10px;
      width: 100%;
  }
}

/* Right Column: Content */
.about-content {
  padding: 20px 40px; /* Add inner padding for spacing */
}

.about-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.section-title {
  margin-top: 5px;
  font-weight: 600;
  margin-bottom: 17px;
  line-height: 1.3;
  font-size: 41px
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

/* Icon List Styling */
.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.icon-list i {
  color: #230fbf; /* Icon color */
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
      padding: 20px; /* Reduce padding on smaller screens */
  }

  .about-heading {
      font-size: 28px;
  }

  .section-title {
      font-size: 24px;
  }
.ourmissiontitle{
  text-align: left;
}
.ourmissionpara{
  text-align: left;
}
  .icon-list li {
      font-size: 14px;
  }
  .icon-list{
    margin-bottom: 4rem;
  }
}

/* service section */


 .services-section {
            padding: 60px 0;
            /* background-color: #f0f8ff; */
        }

        .box-shadow-column {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s;

        }


        .box-shadow-column.controlwidth{
          
          flex: 1 1 calc(33.33% - 20px); /* Reduce width by the gap */
          max-width: calc(33.33% - 20px);
      
        }

        .wpb_wrapper p{         
            line-height: 25px;
            font-weight: 400;
            color: #4c4c4c;
            font-size: 16px;
            text-align: left;
        }
        
        .box-shadow-column:hover {
            transform: translateY(-5px);
        }
        .box-shadow-column.controlwidth {
          flex: 1 1 calc(33.33% - 20px); /* For larger screens */
          max-width: calc(33.33% - 20px);
      }
      
      @media (max-width: 768px) { /* Mobile screen size */
          .box-shadow-column.controlwidth {
              flex: 1 1 100%; /* Full width for mobile */
              max-width: 100%;
          }
      }
      
      .servicesection-wrap{
        /* margin-top: -254px !important; */
        margin-right: -15px !important;
        margin-bottom: 88px !important;
        margin-left: -15px !important;
      }
        .box-shadow-column img {
            max-width: 100%;
            height: auto;
        }

        .vc_custom_heading {
            font-size: 22px;
            color: #0a0000;
            line-height: 32px;
            /* margin: 20px 0; */
            text-align: left;
        }

        .vc_separator {
            margin: 20px 0;
            border-top: 1px solid #d8d8d8;
        }

        .button-sections a {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            /* background-color: #230fbf; */
            color: #230fbf;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        /* .button-sections a:hover {
            background-color: #1a0e8f;
        } */

        /* Responsive Styles */
        @media (max-width: 768px) {
            .services-section {
                /* padding: 30px 0; */
                padding: 0;
            }

            .box-shadow-column {
                margin-bottom: 30px;
            }
            .box-shadow-column .wpb_wrapperlogo{
              justify-content: center;
            }
            .box-shadow-column .vc_custom_heading{
            text-align: center;
            }
            .wpb_wrapper p{
              text-align: center;
            }
            .vc_btn3-container{
              justify-content: center;
            }
          .button-sections{
            justify-content: center;
          }
          .about-image-wrapper{
            background-size: contain;
          }
            .about-image-wrapper img {
              width: 100%;
          height: auto;
          border-radius: 10px;
          position: relative;
          bottom: 25px;
          left: -17px
            }
            .about-us{
              padding: 0;
            }
        }
/* Responsive Design */
@media (max-width: 768px) {
    .content-box .title {
        font-size: 24px;
    }

    .content-box h2 {
        font-size: 36px;
    }

    .theme-btn {
        padding: 10px 20px;
    }
}

  .logo img {
	height: 50px;
  }
  
  .nav {
	flex: 1;
	display: flex;
	justify-content: center;
  }
  
  .nav-links {
	display: flex;
	gap: 20px;
  }
  
  .nav-links li a {
	font-size: 1rem;
	color: #333;
  }
  
  .header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .search-bar {
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 5px;
  }
  
  .btn {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
  }
  
  .btn:hover {
	background-color: #0056b3;
  }
  
  /* Section Styles */
  .services, .about, .testimonials {
	padding: 50px 20px;
	text-align: center;
  }
  
  .card-container, .testimonial-container {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
  }
  
  .card, .testimonial {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 300px;
  }
  
  .card img, .about img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
  }
  
  .card h3, .testimonial h4 {
	font-size: 1.5rem;
	margin-bottom: 10px;
  }
  
  .testimonial p {
	font-style: italic;
	margin-bottom: 10px;
  }

  .testimonialheading{
    margin-top: 5px;
    font-weight: 600;
    margin-bottom: 17px;
    line-height: 1.3;
    font-size: 41px;
  }
  .testimonial-textWrap{
    width: 80%; 
    margin: 0 auto;
     padding-bottom: 40px;
  }
  /* Features Section */
  .features-section {
	padding: 3rem 0;
	text-align: center;
  }
  
  .features-section h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
  }
  
  .features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
  }
  
  .feature {
	background-color: #fff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .feature h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
  }
  /* typing animation */
  
.typed-text-container {
	max-width: 600px;
	margin: 0 auto;
  }
  
  .typed-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	overflow: hidden; /* Ensures text is hidden initially */
	border-right: 3px solid black; /* Creates the typing cursor effect */
	white-space: nowrap;
	width: 0;
	animation: typing 5s steps(50) 1s forwards, blink 0.75s step-end infinite;
  }
  
  /* Typing animation */
  @keyframes typing {
	from {
	  width: 0;
	}
	to {
	  width: 100%;
	}
  }
  
  /* Cursor blink animation */
  @keyframes blink {
	50% {
	  border-color: transparent;
	}
  }
  
  /* footer style */
  /* General Footer Styles */
.footer {
  background-color: #fff;
  color: #000;
  padding: 20px 0;
}

.footer-top {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.9rem;
}
.social-icons {
  margin-top: 10px; 
  display: flex; 
  gap: 10px;
}
.social-icons  a{
display: flex; 
justify-content: center;
 align-items: center; 
 width: 40px;
 height: 40px; 
 border: 1px solid #ccc;
 border-radius: 50%;
}
.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer p {
  font-size: 16px;
  line-height: 1.5;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
}

/* .footer ul li a:hover {
  text-decoration: underline;
} */
 .footer ul li :hover {
  /* background-color:#ff6f00; */
  background-color: #0056b3;
}
.social-icons a i:hover {
  color: #ff6600!important;
  text-decoration: underline!important;
}
.social-icons a:hover {
  text-decoration: none!important;
}
.footer-logo{
  margin-bottom: 8px;
}
.footer-logo img {
  max-width: 125px;
}
.footer-logo .social-icons a i:hover{
  text-decoration: none;
}

/* Grid Styling */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .col-md-3 {
  flex: 1 1 calc(25% - 20px); /* Flex for four columns */
  max-width: calc(25% - 20px); /* Maximum width for four columns */
}
.copyright a:hover{
  color: #230FBF;
  text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .footer .col-md-3 {
      flex: 1 1 calc(50% - 20px); /* Two columns on tablets */
      max-width: calc(50% - 20px);
  }
  .footermenu li{
    text-align: left;
  }


  .testimonialheading{
    margin-bottom: 17px;
   
  }
  .testimonial-textWrap{
    width: 80%; 
    margin: 0 auto;
     padding-bottom: 20px;
     padding-top: 20px;
  }
  .testimonialheading{
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .footer .col-md-3 {
      flex: 1 1 100%; /* One column on mobile */
      max-width: 100%;
  }

  .footer-logo img {
      margin-bottom: 10px; /* Add spacing between logo and text */
  }

  .footer ul {
      text-align: center; /* Center align lists */
  }
}

.footer-bottom span {
  display: block;
  margin-top: 5px;
}

.footer img {
  max-width: 100%; /* Responsive image */
  height: auto; /* Maintain aspect ratio */
  margin: 10px 0;
  max-width: 125px;
}

  
  /* Responsive design adjustments */
    @media (max-width: 768px) {
        .row {
            flex-direction: column;
            align-items: center;
        }
        .col-sm-6 {
            max-width: 100%;
            padding: 0 20px;
        }
        .aboutdetail {
            padding: 30px 10px;
        }
        .section-title {
            font-size: 24px;
            margin: 20px 0;
        }
        .mt-icon-list-text {
            font-size: 16px;
        }
        .footer img {
          margin: 20px 0;
          max-width:  140px;
        }
        
    }
/* Section Container with Background Image */


.section-wrapper {
 
  margin-bottom: 5rem;
  margin-top: 5rem;

}


.custom-newsletter-section {
  /* background-image: url('/images/startbubg.jpg'); */
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 20px; */
  margin-bottom: 0px !important;
    padding-top: 50px !important;
    padding-bottom: 80px !important;
    background: #e5e4fd url('/images/aipt-bg1.jpg') !important;
    /* background: #e5e4fd url(https://aipt.modeltheme.com/wp-content/uploads/2023/04/aipt-bg1.jpg?id=3980) !important; */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-radius: 30px !important;
}


/* start your business */
.subtitle-wrapper {
  background: #F7F7F8;
  color: #fff;
  padding: 10px 20px;
  width: fit-content;
  border-radius: 40px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #ff6f00; /* Orange color for contrast */
  margin-right: 10px;
}

.section-border {
  flex-grow: 1;
  height: 2px;
  background-color: #ff6f00;
}


.business-title{
  margin-top: 5px;
  font-weight: 600;
  margin-bottom: 17px;
  line-height: 1.3;
  font-size: 41px;
  text-align: center;
}
/* Description */
.section-description {
  font-size: 16px;
  color: #4c4c4c; /* Light gray text color */
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */

.button-container{
  display: flex;
  justify-content: center;
}
.custom-button {
  color: #ffffff;
  padding: 14px 40px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 30px;
  font-size: 15px;
  border: none;
  background-image: linear-gradient(to right, #230FBF 0%, #B42BD1 51%, #230FBF 100%) !important;
  background-size: 200% auto !important;
  transition: all 250ms ease;
  -webkit-transition: all 250ms ease;
}

.custom-button:hover {
  background-color: #B42BD1; 
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
  transform: translateY(-4px);
  color: #fff;
  text-decoration: none;
  background-position: right center;
}
.custom-button:active {
  transform: translateY(1px); 
}


/* ai  machine learning section  */
/* General Styles */

/* General Section Styling */
.solutions-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* Light background color */
  text-align: center;
}

/* Container */
.solutions-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Header */
.solutions-section .section-header {
  margin-bottom: 40px;
}

.solutions-section .section-header .subtitle {
  display: inline-block;
  font-size: 41px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff5c5c; /* Accent color */
  margin-bottom: 8px;
}

.solutions-section .section-header .title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* Solutions Grid */
.solutions-section .solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

/* Solution Item */
.solutions-section .solution-item {
  /* background: #fff; */
  border: 1px solid #eaeaea;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  /* transition: transform 0.3s, box-shadow 0.3s; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solutions-section .solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  box-shadow: rgba(17, 12, 46, 0.2) 0px 60px 120px 0px; 
  /* border-color: #f1c40f;  */
  background: #f9f9f9;
  transform: scale(1.05);
}

/* Icon Styling */
.solutions-section .solution-item .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.solutions-section .solution-item .icon img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out; 
}
.solution-item:hover .icon img {
  transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Content Styling */
.solutions-section .solution-item .content {
  flex-grow: 1;
}

.solutions-section .solution-item .solution-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.solutions-section .solution-item .solution-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

/* Learn More Link */
.solutions-section .solution-item .more-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff5c5c;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.solutions-section .solution-item .more-link:hover {
  color: #e04444;
}

.solution-item.content {
    position: absolute;
    bottom: -100%; /* Start outside of the view */
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: rgb(17 12 46 / 10%) 0px -10px 30px 0px;
    transition: bottom 0.4s ease-in-out; /* Sliding effect */
}
.solution-item:hover .content {
  bottom: 0; /* Slide into view on hover */
}
/* Base Styles */
/* General Styles */

.team-slider {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.title-subtitle {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}




/* team section */

.team-section {
  padding: 40px;
  text-align: center;
  /* background-color: #f9f9f9; */
}

.section-header {
  margin-bottom: 20px;
}

.section-subtitle {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}



.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.team-member {
  /* background: #fff; */
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  width: 292px;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
}

.image-wrapper img {
  width: 100%;
  height: auto;
}

.member-info {
  padding: 10px;
}

.member-position {
  color: #230FBF;
  font-size: 12px !important;
  /* font-size: 14px !important; */
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.3 !important;
  letter-spacing: 1px;
}

.member-name {
  /* font-size: 22px !important; */
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1 !important;
  text-transform: capitalize;
  margin: 0;
  margin-top: 5px !important
}

.social-links {
  /* display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  display: none; 
  display: flex;*/
  /* justify-content: center; */
  /* gap: 10px; */
  /* position: absolute; */
  /* top: 80%;
  left: 50%; */
  /* background: #fff; */
  /* transform: translate(-50%, -50%); */
  /* opacity: 0; 
  visibility: hidden;  */
  /* transition: opacity 0.3s ease, visibility 0.3s ease; */
}
/* Hide the social links initially */
.social-links {
  display: flex; /* Flexbox for centering the icons */
  justify-content: center;
  /* gap: 10px; */
  position: absolute;
  top: 90%;
  left: 50%;
  border-radius: 5px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  opacity: 0; /* Fully transparent */
  visibility: hidden; /* Hidden but retains layout */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Add a hover effect on the parent wrapper to reveal the icons */
.image-wrapper {
  position: relative; /* Required for positioning */
  overflow: hidden; /* Prevent content overflow */
}

.image-wrapper:hover .social-links {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Make visible */
}

.image-wrapper img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.image-wrapper:hover img {
  transform: scale(1.1); /* Slight zoom effect */
}

/* Style the social icons */
.social-links a {
  /* color: #555;
  font-size: 16px;
  transition: color 0.3s, transform 0.3s; */
  height: 29px;
    line-height: 45px;
    text-align: center;
    width: 45px;
    background: #fff;
    display: inline-block;
    margin: 8px 0;
    transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    border-left: 1px solid #2a2a2a;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links a:first-child{
  border-left: none;
}
.social-links a:hover {
  color: #f56a00;
  text-decoration: none;
 
}


.social-links .social-links:hover {
  color: #555;
  font-size: 16px;
  transition: color 0.3s;
  display: block;
}

.social-links a:hover {
  color: #f56a00;
}

/* Navigation Buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.nav-button.prev {
  left: 15px;
}

.nav-button.next {
  right: 15px;
}

.nav-button:hover {
  background: #ff6600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider {
    gap: 10px;
  }

  .slider-item {
    min-width: 200px;
  }
}
/* vedio section  */
.testimonial-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  width: 100vw; /* Full viewport width */
  overflow: hidden; /* Crop overflowing content */
  background: black; /* Fallback background */
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Prevent interaction with the video */
  object-fit: cover; /* Make the video fill the section */
  transform: scale(1.5); /* Scale to remove black bars */
}

.testimonial-content-wrapper {
  position: relative;
  z-index: 2; /* Ensure the content is above the video */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px; /* Add padding for smaller screens */
  text-align: center;
}

.testimonial-item {
  /* background-color: #fff;
  width: 60%;
  max-width: 800px;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
 width: 60%;
  background-color: #fff;
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgb(17 12 46 / 13%) 0px 48px 100px 0px;
    padding: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-item {
    width: 80%; /* Adjust box size for tablets */
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-item {
    width: 90%; /* Further reduce the box size for smaller devices */
    padding: 15px;
  }

  h2 {
    font-size: 1.8rem; /* Reduce font size for smaller screens */
  }

  .testimonial-item p {
    font-size: 1rem; /* Adjust paragraph font size */
    line-height: 1.5; /* Improve readability */
  }
}

@media (max-width: 480px) {
  .testimonial-item {
    width: 95%; /* Maximize box size on very small screens */
    padding: 10px;
  }

  h2 {
    font-size: 1.5rem; /* Smaller heading for mobile */
  }

  .testimonial-item p {
    font-size: 0.9rem; /* Smaller text for mobile */
  }
}

/* latest news */
.latestnews{
  padding-top: 50px;
  padding-bottom: 50px;
}
.vc_row {
  margin-bottom: 95px;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #f8f8f8; */
}

.text_center {
  text-align: center;
}

.orange_subtitle {
  color: #000;
  color: #222 !important;
  font-size: 14px;
  font-weight: 600;
  margin-top: 7px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  margin-top: 0px;
  line-height: 1;
  letter-spacing: 1px;
}

.orange_border {
  border-bottom: 2px solid orange;
  display: inline-block;
  margin-top: 5px;
}

.dark_title {
  color: #333;
  font-size: 28px;
  font-weight: bold;
}

.vc_empty_space {
  height: 30px;
}


.blog-posts .row {
  margin: 0; 
}

.blog-posts .col-sm-4 {
  padding: 5px; /* Reduces the spacing between columns */
}
.blog-posts .row {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.vc_col-sm-4 {
  width: 30%;
} */

.single-post {
  /* background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden; */
}

.post-thumbnail img {
  width: 100%;
  border-bottom: 3px solid orange;
}
.post-name{
  margin: 4.5px 0 10px !important;
}
.post-name a {
  color: #333;
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
  line-height: 30px;
}
.post-excerpt{
  /* font-family: Inter; */
    line-height: 25px;
    font-weight: 400;
    color: #4c4c4c;
    font-size: 16px;
}

/* .post-name a:hover {
  color: orange;
} */

.more-link {
  letter-spacing: 1px;
    line-height: 25px;
    font-weight: 600;
    color: #230FBF;
    display: inline-block;
    transition: all ease-in-out 0.3s;
    background: transparent !important;
    text-transform: uppercase;

}

/* .more-link:hover {
  text-decoration: underline;
} */
.post-details{
  /* padding: 25px 0 0; */
  margin-top: 25px;
}
.post-date{
  text-transform: uppercase;
    line-height: 20px;
    color: #828282;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}


.featured_image_blog {
  position: relative;
  overflow: hidden; /* Ensures that the image and hover effects stay within boundaries */
}

.featured_image_blog img {
  width: 100%;
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

.featured_image_blog:hover img {
  transform: scale(1.2); /* Zoom the image slightly */
}

.flex-zone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth opacity transition */
  pointer-events: none; /* Prevents interaction with the flex zone directly */
}

.featured_image_blog:hover .flex-zone {
  opacity: 1;
}
/* end latest news */
.sectionwidth{
  overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}


/* slider */


.slider-container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.owl-carousel .item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  transition: transform 0.3s;
}

.owl-carousel .item img:hover {
  transform: scale(1.1);
}

/* Navigation Styling */
.owl-theme .owl-controls .owl-buttons div {
  background: #333;
  color: #fff;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s;
}

.owl-theme .owl-controls .owl-buttons div:hover {
  background: #ff5722;
}
.slider-container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.owl-carousel .item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  transition: transform 0.3s;
}

.owl-carousel .item img:hover {
  transform: scale(1.1);
}

/* Navigation Styling */
.owl-theme .owl-controls .owl-buttons div {
  background: #333;
  color: #fff;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s;
}

.owl-theme .owl-controls .owl-buttons div:hover {
  background: #ff5722;
}



.ai-solution-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 50px 85px;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ai-solution-section input::placeholder,
textarea::placeholder {
  color: #fff !important;
}
/* Left Column */
.ai-solution-left {
  flex: 1 1 35%;
  padding: 20px;
}

.subtitle-wrapper {
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: bold;
}


.ai-solution-left p {
  font-size: 16px;
  margin: 20px 0;
}
ß



/* Messenger Chat (Middle Column) */
#messenger {
  flex: 1 1 30%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bubble {
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.send .bubble {
  background-color: #ff5722;
  color: #ffffff;
  align-self: flex-end;
}

.incoming .bubble {
  background-color: #e0e0e0;
  align-self: flex-start;
}

.dots .dot {
  width: 8px;
  height: 8px;
  background-color: #666;
  margin: 0 3px;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.dots .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dots .dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Contact Form (Right Column) */
.ai-solution-right {
  flex: 1 1 30%;
  padding: 20px;
  background-color: #230FBF;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.ai-solution-right h3 {
  margin-bottom: 20px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  /* border-radius: 5px; */
  font-size: 14px;
  background-color: #230FBF;
  border-bottom: 1px solid #fff;
}
.contact-button{
  display: flex;
  justify-content: center;
  align-items: center;
}
.submitbtn{
  display: block;
  text-align: center;
  font-weight: 600;
  margin-top: 18px;
  background: #fff !important;
  border-radius: 30px;
  color: #222222 !important;
  margin-bottom: 4px;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  padding: 12px 40px;
}
.submitbtn:hover{
  background-color: #230FBF;
}
form button:hover {
  background-color: #e64a19;
}
/* Animation Aboutus*/
.image-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Adjust to fit your layout */
  margin: 0 auto;
}

.main-image-wrapper {
  position: relative;
  z-index: 0;
  animation: matrixMove 2s infinite;
}
.image-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Adjust to fit your layout */
  margin: 0 auto;
}

.small-image-wrapper {
  position: absolute;
  transition: transform 0.5s ease;
  animation: bounce 2s infinite; /* Add bounce animation */
}

.small-image-1 {
  top: 0;
  right: -420px;

  /* left: -40px; */
}
.small-image-1 img{
   width: 30%;
}
.small-image-2 {
  bottom: 0;
  left: 0%;
  transform: translateX(-50%) translateY(-50%); /* Center around main image */
}
.small-image-2 img{
  width: 30%;
}
.small-image-3 {
  bottom: 0;
  right: -454px; 
}
.small-image-3 img{
  width: 30%;
}

.sectionanimation{
 
  transform: translateY(20px); /* Slide in from below */
  animation: fadeInUp 1s forwards ease-in-out; 
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Move slightly down initially */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
  }
}

.section:nth-child(1) {
  animation-delay: 0.2s;
}
.section:nth-child(2) {
  animation-delay: 0.4s;
}
.section:nth-child(3) {
  animation-delay: 0.6s;
}
/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px); /* Move up */
  }
  60% {
    transform: translateY(-5px); /* Slightly less bounce */
  }
}
 @media (max-width:768px) {

  .image-container{
    margin-top: 40px;
  }
  .small-image-wrapper{
    position:static;
    display: none;
  }
  .small-image-1 img{
    width: 30%;
    position: relative;
    top: -325px;
    left: 241px;
 }
 .small-image-2 img{
  width: 30%;
  position: relative;
  top: -320px;
  left: -34px;
}
 .small-image-3 img{
  width: 30%;
  position: relative;
  top: -220px;
  left: 252px;
}
.post-excerpt p{
  text-align: left;
}
 }
 @media (max-width: 768px) {
  .ai-solution-section {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

 
  .ai-solution-right {
    width: 100%;
    flex: 1 1 100%;
    padding: 20px 10px;
  }

  .ai-solution-right form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ai-solution-left {
    text-align: left;
    margin-bottom: 30px;
}

.ai-solution-left .section-title,
.ai-solution-left p {
    text-align: left;
}

  .ai-solution-right input,
  .ai-solution-right textarea {
    width: 100%;
    max-width: 400px; /* Prevents fields from being too wide */
    padding: 12px;
    font-size: 14px;
  }

  .contact-button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .submitbtn {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }

  .business-title{
    font-size: 28px;
  }
}


@media (max-width: 768px) {
  .navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%;

  }

 
}
@media (max-width: 768px) {
  .abouts .mb-2  {
    font-size: 70px; /* Adjust as needed */
  }
  .abouts p{
    text-align: justify;
  }
  .subtitle-wrapper{
    padding: 10px 10px;
    /* margin-left: 4px!important; */
  }
  .abouts.subtitle-wrapper{
    margin-left: 4px!important;
  }
.orange_subtitle {
    margin: 0 auto;
}

  .solutions-header .section-subtitle{
   font-size: 16px;
  }
  .solutions-header .subtitle-wrapper {
    padding: 8px;
    
  }

  .solutions-section{
    text-align: left;
  }
  @media (max-width: 768px) {
    .solutions-section .container {
      max-width: 100%;
      /* padding: 0 10px;  */
      width: 100%;
    }

    .post-thumbnail{
      padding: 0;
    }
  }
}
/* Prevent scrolling when sidebar is open */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* Add overlay effect when sidebar is open */
.mobile-nav.active {
  background: rgba(0, 0, 0, 0.5); 
}
/* About us banner section */

.aboutus-banner {
  position: relative;
  text-align: center; /* Centers the text horizontally */
  width: 100%;
  margin-bottom: 40px;
}

.abous-header {
  background-color: #f7f7f7; 
  box-sizing: border-box;
  padding: 130px 0; /* Adjusted for better spacing */
  width: 100%;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center; /* Centers the content horizontally */
  align-items: center; /* Centers the content vertically */
  flex-direction: column;
  position: relative;
  min-height: 250px; /* Ensures enough height for text to be visible */
}

.aboutcontaint {
  text-align: center; /* Centers the text inside */
  color: #000; /* Adjust text color as needed */
  font-size: 36px; /* Adjust font size */
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 30%;
  /* left: 24%; */
  transform: translate(-50%, -50%); /* Perfect center alignment */
}
.aboutcontaint h2{
  font-size: 4rem;
}
/* slider about us */


/* slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}



/* overlay */
.abous-header::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(71, 67, 67, 0.5); */
    /* background: rgba(67, 60, 60, 0.5); */
      background: rgba(0, 0, 0, 0.4); 


  z-index: 2;
}

/* arrows */

 .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  /* background: rgba(255, 255, 255, 0.85); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  /* color: #000; */
  cursor: pointer;
  z-index: 4;
  user-select: none;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.15); */
}


.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

 /* Fix for responsiveness */
@media (max-width: 768px) {  /* Fixed syntax */
  .aboutcontaint {
    left: 50%;
  }
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.research-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.responsive-img {
  width: 100%;
  max-width: 500px; /* Adjust max width for better scaling */
  height: auto;
  border-radius: 14px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* mui collabration */
  .mou-table-container {
      overflow-x: hidden;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
   .mou-table-container table {
      width: 100%;
      border-collapse: collapse;
      min-width: 100%;
    }
  .mou-table-container  th, td {
      /* padding: 12px 16px; */
      padding: 10px;
      text-align: left;
      border-bottom: 1px solid #e0e0e0;
        border: 1px solid #e0e0e0; /* Add full border */

      /* vertical-align: top; */
    }
   .mou-table-container th {
      background-color: #0077b6;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1;
    }
     .mou-table-container tr:nth-child(even) {
      background-color: #f1f9ff;
    }
    .mou-table-container .content-cell {
      max-width: 400px;
      overflow-x: hidden;
      /* white-space: pre-wrap; */
    }

     /* Responsive Styles */
    @media (max-width: 768px) {
      .mou-table-container table {
        font-size: 14px;
        min-width: 700px;
      }

      .mou-table-container .content-cell {
        max-width: 300px;
      }

      .mou-table-container th, td {
        /* padding: 10px 12px; */
        padding: 10px;
      }
    }

    @media (max-width: 480px) {
      table {
        font-size: 13px;
        min-width: 600px;
      }

      .content-cell {
        max-width: 250px;
      }

      th, td {
        padding: 8px 10px;
      }

      h2 {
        font-size: 20px;
      }
    }

/* Responsive adjustments */
@media (max-width: 992px) {
  .research-image-wrapper {
      padding: 10px;
  }
  .responsive-img {
      max-width: 100%;
  }
  .responsiveimage{
    padding: 0!important;
  }
}

@media (max-width: 768px) {
  .about-us .row {
      flex-direction: column-reverse; /* Image moves below text on smaller screens */
      text-align: center;
  }

  .research-image-wrapper {
      padding: 0;
  }
}
/* training */
.iconresearchlist a {
  color: #0066cc;   /* blue color */
  text-decoration: none!important;
  word-break: break-all;
}

.iconresearchlist a:hover {
  color: #003366;
}
.iconresearchlist li {
  display: block !important;
}

.iconresearchlist .text-line {
  display: inline !important;
}

.iconresearchlist .link-line {
  display: block !important;   
  margin-left: 18px;
  margin-top: 4px;
}

.iconresearchlist .link-line a {
  color: #0066cc !important;
  text-decoration: underline;
  word-break: break-word;
}

