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

:root {
  --primary: #148433;
  --accent: #209941;
  --accent1: #67a478;
  --secondary: #23683f;
  --light-bg: #f7fef9;
  --dark: #1a1a1a;
}
.theme_color{color: var(--primary);}
.theme_color2{color: var(--accent);}
html{
  scroll-padding-top: 190px;
}
body {
  background-color: var(--light-bg);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;

  font-weight: 400 !important;
  font-size: 15px;
  line-height: 26px;
}
.common-sec{
  padding-block: 60px;
}
.common-sec-btm{
  padding-bottom: 60px;
}
.common-sec-top{
  padding-top: 60px;
}
.navbar-brand img{
height: 70px;
padding-block: 5px;
}
.common_sec{
  padding-block: 80px;
}
.wow {
  visibility: hidden;
}

a{text-decoration: none;}
ul{margin: 0;padding:0;list-style: none;}
/* Navbar Styles */
.navbar {
  background-color: #fff;
  padding: 0px 0 !important;
  box-shadow:0 2px 15px rgb(0 0 0 / 5%);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .nav-link {
  /* color: #fff; */
  padding: 10px 12px !important;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar>li>.nav-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 280px;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 10px 0;
  border-radius: 8px;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-item-has-children:hover .sub-menu {
  display: block;
}

.sub-menu li {
  list-style: none;
  transition: all 0.2s ease;
}

.sub-menu li:hover {
  /* transform: translateX(5px); */
}

.sub-menu li a {
  color: var(--dark) !important;
  display: block;
  padding: 8px 20px  !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 24px;
}

.sub-menu li a:hover {
  background-color: var(--light-bg) !important;
  color: var(--secondary) !important;
  /* padding-left: 0px; */
}

.sub-menu li a::after {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
  background-image: url(images/close.png);
	filter: brightness(0.2);
}
.navbar-toggler {
  border-color: #fff;
  transition: all 0.3s ease;
}

/* .navbar-toggler:hover {
  transform: rotate(90deg);
} */

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-nav>li>a{
line-height: 65px;
}
/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
/*   margin-top: 70px; */
	height: 100vh
}
.navbar-brand{
  padding: 0px !important;
}
.swiper-slide {
  position: relative;
}

.hero-slide-img {
  width: 100% !important;
  height: 100vh;
  object-fit: cover;
  /* transform: scale(1.2); */
  transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: brightness(0.8);
}

/* .swiper-slide-active .hero-slide-img {
  transform: scale(1);
} */

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  z-index: 2;
  max-width: 800px;
  text-align: center;
	margin-top:85px
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	line-height:1.6;
}

.hero-content .btn {
  background-color: var(--accent);
  border: none;
  padding: 0.75rem 2rem;
  color: #fff;
  font-weight: 400;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content .btn:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  /* color: #000 !important; */
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

/* Section Styles */
.section-title {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 800 !important;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, 
    var(--primary) 30%, 
    rgba(255,255,255,0) 70%);
  border-radius: 2px;
}
/* About Section */
.about-section {
  background: linear-gradient(135deg, #f7fef9, #f7fef9);
  border-radius: 0;
}

.img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.img-wrapper:hover {
  transform: scale(1.03);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  padding: 0 10px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text h2, .about-text h3 {
  color: #163b44;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 35px;
  font-weight: 500;
}

.feature-list i {
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 1.3rem;
}
a{color: var(--accent);}
.swiper-button-next, .swiper-button-prev{
  color: var(--accent) !important;
}
/* Partner/Clients Section */
.partner-card {
  background: white;
  border-radius: 2px;
  padding: 20px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  transition: all 0.3s ease;
  border:1px solid rgb(32 133 58);
  margin-block: 20px;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  max-height: 100px;
  max-width: 100%;
/*   filter: grayscale(100%); */
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Services Section */
.service-card {
  transition: all 0.4s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: white;
}
.serice-tag{
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  line-height: 30px;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(2, 157, 244, 0.2);
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.02);
}

.service-card .card-body {
  padding: 1.5rem;
}

 .card-title {
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 10px;
}

 .card-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--accent);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  animation: ctaPulse 8s infinite linear;
}

@keyframes ctaPulse {
  0% { transform: rotate(30deg) scale(1); }
  50% { transform: rotate(30deg) scale(1.2); }
  100% { transform: rotate(30deg) scale(1); }
}

.cta-section .btn {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Footer Styles */
footer {
  background: linear-gradient(to right, #0f0f0f, #1a1a1a);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--primary));
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

footer h5::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  bottom: -8px;
  left: 0;
  background: var(--accent);
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer a {
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 24px;
}

footer a:hover {
  padding-left: 5px;
}
footer .social-icons a:hover { 
  padding-left: 0px;
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  /* border-radius: 50%; */
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-5px);
}

/* Add these styles to your existing CSS */

/* Base Button Styles */
.btn {position: relative;overflow: hidden;transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);transform-style: preserve-3d;border: none;font-weight: 400;letter-spacing: 0.5px;}

/* Primary Accent Button */
.btn-accent {background: linear-gradient(45deg, var(--accent) 0%, var(--accent) 100%);color: #fff;padding: 0.7rem 2.5rem;border-radius: 50px;/* box-shadow: 0 10px 30px rgba(56, 255, 1, 0.3); */position: relative;overflow: hidden;transition: ease all 0.5s;}

.btn-accent:hover {transform: translateY(-3px) scale(1.05);/* box-shadow: 0 15px 40px rgba(9, 255, 1, 0.5); */ color: #fff !important;}

.btn-accent::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, 
    transparent 20%, 
    rgba(255,255,255,0.3) 50%, 
    transparent 80%);
transform: translateX(-100%) rotate(45deg);
transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-accent:hover::after {
transform: translateX(100%) rotate(45deg);
}

/* Outline Button */
.btn-outline-primary {
border: 2px solid var(--primary);
color: var(--primary);
background: transparent;
position: relative;
overflow: hidden;
padding: 0.75rem 2rem;
border-radius: 8px;
}

.btn-outline-primary::before {content: '';position: absolute;top: 0;left: -100%;width: 100%;height: 100%;/* background: linear-gradient(90deg,
    transparent,
    rgba(2, 157, 244, 0.2),
    transparent); */transition: all 0.6s ease;}

.btn-outline-primary:hover {
color: white;
background: var(--primary);
border-color: var(--primary);
transform: translateY(-2px);
box-shadow:0 8px 25px rgb(48 139 27 / 20%)
}

.btn-outline-primary:hover::before {
left: 100%;
}

/* CTA Section Button */
.cta-section .btn {
  background: linear-gradient(45deg, #000, #000);
  font-size: 15px;
  border-radius: 00;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding-inline: 35px !important;
  padding-block: 10px !important;
  color: #fff;
}

.cta-section .btn:hover {
transform: translateY(-2px) scale(1.02);
/* box-shadow: 0 15px 20px rgba(255, 190, 1, 0.6); */
}

/* Service Card Button */
/* Our Capabilities Section */
.our-capbilities {
  background: var(--light-bg);
}

.our-capbilities .section-header h2 {
  font-size: 2rem;
  color: #163b44;
}

.our-capbilities .why_logo img {
  max-width: 50px;
  transition: transform 0.4s ease;
}

.our-capbilities .why_logo img:hover {
  transform: rotate(10deg) scale(1.05);
}

.our-capbilities .capability-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.our-capbilities .capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.our-capbilities .cap-icon {
  font-size: 2rem;
  color: var(--primary, var(--accent)); /* You can override this via CSS variable */
}

.our-capbilities .capability-card h5 {
  color: #163b44;
}

.our-capbilities .capability-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Navbar Button (if you add one later) */
.navbar .btn {
margin-left: 1rem;
border: 2px solid white;
}

.navbar .btn:hover {
background: white;
color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
	.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
		line-height:1.4;
	}
	.about-top-sec{
		padding-top:20px;
	}
	.hero-section {
		height:90vh;
	}
  .hero-content h1 {
	
    font-size: 2.8rem;
	}
  .hero-content {
	
      margin-top:0px;
  }
 
  .hero-content p {
    font-size: 1.1rem;
  }
}


@media (max-width: 768px) {
	
  .hero-content {
    left: 50%;
    padding-right: 0;
width:85%;
  }

  .common-sec{
	    padding-block: 40px;
	}
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .navbar .nav-link::after {
    display: none;
  }
  
  .menu-item-has-children .sub-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
  }
  
  .sub-menu li a {
     color: var(--dark) !important;

    padding-left: 30px;
  }
  
  .sub-menu li a:hover {
    color: var(--accent);
    background-color: transparent;
  }
} 
/* Service Section - Ultra Pro Design */
.service_card {
  position: relative;
height: 100%;
  /* background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%); */
  border-radius: 10px;
  padding: 2rem 2rem 1rem;
  margin: 0.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  border: 1px solid rgb(101 189 125);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
              0 8px 20px rgba(2, 157, 244, 0.1),
              inset 0 -2px 10px rgba(0, 0, 0, 0.05); */
  transform: translateY(0) scale(1);
  cursor: pointer;
}

.service_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.6s;
}

.service_card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
       
}

.service_card:hover::before {
  left: 100%;
}

.service_icon {
  position: relative;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.service_icon img {
  width: 70px;
  /* height: 70px; */
  filter: drop-shadow(0 5px 10px rgba(2, 244, 99, 0.2));
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service_card:hover .service_icon img {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 8px 15px rgba(2, 244, 87, 0.3));
}

.service_title {
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.8rem;
  /* color: var(--primary); */
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.service_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service_card:hover .service_title::after {
  transform: scaleX(2);
}

.service_card .des {
  position: relative;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: .8rem;
  transition: color 0.3s ease;
  z-index: 1;
	    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.service_card .btn {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent);
  /* background: transparent; */
  background: var(
  --accent);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.service_card .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    transparent,
    rgba(2, 244, 10, 0.2),
    transparent
  ); */
  transition: 0.6s;
}

.service_card:hover .btn {
  background: var(--secondary);
  color: white;
  padding-right: 3rem;
  padding-left: 2rem;
  border-color: var(--secondary);
}

.service_card:hover .btn::before {
  left: 100%;
}

.service_card .btn::after {
  content: '→';
  position: absolute;
  right: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.service_card:hover .btn::after {
  right: 1rem;
  opacity: 1;
}

/* 3D Perspective Effect */
@media (hover: hover) {
  .service_card {
    perspective: 1000px;
  }
  
  .service_card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-2deg) scale(1.02);
  }
}
/* service_sec close */

/* inner_service_menu */
.service_menu_sec {
  position: sticky;
  margin-top: 85px;
  top: 85px;
  background: #fff;
  z-index: 999;
  box-shadow: 3px 0px 5px 1px #cfd0d154;
}
.service_menu_sec ul{
  list-style-type: none;
}
.service_menu_sec ul li {
  padding-block: 15px;
}
.service_menu_sec ul li a.srv_link.srv_active{color: var(--primary);}
.service_menu_sec ul li a.srv_link{
  padding-inline: 10px;
  border-left: 1px solid var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #111;
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
}
.service_menu_sec ul li:first-child a.srv_link{border: none;}
.service_menu_sec ul.srv_main li a.srv_link span img {height: 25px;}
.service_menu_sec ul.srv_main {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--accent)80;
  background: #f6fbf7;
}

/*  */
.sections.dsection {
  width: 100%;
  padding-left: 40px;
}
nav.ds {
  width: 100%;
  max-width: 400px;
/*   height: 100vh;  */
  position: sticky; 
  top: 120px;
  background: #fff;
  padding-top: 50px;
}

nav.ds ul {
  padding: 10px;
  margin: 0 auto;
  list-style: none;
}
nav.ds ul li {
  display: block;
  margin: 0 10px;
  border-bottom: 1px solid #d6d5d254;
  margin-bottom: 10px;
}
nav.ds ul li a span i{
  font-weight: 600;
  font-family: bootstrap-icons;
}
nav.ds ul li a span{
  position: absolute;
  left: 4px;
}
nav.ds ul li a {
  padding: 16px 8px 16px 22px  !important;
  margin: 0 0 0px 0;
  color: #fff;
  font-size: .95rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  line-height: 20px;
  background-color: var(--accent);
  display: block;
  position: relative;
}
nav.ds ul li a:hover {
  color: #fff;
  transform: translateX(3px);
  /* letter-spacing: 0.1px; */
}
nav.ds ul li a.active {
  border-bottom: 2px solid #ecf0f1;
}
.dsection > div:last-child {margin-bottom: 0;}
.dsection > div {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-bottom: 1px solid #14843366;
  height: 100%;
  margin-bottom: 40px;
}
.sections.dsection h3 {
  color: var(--primary);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 15px;
}
.detail_linktitles {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.detail_linktitles>a i, .detail_linktitles> div i{
  position: relative;
  top: 3px;
}
.detail_linktitles>a, .detail_linktitles> div {
  padding-block: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  line-height: 100%;
  font-size: 14px;
}
.detail_linktitles span{
  transform: translateY(-3px);
}
/* inner_service_menu close */

/* contact_us */


.contact-form label {
  color: #030519;
  font-weight: 500;
  font-size: 15px;
  font-family: 'Poppins';
  margin-bottom: 10px;
}

 form input.input-box {
  width: 100%;
  height:55px;
  /* outline: none; */
  background-color: transparent;
  /* border: none; */
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  color: #535353;
  border: 1px solid #CFCFCF;
  border-radius:3px;
}

 textarea.input-box{
  width: 100%;
  outline: none;
  background-color: transparent;
  border: none;
  padding: 20px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #5C5C5B;
  border: 1px solid #CFCFCF
}

 .contact-btn{
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 400;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  
}
.btn-warning{
background-color: #00ab4c !important;
color: #fff !important;
}
.contact_left_block .contact-box{
  width: 100%;
  display: flex;
  justify-items: baseline;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-box .icon {
  position: relative;
  top: -7px;
}
.icon i {
  font-size: 30px;
  color: var(--primary);
}
.contact-title {
  font-size: 20px;
  font-weight: 600;
}
.contact_left_block{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-right: 50px;
}
.social-icons a.theme_color {
  box-shadow: 0px 0px 0px 1px #ddd;
}

/* contact_us */

.banner_bg_main{
  background: url(../images/contact-banner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 250px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 70px;
}
.banner_title{
  font-size: 37px;
  font-weight: 600;
  color: #fff;
  max-width: 850px;
  line-height: 45px;
}
.banner_title1{
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  max-width: 850px;
  line-height: 35px;
}

.why_logo img {
  height: 220px;
}
h3.vm_title {
  color: rgb(2, 157, 244);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}
.v_m_img img {
  margin-bottom: 15px;
  height: 60px;
}
.v_m_main {
  text-align: center;
  background: #fff;
  padding: 30px;
	height:100%;
}
.cv_card {
  text-align: center;
  background: #fff;
  padding: 20px;
}
.career_box {
  text-align: center;
  background: #fff;
	height:100%;
  padding: 20px;
}
.cr_img i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  transition: all .4s ease;
  color: var(--primary);
}
.career_box:hover .cr_img i{
  color: var(--primary);
  transition: all .4s ease;
  transform: translateY(-5px) scale(1.1);
}
.career_box .fw-bold{
	font-weight:600 !important
}
.fnt-18{
  font-size: 18px;
  line-height: 32px;
}
/* Ensure left arrow is fully outside the slider */
.swiper-wrapper-container  .swiper-button-prev {
  left: -50px;
}

/* Ensure right arrow is fully outside the slider */
.swiper-wrapper-container  .swiper-button-next {
  right: -50px;
}

@media screen and (min-width:1900px) {
  .container-fluid.px-xl-0{
    max-width: 1900px;
  }
}
@media screen and (max-width:1200px) {
  .service_menu_sec ul.srv_main {flex-wrap: wrap;}
  .service_menu_sec ul.srv_main > li a {font-size: 15px;}
}
@media screen and (max-width:992px) {
  /* Ensure left arrow is fully outside the slider */
.swiper-wrapper-container  .swiper-button-prev {
  left: 0px;
}

/* Ensure right arrow is fully outside the slider */
.swiper-wrapper-container  .swiper-button-next {
  right: 0px;
}
  nav.ds {display: none;}
  .navbar .navbar-toggler {border: none !important;outline: none;}
  .navbar .navbar-toggler:focus {box-shadow: none;}
  .navbar .nav-link {padding: 5px !important;}
  .navbar-nav {padding-top: 10px;}
  .navbar-nav > li > a {line-height: 38px;}
	.navbar-nav .sub-menu{
		padding:5px 0px 15px 15px;
	
	}
	.navbar-nav .sub-menu a{
		font-size:13px;
line-height:26px;
  color: var(--dark) !important;

		
	}
.navbar-nav .sub-menu a:hover{

		background-color:transparent !important
	}
  .navbar .social-icons {margin-bottom: 30px;}
  #mainNavbar {height: 100vh;}
  .sections.dsection {padding-left: 0px;}
}

@media (max-width: 576px) {
	.v_m_main{
		padding:20px 15px;
	}
.service_card {
   
    padding: 20px 17px;
}
  
.fnt-18{
  font-size: 17px;
  line-height: 29px;
}
  .sections.dsection h3{
    font-size: 20px;
    line-height: 30px;
  }
  body{
    font-size: 14px !important;
    line-height: 25px;
  }
  .why_logo img {height: 100px;}
  .common_sec {padding-block: 40px;}
  .copy_right {display: block;padding-top: 5px;}
  p {font-size: 14px !important;}
  .service_inner_img {height: auto;}
  .service_menu_sec {top: 70px;margin-top: 70px;}
  .srv_main {display: none !important;}
}
@media screen and (max-width:470px) {
  .service_menu_sec ul li a.srv_link{justify-content: flex-start;}
  .service_menu_sec ul.srv_main > li{width: 100%;}
  .detail_linktitles > a, .detail_linktitles > div {font-size: 12px;}
  .common_sec {padding-block: 30px;}
  .dsection > div {padding: 15px;margin-bottom: 20px;}
}

/* Ensure the wrapper is positioned correctly */
.swiper-wrapper-container {
  position: relative;
  width: 100%;

  margin: auto;
}

/* Swiper container styling */
.swiper-wrapper-container  .swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Ensure slides are not clipped */
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 25px;
}



.about-top-sec{
  text-align: center;
  font-size: 18px;
  line-height: 30px;

}

.lead{
  font-size: 16px !important;
  font-weight: 400 !important;
}

.footer-logo img{
  height: 60px;
}



/* career */
.security-sec, .awsm-job-item {
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 .11rem .9rem rgba(0, 0, 0, .12) !important;
  background-color: #ffffff;
}
.awsm-selectric-items{
	border-color: #ecc5f0 !important;
}
.awsm-selectric-items li.highlighted, .awsm-selectric-items li:hover{
	background: #ecc5f0 !important;
}
.awsm-job-form .awsm-selectric-open .awsm-selectric, .awsm-job-form .awsm-job-form-control:focus {
    border-color: #ecc5f0 !important;
}
.awsm-job-item, .awsm-lists{
	border: 0px !important;
	margin-bottom: 20px;
}
.awsm-job-item{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.job-excerpt{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
	/* text-align:justify; */
}
.entry-title.awsm-jobs-single-title{
	font-size:28px;
	font-weight: 500;
	color: #0b0b0b;
	margin-bottom: 20px;
	
}
.awsm-job-post-title{
  margin-bottom: 12px !important;
}
.awsm-job-container {
	
	max-width: 1230px !important;
	padding-inline:15px !important;
}
.awsm-job-form-inner{
padding:20px
}
.awsm-job-single-wrap.awsm-col-2 .awsm-job-content{
/* 	width: 60% !important; */
	/* text-align:justify; */
}
.awsm-job-single-wrap.awsm-col-2 .awsm-job-form{
/* 	width: 40% !important; */
}
.awsm-job-form-inner{
    border-radius: 15px;
    box-shadow: 0 .11rem .9rem rgba(0, 0, 0, .12) !important;
    background-color: #ffffff;
	border: 0px !important;
}
.awsm-job-form-inner h2{
	font-size:22px;
	font-weight: 500;
	color: #0b0b0b;
	margin-bottom: 20px !important;
}

.awsm-job-form .awsm-job-form-control {
	height:55px;
}

.awsm-job-form .awsm-job-form-control {
   font-size: 15px !important;
   color:#252525 !important;   
  font-family: 'Poppins-Light' !important;
   background: white !important;
   border-radius:3px !important;
   border: 1px solid #CFCFCF !important;

 
}
.awsm-job-form-group>label:first-child{
  color: #030519 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  font-family: 'Poppins' !important;
  margin-bottom: 10px !important;
}
.awsm-job-form-group label, .awsm-job-form-error{
font-size: 13px !important;
line-height: 13px !important;
margin-bottom: 3px !important;
}
.awsm-job-form-error{
	color: red;
	line-height: 16px !important;
	margin-top: 2px;
}
.awsm-job-form-group{
	margin-bottom: 15px !important;
}
.awsm-job-form{
	position: sticky;
	top: 100px;
}


.awsm-application-submit-btn {
	/* width: 100% !important;
	line-height:10px !important;
 	color: #252525 !important;
	background-color:#ffc2ed !important;
 	overflow: hidden !important;
 	position: relative ;
	font-size:16px !important;
 	z-index:999 !important;
	text-transform: uppercase !important;
    letter-spacing: 1px !important;
	font-family: 'Poppins-Regular' !important;
	border-radius:7px !important;
    border: 2px solid #252525 !important;
    border-bottom: 5px solid #252525 !important;  */
    background: var(--accent) !important;
    font-size: 15px !important;
    border-radius: 00 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    padding-inline: 35px !important;
    width: 100% !important;
    padding-block: 10px !important;
    color: #fff !important;
    border: 0px !important;
}

.innerban-ico{
	width: 100%;
}
.awsm-job-entry-content.entry-content{
	font-size: 14px !important;
}
.awsm-job-container .portal-cont-title{
	margin-top: 20px;
}

span.awsm-job-specification-term {
    background: #ffffff;
    padding: 3px 12px;
    font-weight: 500;
    font-size: 14px;
}
.awsm-job-specification-wrapper
{    display: inline-flex !important;
    flex-wrap: wrap !important;
    gap: 20px;
    border: 1px solid #f6f6f6;
    background: #f6f6f6;
    padding: 12px;
}
.awsm-job-specification-label strong {
    font-weight: 400 !important;
    font-size: 14px;
}
.awsm-list-right-col .awsm-job-specification-item{
	margin: 0px !important;
}
.awsm-list-right-col .awsm-job-specification-wrapper{
margin-right: 15px !important;
}
.form-group p{
	margin-bottom: 0px !important;
}

.error.help-block{
    font-size: 14px;
  }
  .wpcf7-not-valid-tip{
    display: none !important;
  }
  #contact2 span.error{
    display: none !important;
  }
  .input-group.has-error{
    border-color: red !important;
  }
  input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: none !important;
    color: fieldtext !important;
}
form.failed .wpcf7-response-output, .invalid .wpcf7-response-output{
	display: none !important;
}
form.sent .wpcf7-response-output{
  position: fixed;
    top: 20px;
    background: #00ab4c;
    border: 0px !important;
    color: #fff;
    right: 20px;
    max-width: 450px;
    box-shadow: 0 0 7.5px rgba(0, 0, 0, 0.1);
    padding: 15px 20px !important;
    border-radius: 5px;
	-webkit-animation: cssAnimation 8s forwards;
	animation: cssAnimation 8s forwards;
	font-size: 14px;
	overflow: hidden;
  
}

@keyframes cssAnimation {
  0% {
      opacity: 1;
  }

  90% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  z-index: -1;

  }
}

@-webkit-keyframes cssAnimation {
  0% {
      opacity: 1;
  }

  90% {
      opacity: 1;
  }

  100% {
      opacity: 0;
  z-index: -1;
      
  }
}
/* ------------------------------------------- */
	/* CAREERS PAGE  CSS */
/* ------------------------------------------- */

.job-portal-blk{
	border: 1px solid #ddd;
    margin-bottom: 15px;
    /* padding: 20px; */
}
.portal-hd { background-color: #f8f8f8; padding: 25px;}
.portal-subname { margin: 0; font-size: 14px;}
.portal-name, .awsm-list-item h2.awsm-job-post-title a {
    font-size: 30px;
    /* color: #000048; */
    font-weight: 500;
    margin-top: 7px;
    /* margin-bottom: 14px; */
	display: inline-block;
	line-height: 28px;
}
.portal-hd ul { display: flex; padding: 0; margin: 0; flex-wrap: wrap;}
.portal-hd ul li{ margin-right:30px;}
.portal-hd ul li i{font-size: 13px;color:#919191;}

.portal-cont{padding:12px 25px 5px 25px;}


.portal-cont-title {
    font-size: 18px;
    letter-spacing: 0.35px;
    color: #000;
    font-weight: 600;
}
ul.respon-li {
    padding-left:20px;
}
.respon-li li {
	margin-top: 10px;
}
.respon-li>li:before {
    content: '';
    border-radius: 50%;
    height: 5px;
    width: 5px;
    margin-right: 13px;
    background-color: #7e8185;
    margin-left: -18px;
    display: inline-block;
    /* margin-top: -12px; */
    transform: translateY(-2px);
}
/* upload file button css */
.resume-up {
    /* background: url(images/uploadresu-ico.png) no-repeat left top; */
    display: inline-block;
    height: 38px;
    width: 39px;
    vertical-align: middle;
	margin-right:5px;
}
.file > label {
    cursor: pointer;
}
.file > input[type='file'] {
    display: none;
}


.job-portal-form input, .job-portal-form select, .job-portal-form textarea {
    padding-bottom: 16px !important;
}

/* career */

form p{
  margin-bottom: 0px;
}
form br{
  display: none;
}
label.error{
  color: red !important;
}
.input-box.error{
  border-color: red !important;
}
.input-box.error:focus-visible{
  outline: none !important;
}

.dropdown-toggle-icon {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-item-has-children > a::after {
  font-family: "Bootstrap Icons";
  content: "\f282"; /* Bootstrap chevron-down icon */
  font-size: 14px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}


.container{
  max-width: 1350px !important;
}
@media(max-width:1024px){
  .container{
    max-width: 100% !important;
  }
  .navbar-brand img{
    height: 60px;
    padding-block: 7px;
    }
   
    .hero-content {
/*       padding-top: 65px; */
    }
    .about-top-sec p{
      font-size: 17px !important;
      line-height: 28px;
    }
    .why_logo{
      margin-bottom: 20px;
    }
}


.contract-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.contract-image {
  width: 40%;
  position: relative;
}

.contract-image img {
  width: 100%;
	height:260px;
	object-fit:cover;
	
  border-radius: 10px 0 0 10px;
}

.agency-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  border-radius: 5px;
}

.agency-tag .badge {
  font-size: 14px;
}

.contract-id {
  display: block;
  font-size: 12px;
  color: #f8f9fa;
  background: #d9534f;
  padding: 5px;
  border-radius: 3px;
}

.contract-content {
  width: 60%;
}

.contract-title {
  font-size: 22px;
  font-weight: 600;
}

.contract-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.contract-number {
  font-size: 14px;
}




@media (max-width: 1200px) {
  .contract-title {
      font-size: 20px;
  }

  .contract-description {
      font-size: 14px;
  }
}

@media (max-width: 992px) {
  .contract-card {
      flex-direction: column !important;
      text-align: center;
  }

  .contract-image {
      width: 100%;
      border-radius: 10px 10px 0 0;
  }

  .contract-content {
      width: 100%;
      padding: 20px;
  }

  .agency-tag {
      top: 15px;
      left: 15px;
  }
}

@media (max-width: 768px) {
  .contract-title {
      font-size: 18px;
  }

  .contract-description {
      font-size: 14px;
  }

  .contract-number {
      font-size: 13px;
  }

  .btn-danger {
      font-size: 14px;
      padding: 8px 12px;
  }
}


/* blog */
 .blog-list-v1 .blog-item {
            height: 100%;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .blog-list-v1 .blog-item:hover {
            transform: translateY(-5px);
        }
        .blog-list-v1 .blog-img {
            position: relative;
            overflow: hidden;
            border-radius: 10px 10px 0 0;
        }
        .blog-list-v1 .blog-img img {
            width: 100%;
            object-fit: cover;
            height: 220px;
            transition: transform 0.3s ease;
            
        }
        .blog-list-v1 .blog-item:hover .blog-img img {
            transform: scale(1.1);
        }
        .blog-list-v1 .blog-content {
            padding: 15px;
        }
        .blog-list-v1 .blog-title {
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }
        .blog-list-v1 .blog-date {
            font-size: 14px;
            color: gray;
        }
        .category-buttons{
            display: flex;
            align-items: center;
            justify-content:center;
            gap:10px;
			margin-bottom:30px !important;
flex-wrap:wrap;
        }
        .category-buttons .btn {
            margin-right: 10px;
            border-color: var(--primary) !important;
padding: 0.55rem 2rem !important;
    font-weight: 400 !important;
        }
        .category-buttons .btn.active {
            background-color: var(--primary);
            color: white;
        }


/* blog Details */

 .blog-details-v1 {
    max-width: 920px !important;
    margin: 0 auto;
}
.blog-details-v1 .blog-header {
    margin-bottom: 20px;
}
.blog-details-v1 .blog-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.blog-details-v1 .blog-meta {
    font-size: 14px;
    color: #888;
}
.blog-details-v1 .blog-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.blog-details-v1 .blog-image img {
    width: 100%;
    border-radius: 8px;
}
.blog-details-v1 .blog-content {
   
}
.blog-details-v1 .blog-navigation a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.blog-details-v1 .blog-navigation a:hover {
    text-decoration: underline;
}
.blog-content h1{
    font-size:25px;
   }
.blog-content h2{
    font-size:22px;
}
.blog-content h3{
    font-size:19px;
}
.blog-content h4{
    font-size:17px;
}
.blog-content h5{
    font-size:15px;
}
	.blog-content h1, .blog-content h2, .blog-content h3,.blog-content h4,.blog-content h5{
		margin-top:15px;
		margin-bottom:10px;
	}
b, strong{
	font-weight:600 !important;
}



.choose-area {
    position: relative;
    z-index: 2;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(50, 73, 179, 0.21);
    box-shadow: 0 0 30px rgba(50, 73, 179, 0.21);
    padding: 60px;
    border-radius: 10px;
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    .choose-area {
        padding: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .choose-area {
        padding: 20px;
    }
}

.choose-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /* align-items: center; */
}

/*.choose-thumb {
    background-color: #ECF2FF;
    border-radius: 10px;
    padding: 60px;
    width: 433px;
    height: 380px;
}*/


.choose-thumb {
    background-color: #ECF2FF;
    border-radius: 10px;
    padding: 30px;
    width: 420px;
    height: 260px;
}
.our-card img{
	
		height:220px;
	border-radius:50%;
}
@media only screen and (max-width: 991px) {

.our-card img{
	
		height:190px;
}
    .choose-thumb {
        width: 100%;
        height: 100%;
        padding: 30px;
    }
}

.choose-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.choose-content {
    width: calc(100% - 433px);
    padding-left: 30px;
}

@media only screen and (max-width: 991px) {
    .choose-content {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
}

.choose-content .title {
    font-weight: 700;
    margin-bottom: 20px;
}

.choose-statistics-area .statistics-item {
    position: relative;
    z-index: 2;
}

.service-item {
    background-color: #fff;
    -webkit-box-shadow: 0 20px 30px rgb(255 255 255 / 18%);
    box-shadow:0 20px 30px rgb(255 255 255 / 18%);
    border-radius: 10px;
    padding: 25px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
height:100%;
}
   .service-content .title a {
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

        .service-content .title a:hover {
            color: #3249B3;
        }

.service-content p {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
h3 {
    font-size: 20px !important;
}
.blog-list {
    margin-top: 15px;
    margin-bottom: 10px;
}

    .blog-list li {
        position: relative;
        font-weight: 400;
        padding-left: 40px;
        padding-bottom: 15px;
    }

        .blog-list li::before {
            position: absolute;
            top: 0;
            left: 0;
             font-family: "bootstrap-icons"; 
    content: "\F26A"; /* Unicode for bi-check */
            width: 25px;
            height: 25px;
            line-height: 25px;
            background-color: rgba(50, 73, 179, 0.1);
            border-radius: 50%;

            color: #3249B3;
            text-align: center;
            font-weight: 900;
    font-size: 20px !important;
        }

        .blog-list li + li {
            margin-top: 8px;
        }

.aws-editior h1,
.aws-editior h2,
.aws-editior h3,
.aws-editior h4,
.aws-editior h5,
.aws-editior h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.aws-editior strong,
.aws-editior b {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.aws-editior ul {
    margin-bottom: 12px;
}
.our-card{
	text-align:center;


}

  .csr-section {
            padding: 5rem 0;
        }
        .csr-section:nth-child(even) {
            background-color: #fff;
        }
        .csr-image {
            height: 300px;
			width:100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .csr-image:hover {
            transform: scale(1.02);
        }
.swiper-backface-hidden .swiper-slide {
	transform: unset !important;}
@media only screen and (max-width: 767px) {
	.csr-section {
            padding: 2.5rem 0;
        }
.banner_title {
    font-size: 26px;
    line-height: 38px;
	color:#000;
}
}
.c-sec{
    background: transparent;
	color:#000 !important;
	    -webkit-text-fill-color: inherit !important;
}
.c-sec::after{
	display:none !important;
	margin-bottom:0px !important
}