* {
  box-sizing: border-box;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

li {
  list-style: none;
}

ul {
  padding: 0;
  margin: 0;
}

section {
  padding: 40px 0;
}

.send-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #9e9e9e;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #7e7e7e;
}

:root {
  --primary-color: #0288d1;
  --secondary-color: #2e7d32;
  --dark: #2e251f;
  --white: #fff;
  --font1: "Arial", sans-serif;
  --font2: "Courier New", monospace;
}

/* Button */

.primary-btn {
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 30px;
  font-size: 18px;
  transition: all 0.5s ease;
  display: inline-block;
}

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

.bg {
  background: #00000012;
}

.secound-btn {
  background: var(--white);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  color: var(--secondary-color);
  margin-right: 20px;
}

.third-btn {
  border-radius: 5px;
  padding: 12px 30px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 0 1px var(--white);
}

/* Header */

header {
  padding: 5px 0;
  background: var(--white);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.header-logo img {
  width: 200px;
}

.header-nav .nav-list {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.nav-list li a {
  padding: 25px 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  display: inline-block;
}

.header-btn {
  text-align: end;
}

.scrolled {
  background: var(--white);
  z-index: 2;
  box-shadow: 0 0 3px 1px #00000091;
}

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

.sub-list {
  position: relative;
}

.sub-list .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  box-shadow: 0 0 5px 1px #0000002e;
  display: none;
}

li.sub-list a i {
  font-size: 14px;
}

.sub-list:hover .dropdown {
  display: block;
}

.sub-list .dropdown li a {
  color: var(--dark);
  font-size: 16px;
  padding: 10px 15px;
  display: block;
  transition: all 0.3s ease;
}

.sub-list .dropdown li a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.toggle-munu {
  display: none;
}

.comon_icon img {
  width: 100%;
}

.comon_icon {
  position: fixed;
  width: 55px;
  z-index: 1;
  left: 10px;
  z-index: 999999;
}

.whatsapp {
  bottom: 115px;
}

.call {
  bottom: 40px;
}

/* Banner */

.banner {
  background: url(../../assets/images/banner/banner-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.banner:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  background: linear-gradient(
    135deg,
    hsl(0deg 0% 0% / 79%) 0%,
    hsl(120deg 47.86% 19.6% / 85%) 50%,
    hsl(210deg 73.66% 34.28% / 82%) 100%
  );
}

.banner-content.text-center {
  position: relative;
}

.banner-counter.d-flex.justify-content-between {
  position: relative;
}

.banner-title .sub-title {
  display: flex;
  justify-content: center;
}

.banner .sub-title h6 {
  display: inline;
  color: var(--white);
  background: #ffffff33;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 18px;
}

.banner-title h1 {
  color: var(--white);
  font-size: 40px;
}

.banner-text p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.banner-text {
  margin: 20px 0 40px;
}

.banner-counter {
  margin-top: 60px;
}

.counter-icon i {
  color: var(--white);
  font-size: 32px;
}

.counter-text {
  margin-top: 7px;
}

.counter-text h2 {
  color: var(--white);
  font-size: 30px;
}

.counter-text p {
  color: var(--white);
  font-size: 22px;
}

/* Feature */

section.features {
  padding: 60px 0;
}

.feature-icon i {
  font-size: 26px;
  color: var(--white);
}

.feature-icon {
  height: 80px;
  width: 80px;
  margin: auto;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s;
}

.feature-content {
  margin-top: 20px;
}

.feature-item {
  box-shadow: 0 0 6px 1px #0000002e;
  padding: 15px 10px;
  border-radius: 5px;
  transition: all 0.5s;
  min-height: 270px;
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-item:hover .feature-icon {
  background: var(--secondary-color);
}

.feature-content h3 {
  font-size: 24px;
}

/* About */

.about {
  padding: 60px 0;
}

.mission-icon i {
  height: 50px;
  width: 50px;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 22px;
  border-radius: 5px;
}

.mission-text h3 {
  font-size: 18px;
}

.mission-text p {
  font-size: 14px;
}

.heading-title .sub-title h6 {
  background: #2659261a;
  display: inline;
  padding: 8px 20px;
  color: var(--secondary-color);
  font-size: 18px;
  border-radius: 25px;
}

.heading-title h2 {
  font-size: 30px;
  font-weight: 700;
}

.about-content p {
  text-align: justify;
}

.color-span {
  color: var(--primary-color);
}

.about-img img {
  width: 100%;
  border-radius: 5px;
}

.breadcrumb {
  padding: 120px 0 30px;
  background: linear-gradient(
    135deg,
    hsl(120 40% 25%) 0%,
    hsl(120 35% 35%) 50%,
    hsl(210 85% 55%) 100%
  );
}

.breadcrumb-item ul .active {
  color: var(--white);
  font-weight: 500;
}

.breadcrumb-item ul li a {
  color: #ffffffbf;
  font-weight: 500;
}

.breadcrumb-form .form-input label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.breadcrumb-form {
  background: #fffffff2;
  padding: 15px 25px;
}

.breadcrumb-form-title h3 {
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 700;
}

.breadcrumb-form-title p {
  color: var(--dark);
}

.form-input input {
  outline: none;
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 2px;
  border: 2px solid #ddddddd1;
}

.form-input select {
  padding: 10px;
  width: 100%;
  color: #00000094;
  outline: none;
  border-radius: 2px;
  border: 2px solid #ddddddd1;
}

.form-input {
  margin-bottom: 15px;
}

.breadcrumb-content h1 {
  color: var(--white);
  font-size: 34px;
}

.breadcrumb-content p {
  color: var(--white);
}

.feature-points ul li {
  color: var(--white);
  margin-bottom: 15px;
}

.why-choose-us-content .features ul li i {
  color: var(--secondary-color);
  font-size: 20px;
}

.why-choose-us-content .features ul li {
  margin-bottom: 10px;
}

.achievement-item {
  text-align: center;
  box-shadow: 0 0 6px 1px #cacaca52;
  padding: 20px;
  border-radius: 5px;
}

.achievement-icon {
  font-size: 36px;
  color: var(--secondary-color);
}

.achievement-text p {
  font-size: 18px;
  font-weight: 500;
}

/* Service */

.services {
  padding: 60px 0;
}

.service-icon {
  font-size: 40px;
  color: var(--secondary-color);
  text-align: center;
}

.service-item {
  box-shadow: 0 0 6px 1px #0000002e;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.5s;
  background: var(--white);
  position: relative;
}

.service-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-content {
  position: absolute;
  width: 98%;
  left: 5px;
  bottom: 5px;
  background: #10384ed4;
  padding: 8px;
}

.service-content h4 {
  font-size: 20px;
  color: var(--white);
  margin: 0;
}

.service-content .hindi-title {
  color: var(--primary-color);
  font-weight: bold;
}

.service-content h3 {
  font-size: 24px;
}

.service-item:hover {
  box-shadow: 0 0 10px 1px #2e7d3280;
  transform: scale(1.02);
}

/* Testimonial */

.testimonials {
  padding: 60px 0;
}

.testimonial-author {
  display: flex;
  padding-top: 10px;
  marging-top: 10px;
  gap: 15px;
  align-items: center;
  border-top: 1px solid #00000038;
}

.author-img img {
  height: 55px;
}

.author-info h4 {
  margin: 0;
  font-size: 20px;
}

.testimonial-item {
  padding: 15px 20px;
  margin: 5px;
  border-radius: 5px;
  background: #fff;
}

.testimonial-content {
  min-height: 160px;
}

.owl-nav,
.owl-dots {
  display: none;
}

.quote {
  font-size: 30px;
  color: var(--primary-color);
}

/* Footer */

footer {
  background: #001229;
  padding: 40px 0 0;
}

.footer-item h5 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-item.serv-links {
  padding-left: 50px;
}

.footer-item ul li a {
  color: var(--white);
}

.footer-item p {
  color: var(--white);
}

.footer-item ul li i {
  color: var(--white);
}

.footer-logo img {
  height: 80px;
  border-radius: 5px;
}

.copyright p {
  color: var(--white);
  padding: 10px 0;
}

.copyright {
  border-top: 1px solid var(--white);
  margin-top: 30px;
}

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

/* Service-Detail */

.service-info-img img {
  width: 100%;
}

.accordion-button:focus {
  box-shadow: none;
}

.service-range {
  text-align: center;
  background: #f0f0f0;
  padding: 20px 10px;
  border-radius: 5px;
  transition: all 0.5s;
}

.range-icon {
  color: var(--secondary-color);
  font-size: 26px;
  margin-bottom: 5px;
}

.range-title h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.service-range:hover {
  box-shadow: 0 0 6px 1px #2e7d3261;
  transform: scale(1.02);
}

.info-detail p {
  text-align: justify;
}

.feature-box ul li {
  margin-bottom: 10px;
}

.feature-box ul li i {
  color: var(--secondary-color);
}

.process-icon {
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.process-content h4 {
  font-size: 18px;
}

.process-item {
  text-align: center;
  background: #f0f0f0;
  padding: 25px 10px 20px;
  border-radius: 5px;
  position: relative;
  min-height: 170px;
}

.process-num {
  position: absolute;
  top: -17px;
  left: 42%;
}

.process-num span {
  height: 35px;
  width: 35px;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-menu {
  background: #f0f0f0;
  padding: 20px;
}

.service-menu ul li {
  display: block;
  margin-bottom: 5px;
}

.service-menu ul li a {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #0288d1;
  font-weight: 500;
}

.service-menu ul li.active {
  background: var(--primary-color);
  color: var(--white);
}

.support {
  padding: 20px 20px 40px;
  background: #f0f0f0;
  margin-top: 10px;
}

.support-icon {
  font-size: 30px;
  color: var(--primary-color);
}

.support-num a {
  font-size: 20px;
}

.support-item {
  margin-bottom: 30px;
}

.service-details {
  padding: 30px 0;
}

.breadcrumb {
  margin-bottom: 0;
}

.sticky {
  position: sticky;
  top: 15%;
  height: 100%;
}

.contact-us-form {
  padding: 40px;
  box-shadow: 0 0 6px 1px #00000066;
}

.contact-details {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon i {
  background: #d2ddcf;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  border-radius: 50%;
}

.sicial-icon ul {
  display: flex;
  gap: 15px;
}

.sicial-icon ul li a i {
  font-size: 20px;
  background: #d2ddcf;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.contact-sidebar {
  background: #33333321;
  padding: 30px;
}

.contact-details .contact a {
  font-size: 18px;
  font-weight: 500;
}

.contact-us-img img {
  border-radius: 5px;
}

.modal-dialog {
  max-width: 700px;
}

button.primary-btn {
  border: none;
}

.bg-section {
  background: linear-gradient(180deg, hsl(40 25% 97%) 0%, hsl(35 40% 92%) 100%);
}

button.btn-close.enq-modal {
  position: absolute;
  right: 10px;
  z-index: 999;
  top: 10px;
}

.area-box {
  background: #f1f1f1;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 2px solid #2e7d32;
}

.area-box .map-icon {
  font-size: 20px;
  height: 45px;
  width: 45px;
  background: #cdcdcd;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3996db;
  border-radius: 50%;
  margin-bottom: 10px;
}

.area-box .area-name h4 {
  font-size: 18px;
  margin: 0;
}

.area-box:hover .map-icon {
  background: #3996db;
  color: var(--white);
}

.area-box:hover {
  border: 2px solid #3996db;
}

.map-img img {
  width: 100%;
}

.industry-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-img img {
  width: 100%;
}

.auther-detail {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}

.blog-item {
  padding: 7px;
  box-shadow: 0 0 6px 1px #00000030;
  border-radius: 5px;
}

.blog-content .title h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
}

.blog-content .title p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-btn {
  margin-top: 10px;
}

.industry-item {
  position: relative;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 0 6px 1px #0000003d;
}

.industry-name {
  position: absolute;
  bottom: 5px;
  width: 97%;
  background: #000000a6;
  padding: 7px;
}

.industry-name h4 {
  color: var(--white);
  margin: 0;
  font-size: 18px;
}

.sub-title {
  margin-bottom: 15px;
}

.blog-img img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 5px 5px 10px;
}

.about-img {
  padding: 30px;
  position: relative;
}

.inner-box span {
  display: block;
  line-height: 30px;
}

.inner-box {
  position: absolute;
  background: #1184c2;
  padding: 10px 40px;
  bottom: 5%;
  color: #fff;
  left: 24%;
  font-size: 24px;
  font-weight: 700;
}

.packages {
  background: #f8fbff;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 15px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.package-price {
  font-size: 34px;
  font-weight: 700;
  color: #2563eb;
  margin: 15px 0;
}

.package-price span {
  font-size: 28px;
}

.package-price small {
  font-size: 14px;
  color: #64748b;
}

.package-price.custom {
  font-size: 36px;
}

.highlight {
  color: #3b82f6;
}

.package-list li {
  position: relative;
  margin-bottom: 14px;
  font-size: 15px;
  color: #334155;
}

.package-list li i {
  color: #22c55e;
  font-weight: bold;
}

.popular {
  border: 2px solid #38bdf8;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #06b6d4, #7c3aed);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.list-unstyled.package-list {
  height: 400px;
  overflow: auto;
  margin-bottom: 30px;
}

.process-content {
  min-height: 105px;
}


 .cta-section {
  background: linear-gradient(135deg, #0f766e, #16a34a);
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #e5f7f3;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons a {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #065f46;
}

.btn-primary:hover {
  background-color: #ecfdf5;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 2rem;
  }

  .cta-container p {
    font-size: 1rem;
  }
}


/*blog*/

section.blog-detail {
    margin-top: 100px;
}

.latest-img img {
    height: 85px;
}

.latest-blog {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 5px;
    margin-bottom: 10px;
}

.latest-content h6 {
    margin-bottom: 2px;
}

.blog-sidebar {
    background: #f0f0f0;
    padding: 10px;
    margin-bottom: 20px;
}
.latest-sub-title {
    margin-top: 20px;
}

.blog-content .title h1 {
    font-size: 34px;
}

.latest-sub-title h2 {
    font-size: 28px;
}