a{
	text-decoration:none;
	color:#fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: none;
  color: white;
  transition: opacity 3s scroll;
}

.slide.active {
  display: block;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 8%;
  padding-top: 120px;
  text-align: left;
}

.content h1 {
  font-size: 60px;
  line-height: 1.2;
  margin: 10px 0;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.content h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.content p {
  font-size: 17px;
  margin: 20px 0;
  line-height: 1.6;
  color:#fff;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  background: #da3e36;
  color: #fff !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  color: #da3e36 !important;
}

.slider-control-btn {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.slider-control-btn span {
  cursor: pointer;
  font-size: 30px;
  color: white;
  user-select: none;
}

/* 🔻 Responsive Design */
@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }

  .content {
    padding-top: 60px;
    margin-left: 15%;
    margin-right: 15%;
  }

  .content h1 {
    font-size: 34px;
  }

  .content p {
    font-size: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 500px;
  }

  .content h1 {
    font-size: 28px;
  }

  .slider-control-btn span {
    font-size: 24px;
  }
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
		
/***************************************************/
/*                   LOGO SLIDER                   */
/***************************************************/

.logo-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  padding: 40px 0;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 15s linear infinite;
}

.logo-slide {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 20px;
}

.logo-slide img {
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Fade effect on left and right */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #f9f9f9 0%, transparent 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #f9f9f9 0%, transparent 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .logo-slide {
    width: 120px;
    margin: 0 10px;
  }

  .slider-track {
    width: calc(120px * 10);
    animation-duration: 20s;
  }

  .fade-left,
  .fade-right {
    width: 40px;
  }
}
		
		
/***************************************************/
/*                 SERVICES SECTION                */
/***************************************************/
.services-container {
 /* display: flex;
  flex-wrap: wrap;*/
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 7% 2%;
  padding: 1vw 2vw 2vw 2vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-container h2{
  font-size: 40px;
  color: #2c3e50 !important;
}

.services-container h3 {
  width: 100%;
  text-align: left;
  padding: 30px 0 0 0;
  color: #2c3e50 !important;
  font-size: 1.9vw;
  margin-bottom: 2vw;
  line-height: 1.1;
}

.services-container strong {
  color: #da3e36;
}

.services-container p {
  width: 100%;
  text-align: left;
  padding: 0 0 30px 0;
  color: #2c3e50;
  font-size:16px;
  font-weight:400px;
}

.services-list {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: row;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #ccc;
}

.service-btn {
  padding: 13px 20px;
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 16px;
  font-weight:700;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin: 2px;
  border-right: 1px solid #ccc;
  border-radius: 10px;
}
/*
.service-btn::after {
  content: "";
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-left: 10px;
  transition: 0.5s ease;
}

.service-btn:hover::after {
  content: "";
}
*/
.service-btn:hover,
.service-btn.active {
  background: #2c3e50;
  color: #fff;
}

/*
.services-content {
  flex: 3;
  padding: 0px;
} */

.service-detail {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-detail.active {
  display: block;
}

.service-data {
  width: 100%;
  margin: 0 auto;
  padding: 0 1vw 0 0;
  align-items: center;
}

/*
.service-box {
  flex: 1 1 300px;
  Shrinks nicely on small screens 
   padding: 1vw; 
  box-sizing: border-box;
  text-align: center;
}
*/
.service-data button {
  width: 100%;
  max-width: 150px;
  background-color: #da3e36;
  padding: 8px;
  color: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

/*
.service-data h2 {
  font-size: 1.9vw;
  margin-bottom: 2vw;
  line-height: 1.1;
}
*/

.icon-text{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.icon-text i {
  font-size: 28px;
  color: #195983;
  margin: 0 1vw 0;
}

.icon-text h5 {
  font-size: 16px;
	font-weight:400;
}

.service-box {
  display: flex;
  gap: 20px;
}


.ser-data {
  width: 100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top: -5%;
  z-index:-10;
}
/*
.data-box{
	text-align: left;
	max-width:600px;
}
.data-box img {
  width: 30%;
}
*/
.data-box video{
	height:65vh;
}

.ser-section-btn{
	margin-top:-70px !important;
}
.data-box:nth-child(2) {
	margin-top:-60px;
}
.data-box:nth-child(1) {
	margin-top:-60px;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: row;
  }
	
	.services-container h2{
		font-size: 28px;
		color: #2c3e50 !important;
	}

  .services-list {
    flex-direction: column;
    overflow-x: auto;
    border-bottom: none;
  }

  .service-btn {
    flex: 1;
    text-align: center;
    border-bottom: 1px solid #ccc;
    border-right: none;
    width: 98%;
    margin-bottom: 2%;
  }

  .services-content {
    padding: 5px;
  }

	.service-box {
  display: block;
}

  .service-data {
    flex-direction: row;
  }

  .data-box video{
	width:100%;
}

  .ser-data{
    display: block;
  }
	
	 .service-data .service-box button {
    width: 100%;
    max-width: 200px;
    font-size: 1rem;
  }
	  .service-data i {
    font-size: 18px;
  }
	  .services-container h3{
	   font-size: 20px;
	}
		.data-box h5{
		font-size:14px;
	}
	
	.data-box:nth-child(2) {
	margin-top:0;
		margin-bottom:-190px !important;
}
.data-box:nth-child(1) {
	margin-top:0;
}
	.ser-section-btn{
	margin-top:1px !important;
}
}
		@media screen and (max-width: 767px) {
			.hideinmobile {
				display: none !important;
			}
		}
		@media screen and (min-width: 767px) {
			.hideindesktop {
				display: none !important;
			}
		}
		
/***************************************************/
/*                WHY CHOOSE ADNARE                */
/***************************************************/
.healthcare-dev-section {
  padding: 2vw 5%;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.healthcare-dev-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.healthcare-dev-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.healthcare-dev-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.healthcare-dev-content h2 strong {
  color: #da3e36;
}

.healthcare-dev-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.healthcare-dev-content span {
  color: #da3e36 !important;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.features-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.explore-btn {
  display: inline-block;
  background-color: #da3e36;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-size:14px;
  transition: 0.3s ease;
	font-weight:700;
}

.explore-btn:hover {
  color: #fff !important;
}

.healthcare-dev-image {
  flex: 1 1 400px;
  text-align: center;
  margin-top: 30px;
}

.healthcare-dev-image img {
  max-width: 80%;
  height: auto;
  border-radius: 20px;
}

.features-list i {
  font-size: 15px;
  color: #da3e36;
  margin: 0 0.2vw;
}

@media (max-width: 768px){
	.healthcare-dev-content h2{
		 font-size: 28px;
	}
	.healthcare-dev-content{
		order: 2 !important;
	}
	.healthcare-dev-image{
		order: 1 !important;
		margin-bottom:20px;
	}
	}
		
		
		
/***************************************************/
/*              ADNARE SUCCESS STORIES             */
/***************************************************/
.projects-section {
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 5% auto;
}
.projects-section h2 {
  font-size: 40px;
  margin-bottom: 60px;
  color: #2c3e50;
	font-weight:700;
}
.projects-section h2 strong {
  color: #da3e36;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 2vw auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .story-overlay {
  opacity: 1;
}

.story-overlay h5 {
  font-size: 15px;
  text-transform: uppercase;
  color: #ccc;
  text-align: left;
}

.story-overlay h3 {
  font-size: 20px;
  margin: 10px 0;
  text-align: left;
}

.story-overlay .arrow {
  align-self: flex-end;
  font-size: 24px;
  color: #fff;
  background-color: #da3e36;
  border-radius: 100px;
  padding: 10px;
}
.projects-section button{
  width: 200px;
  background-color: #da3e36;
  color: white;
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  border:none;
}

@media screen and (max-width: 768px){
	.projects-section h2{
		font-size:28px;
		text-align:left;
	}
	.projects-section button {
		margin-top:10px;
	}
}
		
		
/***************************************************/
/*               TESTIMONIAL SECTION               */
/***************************************************/
.testimon {
  height: 65vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3f2fd;
  margin-bottom:180px !important;
}
		
.testimonial {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial h2{
	width:100%;
	font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
	text-align:center;
}

.testimonial strong{
    color: #da3e36;
}

/*.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}*/
		
.testimonial .slides {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  height: 100%;
  width: 100%;
}
.slides p {
  text-align: center;
  padding: 0 100px;
  font-size: 14px;
  font-weight: 400;
  color: #2c3e50;
}
.slides .quote-icon {
  font-size: 30px;
  color: #da3e36;
}
.slides .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #da3e36;
}
.details .job {
  font-size: 12px;
  font-weight: 800;
  color: #2c3e50;
}
/* swiper button css */
		
.nav-btn {
  height: 50px !important;
  width: 50px !important;
  border-radius: 50%;
  transform: translateY(40px);
  background-color: #da3e36;
  transition: 0.2s;
}
		
.nav-btn:hover {
  background-color: #195983;
}
.nav-btn::after,
.nav-btn::before {
  font-size: 10px !important;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}
.swiper-pagination-bullet-active {
  background-color: #195983 !important;
}
@media screen and (max-width: 768px) {
  .slides p {
    padding: 0 20px;
  }
  .nav-btn {
    display: none !important;
  }
	.testimonial h2{
	font-size: 28px;
}
	.nav-btn {
		transform: translateY(70px);
}
	.testimon {
		height: 80vh;
		  margin-bottom:10px !important;
	}
}
		
		
		
/***************************************************/
/*              GET READY TO STARTED               */
/***************************************************/
.get-started {
  display: flex;
  flex-wrap: wrap;
  color: #2c3e50;
  padding: 0 50px 50px ;
  gap: 40px;
  margin-top: 5vw;
}

.form-container {
  flex: 1;
  min-width: 350px;
}

.form-container {
    margin-top:-50px;
}

.form-container h2 {
  font-size: 40px;
  font-weight: bold;
}

.form-container h2 strong {
  color: #da3e36;
}

.form-container p {
  font-size: 16px;
  margin-bottom: 20px;
}
		

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
select,
textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}
.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 30%;
}

.phone-group input {
  flex: 1;
}

/*/////////////   Increase width of the phone number of all countries   //////////////*/
.phone-group {
  width: 100%;
}

.phone-group .iti {
  width: 100%;
}

.phone-group input[type="tel"] {
  width: 100% !important;
  box-sizing: border-box;
}

/*/////////////   Increase width of the phone number of all countries   //////////////*/
.checkboxes {
  font-size: 14px;
  font-weight:400;
  display:flex;
  flex-direction: column;
  cursor:pointer;
}
textarea {
  height: 100px;
  resize: vertical;
}

button {
  background-color: #195983;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100px;
}

/* Right Side Info Cards */
.info-cards {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
	margin-top:-50px;
}

.info-card {
  background: none;
  padding: 20px;
  border-left: 3px solid #da3e36;
}

.icon {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #da3e36;
}

.info-card h5 {
  color: #2c3e50;
  font-size: 16px;
  line-height:25px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.learn-btn {
  background-color: #2ad3c9;
  color: #000;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 15px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .get-started {
    flex-direction: column;
    padding: 30px 20px;
  }

  .checkboxes {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }
   .form-container h2{
		font-size:28px;
	}
	.icon{
		font-size:18px;
	}
.form-container {
  min-width: 300px;
}
	.info-cards{
		margin-top:0;
	}
	.form-container {
    margin-top:0;
}
}

/***************************************************/
/*              GET READY TO STARTED               */
/***************************************************/
/***************************************************/
/*                     FOOTER                      */
/***************************************************/
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border-top: 5px solid #195983;
}
		
.footer-header .logo img {
  width: 200px;
}

.footer-header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.footer-header nav ul li {
  cursor: pointer;
  position: relative;
  font-size:16px;
  font-weight:500;
	color:#333;
}

.footer-header a{
 color:#333;
}

@media (max-width: 768px) {
		.footer-header {
		display:block;
	}
	
	.footer-header nav ul{
		gap:0;
	}
}

@media (max-width: 480px) {
		.footer-header {
		display:block;
	}
	.footer-header nav ul{
		gap:0;
	}
}

main {
  padding: 2rem 2rem 0 2rem;
  min-height: 50vh;
  background-image: url("footer\ image.png");
  background-position: center;
  background-size: cover;
  object-fit: contain;
}

.offices {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

.office {
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 250px;
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.office h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.office p{
  font-size: 16px;
  font-weight: 400;
	color:#333;
}

		.office a{
			color:#333;
			font-size:16px;
		}
		
.office img {
  width: 20px;
  height: auto;
}

.contact-email {
  margin: 2rem 0;
  text-align: center;
}

.contact-email a {
  font-weight: bold;
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-top: 1px solid #ccc;
}

.footer-links{
	display:flex;
}
.footer-links p{
	font-size:14px;
	color:#333;
}
.contact-email p{
	font-size:18px !important;
	color:#000 !important;
	font-weight:700 !important;
}

.footer-links a {
  margin-right: 1.5rem;
  color: #333;
  text-decoration: none;
	font-size:15px;
}

.social-media a img {
  width: 24px;
  margin-right: 1rem;
}

.talk-button {
  position: fixed;
  top: 55%;
  right: 0;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right center;
  background-color: #195983;
  color: white;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  cursor: pointer;
 z-index:9999;
}

.talk-button a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .offices {
    flex-direction: column;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
	gap:20px;
  }

  .talk-button {
    display:none;
  }

  .office {
    flex: 1 1 170px;
  }
	.office span {
		font-size:12px;
	}
	.footer-links p{
		font-size:12px;
		color:#333 !important;
	}
		.footer-links a{
		font-size:12px;
		color:#333 !important;
	}
	.contact-email p{
		font-size:13px;
	}
}

.office:nth-child(5) {
  max-width: 300px !important;
}

html {
  scroll-behavior: smooth;
}
/***************************************************/
/*                     POPUP                       */
/***************************************************/

.form-popup {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 600px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transition: left 0.4s ease-in-out;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.form-popup.active {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  z-index: 1001;
  font-weight: bold;
}

.close-btn:hover {
  color: #e63946;
}

		/*//////////////////////// FORM MULTIPLE SECECT BUTTON OPTION ///////////////////////////////////*/
span.tag-item {
    background-color:#195983 !important;
    color:#fff !important;
}

span.cross {
    color:#ccc !important;
}