:root {
  --primary: #027bf4;
  --primary-dark: #004d99;
  --secondary: #00a651;
  --accent: #ff6b00;
  --light: #ffffff;
  --dark: #1a3c6c;
  --gray: #f5f7fa;
  --dark-gray: #5a6c8d;
  --border: #d0d7e5;
  --gov-blue: #1a3c6c;
  --gov-light: #e6f0ff;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

.header {
  display: block;
  justify-content: center;
  align-items: center;
  background-color: white;
  position: fixed;
  z-index: 999;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.034);
}

.header-top {
  background: linear-gradient(to right, var(--gov-blue), var(--primary));
  padding: 7px 0px;
}
.header-top-child {
  width: 78%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.language-select {
  background-color: #66339900;
  color: wheat;
  border: 1px solid wheat;
  padding: 2px 8px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-logo-txt {
  line-height: 0%;
  color: black;
  text-decoration: none;
}

.navbar-logoA {
  width: 35px;
}

.navbar-logoB {
  width: 218px;
}

.navbar-logoC {
  width: 85px;
}
.nav-divider {
  width: 2px;
  background-color: #e5e7eb;
  height: 40px;
}

.nav-space {
  gap: 30px;
}

.nav-link {
  color: black;
  font-weight: bold;
  margin-left: 6px;
}

.nav-link:hover {
  color: #0066cc;
}

.divbox {
  display: flex;
  max-height: 600px;
}

.carousel-inner img {
  height: 450px;
}

.custom-indicators {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: center;
  z-index: 15;
}

.custom-indicators button {
  background-color: #027bf4;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 3px;
  transition: background-color 0.3s;
}

.custom-indicators button.active {
  background-color: white;
}

.skip-txt {
  display: block;
}

@media (max-width: 500px) {
  .navbar-logoA {
    width: 24px;
  }

  .navbar-logoB {
    width: 160px;
  }

  .navbar-logoC {
    display: none;
    width: 60px;
  }

  .nav-div {
    gap: 6px;
  }

  .nav-divider {
    height: 27px;
  }
}

@media (max-width: 768px) {

  .header-top-child {
    width: 94%;
  }

  .navbar-collapse {
    margin-top: 15px;
  }
  .skip-txt {
    display: none;
  }

  .nav-link {
    color: black;
    font-weight: bold;
    margin-left: 20px;
  }

  .carousel-inner img {
    height: auto;
  }

  .divbox {
    display: block;
    overflow-y: auto;
    max-height: 400px;
  }
}

/* Hero section styles */
.hero {
  position: relative;
  height: auto;
  display: block;
  padding-top: 95px;
}

.slider-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  position: relative;
  height: auto;
  width: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  display: none;
}

.slide.active {
  opacity: 1;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

.imgB {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

@media (max-width: 450px) {
  .slider-wrapper {
    display: none;
  }
  
  .imgB {
    display: block;
    height: 230px;
  }
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.356);
  padding: 20px 30px;
  border-radius: 5px;
  max-width: 600px;
}

.hero-text h1 {
  margin: 0;
  font-size: 24px;
}

.learn-more {
  background-color: #027bf4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
}

.learn-moreA {
  background-color: #027bf4;
  color: #fff;
  padding: 7px 11px;
  border-radius: 5px;
  margin-top: 10px;
  display: inline-block;
  display: none;
  margin-bottom: 20px;
  margin-left: 20px;
  cursor: pointer;
}

.learn-moreB {
  background-color: #027bf4;
  color: #fff;
  padding: 9px 15px 1px 15px;
  border-radius: 5px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  display: block;
  font-weight: normal;
  white-space: nowrap;
  border-radius: 13px;
}
.learn-moreB:hover {
  background-color: #027bf4de;
  color: #fff;
}
.learn-moreBB {
  background-color: transparent;
  color: #027bf4;
  padding: 7px 15px;
  border-radius: 5px;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  display: block;
  font-weight: normal;
  white-space: nowrap;
  border-radius: 13px;
  border: 1px solid #027bf4;
}

.content {
  padding: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  background-color: #027bf4;
  color: #fff;
  border: none;
  padding: 8px 30px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

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

.main-content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-item {
  flex: 0 1 74%;
  padding-right: 0px;
}

.upcoming-event {
  flex: 0 1 24%;
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 22px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.upcoming-event p {
  margin-left: 8px;
}
.scheme-section {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #027bf426, #f9f9f9);
}

.scheme-btn {
  background-color: #027bf4;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px 0;
  transition: transform 0.3s ease-in-out;
}

.scheme-btn:hover {
  transform: translateY(-10px);
}

.scheme-nav {
  margin-bottom: 20px;
  font-size: 24px;
  color: #444;
}

/* Footer  Start */

footer {
  background-color: #222;
  color: #fff;
  padding: 0px;
  text-align: left;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.container-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
.column {
  /* flex: 1; */
  min-width: 250px;
  padding: 10px;
  color: #e2e2e2;
  font-family: Arial, Helvetica, sans-serif;
}

.column h3 {
  margin-bottom: 10px;
}

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

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

.column ul li a {
  color: #e2e2e2;
  text-decoration: none;
}

.column ul li a:hover {
  color: #9e9e9e;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
}

.social-links img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
}

.footer-bottom p {
  margin: 5px 0;
}

.hidebtn {
  display: flex;
  gap: 15px;
}



/* Responsive design */
@media (max-width: 768px) {
  .scheme-nav {
    margin-bottom: 20px;
    font-size: 15px;
    color: #444;
  }

  .container {
    flex-direction: column;
    align-items: start;
  }

  .column {
    text-align: start;
  }

  .footer-bottom {
    text-align: center;
  }

  .content {
    padding: 10px;
  }



  .learn-moreB {
    display: none;
  }
  .learn-moreBB {
    display: none;
  }

}

/* Footer End */

.navbar-logo {
  width: 300px;
}

.navbar-items {
  width: 80%;
}

@media (max-width: 992px) {
  .hidebtn {
    display: none;
  }

  .learn-moreA {
    display: block;
  }
  .navbar-items{
    width: 90%;
  }
  .header-top-child {
    width: 85%;
}
}

/* Guidelines */

.guidelines {
  background-color: white;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 60px;
  border-radius: 20px;
  margin-bottom: 50px;
}
.form-supportedinfo p {
  font-size: 13px;
  text-align: left;
  color: #000000;
  line-height: 12px;
}

.form-supportedinfo h3 {
  font-size: 20px;
  text-align: left;
  color: #000000;
  margin-top: 30px;
  font-weight: bold;
}

.form-supportedinfo h2 {
  font-size: 20px;
  text-align: left;
  color: #000000;
  margin-top: -30px;
  font-weight: bold;
}

.table-wrapper {
  overflow-x: auto;
}

.analytics table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.analytics th,
.analytics td {
  border: 1px solid #ddd;
  padding: 8px;
}

.analytics th {
  background-color: #027bf4;
  color: white;
}

@media (max-width: 770px) {
  .nav-space {
    gap: 1px;
  }

  .guidelines {
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    border-radius: 20px;
  }

  .form-supportedinfo p {
    font-size: 13px;
    text-align: left;
    color: #000000;
    line-height: 18px;
  }

  .navbar-items {
    width: 100%;
  }

  .navbar-logo {
    width: 220px;
  }

  .menu-icon {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: start;
    background-color: rgb(245, 245, 245);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .hero-text {
    max-width: 100%;
    left: 10px;
    right: 10px;
  }

  .main-content {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }

  .news-item,
  .upcoming-event {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .upcoming-event {
    margin-top: 20px;
    font-size: medium;
  }

  .mytytle {
    font-size: large;
  }

  .imgA {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }


  /* .hero{
        display: none;
    }
    .heroB{
        display: block;
    } */
}

.container-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.grid-item {
  height: auto;
  padding: 5px 15px;
  background-color: white;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #027bf4;
  border-radius: 20px;
}

.grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.service-icon {
    width: 70px;
    height: 42px;
    padding: 0px 10px;
    background: #e8f0fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #1a73e8;
    margin-bottom: 4px;
}

.service-item h3 {
  font-size: 19px;
  margin-bottom: 1px;
  color: #0d47a1;
  font-weight: bold;
}

.service-item p {
  color: #5f6368;
  margin-bottom: 5px;
}
.service-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 10px;
  border-radius: 12px;
  background-color: #1a73e817;
}

@media (max-width: 600px) {
  .container-grid {
    grid-template-columns: 1fr;
  }
}

/* GuideLine Style */

.custom-process-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 90%;
  margin: 0 auto;
  padding: 25px;
  border-radius: 15px;
}

.custom-process-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #4caf50;
}

.custom-process-title {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1.8em;
}

.custom-process-timeline {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.1em;
  background: #fdecea;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  margin-top: 10px;
}

.custom-process-steps {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.custom-process-steps:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #4caf50, #8bc34a);
}

.custom-step {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.custom-step-number {
  position: absolute;
  left: -50px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4caf50;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

.custom-step-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  flex: 1;
  transition: transform 0.3s ease;
}

.custom-step-content:hover {
  transform: translateY(-3px);
}

.custom-step-content h3 {
  margin-top: 0;
  color: #2c3e50;
  border-bottom: 1px dashed #eee;
  padding-bottom: 8px;
  font-size: 1.2em;
}

.custom-step-content p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.6;
}

.custom-requirements-container,
.custom-fees-container,
.custom-contact-container {
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.custom-requirements-title,
.custom-fees-title,
.custom-contact-title {
  margin-top: 0;
  color: #2c3e50;
  border-bottom: 2px dashed #b9b9b9;
  padding-bottom: 12px;
  font-size: 1.3em;
}

.custom-requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.custom-requirement-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.custom-requirement-icon {
  margin-right: 10px;
  font-size: 1.2em;
}

.custom-mandatory {
  color: #e74c3c;
  font-weight: bold;
  font-size: 0.9em;
}

.custom-optional {
  color: #3498db;
  font-weight: bold;
  font-size: 0.9em;
}

.custom-requirement-note {
  font-size: 0.85em;
  color: #777;
  margin-top: 15px;
  font-style: italic;
}

.custom-fees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.custom-fee-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: auto;
}

.custom-fee-item.highlight {
  background: #e8f5e9;
  font-weight: bold;
}

.custom-fee-label {
  color: #555;
  white-space: nowrap;
}

.custom-fee-amount {
  color: #2c3e50;
  font-weight: bold;
  white-space: nowrap;
}

.custom-contact-card {
  display: flex;
  align-items: center;
  background: #f0f7ff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.custom-contact-icon {
  font-size: 2em;
  margin-right: 20px;
  color: #2196f3;
}

.custom-contact-details div {
  margin-bottom: 5px;
}

.custom-contact-org {
  font-weight: bold;
  color: #2c3e50;
}

.custom-contact-location {
  color: #555;
  font-size: 0.9em;
}

.custom-contact-email,
.custom-contact-phone {
  color: #2196f3;
  font-size: 0.95em;
}

.stepcontainer {
  width: 70%;
  margin: 0 auto;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #3498db;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  /* flex-wrap: wrap; */
}

.step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
  margin-bottom: 0px;
}

.step-arrow {
  color: #027bf4;
  font-size: 24px;
  margin: 0 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-container {
    display: block;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 15px 0;
  }
}

.step-card {
  background: white;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #dfdfdf;
}

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

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #027bf4, #193d6f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.step-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 20px;
}

.step-description {
  color: #7f8c8d;
  font-size: 15px;
  line-height: 1.6;
  /* white-space: nowrap; */
}

/* Background patterns */
.bg-shape-one,
.bg-shape-two {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.1;
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
}

.bg-shape-one {
  background-image: radial-gradient(#0a5 10%, transparent 11%),
    radial-gradient(#0a5 10%, transparent 11%);
}

.bg-shape-two {
  background-image: radial-gradient(#3498db 10%, transparent 11%),
    radial-gradient(#3498db 10%, transparent 11%);
  display: none; /* Optional second pattern */
}

/* Box Grid Scatter */
.ui2-states-wrapper {
  font-family: "Segoe UI", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  margin: 50px auto;
  max-width: 1275px;
  background-color: transparent;
  flex-wrap: wrap;
}

.ui2-left-box {
  position: relative;
  width: 60%;
  min-height: 420px;
}

.ui2-background-box {
  background-color: #e9f0f7;
  border-radius: 25px;
  width: 60%;
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.ui2-flex-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  z-index: 1;
  gap: 20px;
}

.ui2-column {
  display: flex;
  flex-direction: column;
  width: 48%;
  gap: 20px;
}

.ui2-card {
  background-color: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 30px 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  min-height: 180px;
  align-items: center;
  text-align: center;
}

.ui2-card:hover {
  transform: translateY(-4px);
}

.ui2-card img {
  width: 70px;
  height: auto;
  margin-bottom: 20px;
}

.ui2-card p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  margin-top: 20px;
  color: var(--primary-dark);
}

.ui2-card i {
  font-size: 50px;
  margin: 0;
  color: #f7941d;
  margin-top: 15px;
}


.ui2-right-text {
  width: 35%;
  padding-left: 0px;
}

.ui2-right-text h2 {
  font-size: 28px;
  color: #00539c;
  margin-bottom: 20px;
}

.ui2-right-text p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.ui2-explore-btn {
  background-color: #00539c;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.price-flex {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .price-flex {
    display: block;
  }
}

@media (max-width: 768px) {
  .ui2-states-wrapper {
    padding: 20px;
    width: 97%;
    flex-direction: column;
  }

  .ui2-left-box,
  .ui2-right-text {
    width: 100%;
    padding-left: 0;
  }

  .ui2-flex-container {
    padding: 20px;
  }

  .ui2-right-text {
    margin-top: 40px;
    text-align: center;
  }
}

/* Help Illustration */

.ui1-help-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px;
  padding: 40px;
  margin: 0 auto;
  width: 90%;
  flex-wrap: wrap;
  max-width: 1275px;
  border: 1px solid rgb(197 192 192);
}

.ui1-help-text {
  max-width: 50%;
}

.ui1-help-text h2 {
  color: #00539c;
  font-size: 32px;
  margin: 0 0 20px;
}

.ui1-help-text p {
  font-size: 20px;
  margin: 0 0 20px;
  line-height: 1.6;
}

.ui1-help-button {
  background-color: #00539c;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 16px;
  cursor: pointer;
}

.ui1-help-img {
  width: 40%;
}

.ui1-help-img img {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .ui1-help-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .ui1-help-text {
    max-width: 100%;
  }

  .ui1-help-img {
    width: 80%;
    margin-top: 30px;
  }
}

/* Footer  */

.new_footer_area {
  background: #145ca6;
  padding-top: 50px;
}

.new_footer_top {
  padding: 50px 0px 50px;
  position: relative;
  overflow-x: hidden;
}
.new_footer_area .footer_bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #b8b8b8;
  padding: 27px 0px;
  background-color: #161718;
  border-top: 1px solid white;
}
.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}
.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}
.btn_get:hover {
  color: #fff;
  background: #6754e2;
  border-color: #6754e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}
.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ti-facebook:before {
  content: "\e741";
}
.ti-twitter-alt:before {
  content: "\e74b";
}
.ti-vimeo-alt:before {
  content: "\e74a";
}
.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #5e2ced;
  border-color: #5e2ced;
  color: #fff;
}

.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}

.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}
.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}
.new_footer_top .f-title {
  margin-bottom: 30px;
  color: #263b5e;
}
.f_600 {
  font-weight: 600;
}
.f_size_18 {
  font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}

.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("../images/footer_bg.png") no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
  background: url("../images/water_truck.png") no-repeat center center;
  width: 230px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 16s linear infinite;
  animation: myfirst 16s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
  background: url("../images/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 23s linear infinite;
  animation: myfirst 23s linear infinite;
}

@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .stepcontainer {
    width: 95%;
    padding: 30px 20px;
  }
  .custom-process-container {
    width: 98%;
  }
  .custom-process-steps {
    padding-left: 40px;
  }

  .custom-step-number {
    left: -40px;
    width: 30px;
    height: 30px;
    font-size: 0.9em;
  }

  .custom-requirements-grid,
  .custom-fees-grid {
    grid-template-columns: 1fr;
  }

  .custom-process-title {
    font-size: 1.5em;
  }
}

/* Pricing Style */

.pricing-title {
  font-size: 2rem;
  font-weight: 600;
}

.pricing-subtitle {
  color: #6c757d;
  font-size: 1rem;
}

.badge-pricing {
  background-color: #e9f5ec;
  color: #4caf50;
  font-weight: 500;
  font-size: 0.8rem;
}

.card-business {
  background-color: #e9f0f7;
  color: #000;
}

.price {
  font-size: 2rem;
  font-weight: bold;
}

.features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  /* white-space: nowrap; */
}

.features li::before {
  content: "✔️";
  margin-right: 8px;
  font-size: 0.9rem;
}

.btn-get-started {
  background-color: #e9f0f7;
  color: #fff;
  border: none;
  width: 100%;
}

.btn-get-started:hover {
  background-color: #e9f0f7;
}

@media (max-width: 767px) {
  .business-flex {
    flex-direction: column;
  }
}

/* Hero Slider Styles */
.slider-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: none;
}

.slide.active {
  opacity: 1;
  display: block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s;
}

.slider-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

@media (max-width: 768px) {
  .slider-nav {
    padding: 8px 12px;
    font-size: 16px;
  }
  
  .slider-dots {
    bottom: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-container {
    display: none;
  }
  
}

/* Responsive Trade Card Grid Styles */
.trade-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-content: center;
  padding: 20px 0;
}

.trade-card {
  background: #fff;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 2px 12px 0 rgba(74,108,247,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 200px;
}

.trade-card:hover {
  box-shadow: 0 8px 25px 0 rgba(74,108,247,0.15);
  transform: translateY(-2px);
}

.card-icon {
  margin-bottom: 18px;
}

.card-icon i {
  font-size: 2rem;
  color: #4a6cf7;
}

.card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  line-height: 1.3;
}

.subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
}

.card-description {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.4;
  flex-grow: 1;
}

.card-action {
  color: #007bff;
  font-weight: 500;
  font-size: 0.98rem;
  margin-top: auto;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .trade-card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .trade-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .trade-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px 0;
  }
  
  .trade-card {
    padding: 24px 18px 20px 18px;
    min-height: 180px;
  }
  
  .card-icon i {
    font-size: 1.8rem;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .trade-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px 0;
  }
  
  .trade-card {
    padding: 20px 16px 18px 16px;
    min-height: 160px;
  }
  
  .card-icon i {
    font-size: 1.6rem;
  }
  
  .card-title {
    font-size: 0.95rem;
  }
  
  .card-description {
    font-size: 0.85rem;
  }
}

/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, #1a3c6c 0%, #2c5aa0 100%);
  color: #ffffff;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.footer-main {
  padding: 60px 0 40px;
  position: relative;
}

.footer-main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') no-repeat center;
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-section {
  position: relative;
}

.department-info {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-emblem {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.gov-badge {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a3c6c;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.department-desc {
  color: #e8f4fd;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.contact-info {
  margin-top: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

.contact-link i {
  font-size: 1rem;
  color: #ffd700;
}

.section-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8f4fd;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #ffd700;
  transform: translateX(5px);
  text-decoration: none;
}

.footer-link i {
  font-size: 0.9rem;
  color: #ffd700;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: block;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
}

.copyright {
  color: #b8d4f0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.copyright p {
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 14px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  color: #e8f4fd;
}

.badge i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .department-info {
    grid-column: 1 / -1;
    text-align: center;
    padding-right: 0;
  }
  
  .footer-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 30px 0 20px;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-emblem {
    width: 50px;
    height: 50px;
  }
  
}
