/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {text-decoration: unset;}
textarea, .inFld, input, button, select {font-family: 'Poppins', sans-serif;}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #1E1E1E;
  background-color: #FFFFFF;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}
.container_full {
  padding: 0 10px;
}
.logo {
    font-size: 0;
}


/* Top Bar */
.top-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E7E7E7;
  padding: 5px 0;
}
span.spcer {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D9D9D9;
} 
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #1E1E1E;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  color: #002364;
}

.icon {
  width: 14px;
  height: 14px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 14px;
  height: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.7;
}

/* Header */
.header {
  background-color: #FFFFFF;
  padding: 7px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
  height: 60px;
  width: auto;
}

.navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px 0 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #FF7200;
}

.login-btn {
  background-color: #FF7200;
  color: #FFFFFF;
  border: none;
  min-width: 120px;
  padding: 7px 24px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transition: background-color 0.3s ease;
  text-decoration: unset;
}

.login-btn:hover {
  background-color: #e65a00;
}

.btn-icon {
  width: 12px;
  height: 14px;
}

/* Services Bar */
.services-bar {
  background-color: #002364;
  padding: 0px 0;
}

.services-list {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  color: #FFFFFF;  
  list-style: none;
  
}
.services-list a {
  color: #fff;
  
}
.services-list>li>a {
  padding: 18px 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;     line-height: 16px;
  font-weight: 600; text-transform: uppercase;
}

ul.sl-submenu {
    position: absolute;
    top: 100%;
    background: #002364;
    border-top: 2px solid hsl(0deg 0% 0% / 15%);
    border-bottom: 0 solid hsl(0deg 0% 0% / 15%);
    list-style: none;
    width: 210px;
    visibility: hidden;
    left: 0;
    z-index: 9;
}

li.sl-has-subm {
    position: relative;
}

ul.sl-submenu a {
    padding: 10px 12px;
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    font-weight: normal;
    width: 100%;
    box-sizing: border-box;
}

ul.sl-submenu li {border-bottom: 1px solid rgb(255 255 255 / 16%);}

li.sl-has-subm:hover>ul {
    visibility: visible;
}

ul.services-list li:last-child ul.sl-submenu {
    right: 0;
    left: unset;
}

ul.sl-submenu a:hover {
    background: rgb(255 255 255 / 6%);
}


/* Hero Section */
.hero {
  position: relative;
}
.heroIn {
  min-height: 600px;
      display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    background: rgba(0, 0, 0, 0.5);
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 607px;
  color: #FFFFFF;
}

.hero-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 62px;
  margin-bottom: 40px;
}

.cta-btn {
  background-color: #FF7200;
  color: #FFFFFF;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600; display: inline-block; vertical-align: middle; text-align: center;
  min-width: 230px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e65a00;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.features-grid {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}

.feature-card {
  background-color: #FFFFFF;
  padding: 70px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 2px 8px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  border-bottom: 4px solid #FF7200;
}

.feature-card.featured {
  background-color: #002364;
  color: #FAF7F2;
}




.feature-icon {
  margin-bottom: 30px;
}

.feature-icon img {
  width: 60px;
  height: 60px;
}

.feature-card h3 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4C4C4C;
}

.feature-card.featured p {
  color: #FAF7F2;
}

/* Service Cards Slider */
.service-cards {
  padding: 60px 0;
  background-color: #F0F4FB;
}

.service-cards-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
}
.service-card-content {
    padding: 0 20px 0 0;
}
.service-card {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  padding: 25px 25px;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #002364;
  transition: transform 0.3s ease;
}
.service-card-content h4 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 6px;
  white-space: nowrap;
}

.service-category {
  font-size: 14px;
  font-weight: 400;
  color: #002364;
}

.service-icon img {
  width: 32px;
  height: 32px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.service-icon {
    font-size: 0;
}
.dot {
  width: 12px;
  height: 6px;
  background-color: #D9D9D9;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* About Section */
.about {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 6px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.j-center,
.services .section-label {
  justify-content: center;
}
.label-bar {
  width: 4px;
  height: 20px;
  background-color: #FF7200;
}

.section-label span {
  font-size: 16px;
  font-weight: 400;
  color: #1E1E1E;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #1E1E1E;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #4C4C4C;
  margin-bottom: 20px;
}

.read-more-btn {
  background-color: #FF7200;
  color: #FFFFFF;
  border: none;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  min-width: 180px;
  display: inline-block; text-align: center;
  font-weight: normal; text-decoration: unset;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #e65a00;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #F0F4FB;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #1E1E1E;
  max-width: 500px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-item {
  background-color: #FFFFFF;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #FF7200;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item .service-icon {
  margin-bottom: 30px;
}

.service-item .service-icon img {
  width: 60px;
  height: 60px;
}

.service-item h3 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 20px;
}

.service-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4C4C4C;
  margin-bottom: 30px;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FF7200;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.view-more:hover {
  color: #e65a00;
}

.view-more img {
  width: 9px;
  height: 8px;
}

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

.view-all-btn {
  background-color: #FF7200;
  color: #FFFFFF;
  border: none;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #e65a00;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}
.cta-content {
    text-align: center;
}

.cta-section .container {
    max-width: 1180px;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #1E1E1E;
  margin-bottom: 30px;
}

.cta-content .highlight {
  color: #FF7200;
}

.cta-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4C4C4C;
  margin-bottom: 40px;
}

.callback-btn {
  background-color: #FF7200;
  color: #FFFFFF;
  border: none;
  padding: 8px 24px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.callback-btn:hover {
  background-color: #e65a00;
}

.callback-btn img {
  width: 14px;
  height: 14px;
}

.cta-img {
  max-width: 100%;
}

/* Help Section */
.help-section {
  padding: 60px 0;
  background-color: #1E1E1E;
}

.help-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.help-card {
  padding: 20px 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.help-card.primary {
  background-color: #FF7200;
  color: #FFFFFF;
}

.help-card.secondary {
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
}

.help-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-icon img {
  width: auto;
  height: auto;
}

.help-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.help-card.primary .help-content h3 {
  color: #FFFFFF;
}

.help-card.secondary .help-content h3 {
  color: #000000;
}

.help-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 4px 0 0 0;
}

.help-card.primary .help-content p {
  color: rgba(255, 255, 255, 0.8);
}

.help-card.secondary .help-content p {
  color: #777777;
}

.faq-link {
  font-size: 16px;
  font-weight: 500;
  color: #FF7200;
}

/* Footer */
.footer {
  background-color: #1E1E1E;
  padding: 0px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #E5E5E5;
  font-style: normal;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 12px;
  font-weight: 400;
  color: #E5E5E5;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #FF7200;
}

.footer-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 4px;
}
.footer-contact a {
    font-weight: 600;
}
.footer-links a {
  font-size: 12px;
  font-weight: 400;
  color: #E5E5E5;
  text-decoration: none;
  line-height: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FF7200;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link img {
  width: 14px;
  height: 14px;
  transition: opacity 0.3s ease;
}

.social-link:hover img {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid #000000;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 500;
  color: #929292;
}

/*----------mob nav------------*/
.mobNavBtn {
    width: 32px;
    text-align: center;
    font-size: 22px;
    margin: 0 0 0 12px;
}

.mnavMask {
    background: rgba(0, 0, 0, .3);
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    display: none;
}
.mNavBox {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    height: 100vh;
    z-index: 100;
    max-width: 450px;
    box-shadow: -10px 0 20px 0 rgba(123, 147, 180, 0.2);
    transform: translate(-110%, 0px);
    transition: all ease-in-out 0.3s;
    overflow: hidden;
    width: 90%;
}
.mNavBox.openMnv {
    transform: translate(0%, 0px);
    width: 90%;
}

.mNavHdr {
  background: #f0f4fb;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
}
.mNavHdr.noHdrBtn {
    padding: 12px 10px;
}
ul.mnavMenu li a {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  padding: 9px 10px;
  color: #333;
  width: 100%;
  box-sizing: border-box;
}
ul.mnavMenu ul li {background: #f0f4fb;}

ul.mnavMenu li+li {border-top: 1px solid #f0f4fb;}
ul.mnavMenu ul li+li {border-top: 1px solid #e2e8f3;}
.withSnav {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20x%3D%220%22%20y%3D%220%22%20viewBox%3D%220%200%2024%2024%22%20style%3D%22transform%3A%20rotate(0deg)%20scale(1%2C%201)%3B%20transform-origin%3A%20center%20center%3B%22%20xml%3Aspace%3D%22preserve%22%20class%3D%22%22%3E%3Cg%20transform%3D%22matrix(-1%2C1.2246467991473532e-16%2C-1.2246467991473532e-16%2C-1%2C24.133506774902344%2C23.98696231842041)%22%3E%3Cpath%20fill%3D%22%23000000%22%20fill-rule%3D%22evenodd%22%20d%3D%22M15%204a1%201%200%201%201%201.414%201.414l-5.879%205.879a1%201%200%200%200%200%201.414l5.88%205.879A1%201%200%200%201%2015%2020l-7.293-7.293a1%201%200%200%201%200-1.414z%22%20clip-rule%3D%22evenodd%22%20opacity%3D%221%22%20data-original%3D%22%23000000%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right 10px center;
}
ul.mnavMenu {
    border-bottom: 1px solid #f0f4fb;
}

ul.mnavMenu ul li a {
    padding: 9px 10px 9px 18px;
}

ul.mnavMenu.mnserv>li>a {
    font-weight: 500;
}
.mobNavBtn,
.mNavSet2 {display: none;}
span.mNavMain svg {
    width: 20px;
    height: 20px;
}
span.mNavMain {
    vertical-align: middle;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}




.pageHdrin {
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 75px 0;
    color: #fff;
}
.pageHdrin h2 {
    font-size: 26px;
}
.pageHdrin ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    gap: 16px;
}
.pageHdrin ul li a {
    color: #fff;
}
section.pageHdr {
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
.pageHdrin ul li+li:before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D9D9D9;
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: 0 16px 0 0;
}

.srvData { padding: 70px 0 10px; }
.srvData .service-item { background-color: #F5F9FF; padding: 40px 18px; border: 1px solid #e7eaef; border-bottom: 3px solid #FF7200;}
.srvData .services-grid { grid-template-columns: repeat(4, 1fr); gap: 15px; }
.srvData .service-item p {  font-size: 14px;  line-height: 22px; }
.srvData .service-item h3 {margin-bottom: 10px;}
/*.footer-section img.footer-logo {background: #fff;border-radius: 4px;padding: 5px;}*/
.abTxt01 {padding: 80px 0;}
.abt1-content {
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
.abt1-text {
    flex: 1;
}
.abt1-image {
    font-size: 0;
}
.abt1-image img {
    border-radius: 8px;
}
.abt1-text p {
    color: #4C4C4C;
    font-size: 14px;
}
.abt1-text p+p {
    margin: 10px 0 0 0;
}
.abTxt02 {
    padding: 0 0 80px 0;
}
.abTxt02 .features-grid {
    gap: 0;
}
.abTxt02 .feature-card {
    border: 0;
    border-radius: 0;
    box-shadow: unset;
    background: #F0F4FB;
}
.abTxt02 .feature-card.featured {
    background-color: #002364;
}
.abTxt03 {
  background-repeat: no-repeat;
  background-position: center;
}
.abTxt03in {
    padding: 80px 0;
    background: rgba(25, 25, 25, 0.7);
}
.abTxt03 .cta-content {
    margin: 0 auto;
    max-width: 1100px;
}
.abTxt03 .cta-content p,
.abTxt03 .cta-content h2 {color: #fff;}
section.abTxt04 {
    padding: 80px 0;
}
section.abTxt04 .service-card {
    background: #f0f4fb;
}


.cnTxt01 {
    padding: 80px 0;
}

ul.cnCardBx {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    list-style: none;
}

ul.cnCardBx li {
    width: calc(100% / 3);
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.cnCard {
    background: #F0F4FB;
    border-radius: 8px;
    height: 100%;
    padding: 70px 20px 50px;
}

.cnHtxt h6 {
    font-size: 26px;
    color: #1E1E1E;
    margin: 0 0 10px 0;
}

.cnHtxt {
    margin: 40px 0 0 0;
}

.cnt2r {
    display: flex;
    flex-direction: row;
    align-items: center;
}

section.cnTxt02 {
    margin: 0 0 80px 0;
}

.cnt2rc1 {width: 50%;}
.cnt2rc1 img {
    max-width: 100%;
}
.cnt2rc2 {
    padding: 0 0 0 60px;
    width: 50%;
    box-sizing: border-box;
}
.cnt2rc2 .section-header h2 {
    text-align: left;
    max-width: unset;
}
.cnt2rc2 .section-label {
    margin-bottom: 10px;
}

.cnFormBx {display: flex;flex-direction: row;flex-wrap: wrap;justify-content: flex-start;align-items: flex-start;gap: 18px 12px;}

.inFld {
    border: 1px solid #DDDDDD;
    width: 100%;
    height: 42px;
    border-radius: 4px;
    font-size: 13px;
    padding: 0 10px;
}

.fwd50 {width: calc(50% - 6px);box-sizing: border-box;}
.fwd100 {width: 100%;}

.frmSet label {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px 0;
    display: inline-block;
    vertical-align: middle;
}
.frmBtn {height: 42px; min-width: 180px;}
section.cnTxt03 {
    font-size: 0;
}

.sdText, .sdText p {font-size: 16px; color: #4C4C4C;}
.sdText h2 {font-size: 24px; color: #1E1E1E;     line-height: 26px;}
.sdText ul,
.sdText p {
    margin: 12px 0 0 0;
}
.sdText ul {list-style-position: inside;}
.sdText p + h2 {
    margin: 12px 0 0 0;
}
.sdRow {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.sdClm01 {
    max-width: 55%;
}

section.sdBox01 {
    padding: 70px 0;
}

.sdTxt2 p {
    color: #4C4C4C;
    font-size: 16px;
    margin: 12px 0 0 0;
}

.sdTxt1 {
    font-size: 32px;
    color: #1E1E1E;
    line-height: 34px;
}

.sdTxt3 {
    margin: 35px 0 0 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.sdBtnicns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 00 00 0 10px;
}

.sdBtnicns a {
    margin: 0 0 0 20px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}

button.callback-btn {
    height: 60px;
    border-radius: 30px;
    font-size: 20px;
    padding: 0 40px;
}

button.callback-btn img {
    height: 24px;
    width: 24px;
}

.sdClm02 img {
    border-radius: 6px;
}
.sdClm02 img {
    max-width: 100%;
}
.cnHtxt a {
    color: #1E1E1E;
}
.cnHtxt a:hover {
    color: #FF7200;
}
textarea.inFld {
    min-height: 80px;
    padding: 10px;
}
section.cta-section.srvPgeBx2 {
    padding-top: 0;
}








.smBox1 {
    padding: 60px 0;
}
.smBox1 .sdClm02 {
    max-width: 350px;
    width: 100%;
}
.smBox1 .sdRow {
    flex-direction: row-reverse;
    align-items: center;
}
.smBox1 .sdClm01 {
    max-width: unset;
    flex: 1;
    padding: 0 0 0 40px;
}
.smBox1 .sdTxt2 p {
    font-size: 14px;
}
.smBox1 button.callback-btn {
    height: 46px;
    font-size: 16px;
}
.smBox1 button.callback-btn img {
    height: 16px;
    width: auto;
}
.smBox1 h1.sdTxt1 {
    font-size: 24px;
}
section.smBox2 {
    padding: 50px 0;
    background: #f0f2f6;
}
ul.subSrvList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}
ul.subSrvList li {
    padding: 8px;
    width: calc(100% / 4);
    list-style: none;
}
a.ssname {
    display: flex;
    min-height: 250px;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    color: #fff;
    font-size: 26px;
    padding: 0 30px;
    text-align: center;
    font-weight: 500;
    line-height: 34px;
}
ul.subSrvList li:nth-child(odd) .ssname {
    background: #002364;
}
ul.subSrvList li:nth-child(even) .ssname {
    background: #FF7200;
}
a.ssftr {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 14px 20px;
    color: #000;
    font-size: 14px;
}
a.ssftr:after {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20style%3D%22transform%3A%20rotate(0deg)%20scale(1%2C%201)%3B%20transform-origin%3A%20center%20center%3B%22%3E%0A%3Cpath%20d%3D%22M13.7068%206.70659L8.7066%2011.7063C8.51284%2011.9031%208.25657%2012%208.00031%2012C7.74405%2012%207.48842%2011.9024%207.29341%2011.7071C6.90276%2011.3165%206.90276%2010.6837%207.29341%2010.2931L10.5879%207.00033H0.999995C0.447783%207.00033%200%206.55348%200%206.00039C0%205.4473%200.447783%205.00046%200.999995%205.00046H10.5879L7.29403%201.70692C6.90339%201.31632%206.90339%200.683549%207.29403%200.29295C7.68467%20-0.0976499%208.31752%20-0.0976499%208.70816%200.29295L13.7084%205.29262C14.0975%205.68479%2014.0975%206.316%2013.7068%206.70659Z%22%20fill%3D%22%23777777%22%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.smBox2 .section-label { justify-content: center;}


/*LOGIN POPUP -------------\/---------------*/
#callback-modal input, #callback-modal select, #callback-modal textarea,
#login-modal input {
  border: 1px solid #DDDDDD;
  width: 100%;
  height: 42px;
  border-radius: 4px;
  font-size: 13px;
  padding: 0 10px;
}
#callback-modal textarea {min-height: 80px;padding: 10px;}
#callback-modal form button,
#login-modal form button {
  background-color: #FF7200;
  color: #FFFFFF;
  border: none;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 50%;
  margin: 0 auto;
  display: block;
}
#callback-modal form button:hover,
#login-modal form button:hover {
  background-color: #e65a00;
}
#callback-modal .hystmodal__window,
#login-modal .hystmodal__window { border-radius: 8px; max-width: 460px; padding: 0 30px 30px; box-sizing: border-box; width: 90%;}
#callback-modal form,
#login-modal form {
    padding: 20px 0px 0px 0px;
}
#callback-modal h2,
#login-modal h2 {
    font-size: 20px;
    padding: 20px 0px 0 0px;
    color: #002364;
}
#callback-modal button.hystmodal__close,
#login-modal button.hystmodal__close {
    background-size: 16px;
}
#callback-modal form>div,
#login-modal form>div {
    margin: 0 0 15px 0;
}
#callback-modal form label, 
#login-modal form label {
    font-size: 14px;
    line-height: 14px;
    margin: 0 0 8px 0;
    display: inline-block;
}
/*LOGIN POPUP -------------/\---------------*/





.sdText li p {
    display: inline-block;
}

.sdText ul {
    margin: 0;
}

li.sl-has-subm>a {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22440%22%20height%3D%22238%22%20viewBox%3D%220%200%20440%20238%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20style%3D%22transform%3A%20rotate(0deg)%20scale(1%2C%201)%3B%20transform-origin%3A%20center%20center%3B%22%3E%0A%3Cpath%20d%3D%22M207.2%20232.371L6.05713%2031.2286C-1.25715%2023.9143%20-1.25715%2012.9429%206.05713%205.62857C13.3714%20-1.68572%2024.3428%20-1.68572%2031.6571%205.62857L220%20193.971L408.343%205.62857C415.657%20-1.68572%20426.629%20-1.68572%20433.943%205.62857C441.257%2012.9429%20441.257%2023.9143%20433.943%2031.2286L232.8%20232.371C229.143%20236.029%20225.486%20237.857%20220%20237.857C214.514%20237.857%20210.857%20236.029%20207.2%20232.371Z%22%20fill%3D%22%23ffffff%22%2F%3E%0A%3C%2Fsvg%3E");
    background-size: 10px;
    background-position: center right;
    background-repeat: no-repeat;
    padding-right: 16px;
}
.mNavBody {
    max-height: calc(100vh - 48px);
    overflow: auto;
}
.mNavHdr {
    border-bottom: 1px solid #e2e8f3;
}
.mobVdoBnr {display: none;}























/* 786 Responsive Design */
@media (max-width: 1200px) {
  .about-content {gap: 30px;}
  
  .services-list {
    gap: 40px;
    font-size: 12px;
  }
  
  .hero-title {
    font-size: 42px;
    line-height: 52px;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cnt2rc2 {padding: 0 0 0 20px;}
  .cnCard {padding: 50px 20px;}
  .srvData .services-grid { grid-template-columns: repeat(3, 1fr);}

}

@media (max-width: 768px) {
  .sdTxt1 {
      font-size: 24px;
      line-height: 28px;
  }
  .header {position: relative;}
  .services-bar {    padding: 15px 0;}
  .heroIn {
    text-align: center;
  }
  .mobNavBtn {display: block;}
  .services-bar,
  nav.navigation {
      display: none;
  }
  .hero-content {
      max-width: 100%;
  }
    .social-links {
      justify-content: center;
    }
    .footer-content {
      text-align: center;
    }
  .logo {
      flex: 1;
  }



  
  .nav-menu {
    gap: 20px;
  }
  
  .services-list {
    flex-wrap: wrap;
    gap: 20px;
    font-size: 10px;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 42px;
  }
  
  .features-grid {
    flex-direction: column;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .cta-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .help-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-cards-slider {
    gap: 15px;
  }

  ul.cnCardBx li {
    width: 100%;
    padding: 0 0px;
  }
  ul.cnCardBx {
    gap: 15px;
  }






  .cnt2rc1 {
    width: 100%;
    text-align: center;
    font-size: 0;
  }
  .cnt2rc2 {
      width: 100%;
      padding: 20px 0 0 0;
  }
  .cnt2r {
      flex-direction: column;
  }
  .cnt2rc2 .section-header h2 {
      text-align: center;
  }
  .cnt2rc2 .section-label {
      justify-content: center;
  }
  .cnt2rc2 .btnSet {
      text-align: center;
  }
  .smBox1 .sdRow,
  .sdRow {
    flex-direction: column;
  }

  .smBox1 .sdClm01 {padding: 0;}
  .sdClm01 {
      max-width: 100%;
      text-align: center;
      width: 100%;
  }

  .sdClm02 {
      text-align: center;
      width: 100%;
      margin: 30px 0 0 0;
  }

  .sdTxt3 {
      justify-content: center;
      margin: 20px 0 0 0;
      flex-direction: column;
  }

  .sdBtnicns {
      margin: 20px 0 00 0;
      gap: 20px;
  }

  .sdBtnicns a {
      margin: 0;
  }
 .srvData .services-grid { grid-template-columns: repeat(2, 1fr);}
  ul.subSrvList li {
    width: calc(100% / 3);
  }

  
}
@media screen and (max-width:767px) { /* 640 px */
    ul.subSrvList li {
    width: calc(100% / 2);
  }
  .abt1-content {
    flex-direction: column;
  }
  .abt1-text {
      text-align: center;
  }
  .service-item h3 {
    font-size: 20px;
    line-height: 26px;
  }
  
}
@media (max-width: 480px) {
   .srvData .services-grid { grid-template-columns: repeat(1, 1fr);}
  .service-cards, .cnTxt01, .abTxt01, section.sdBox01,
  .features, .about, .services, .cta-section {
    padding: 40px 0;
  }
  section.cnTxt02 {
    margin: 0 0 40px 0;
  }
  .services-grid {
    margin-bottom: 30px;
  }
  .about-content, .cta-section .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .top-bar {display: none;}
  .hero-title {
    font-size: 24px;
    line-height: 32px;
  }
  
  .feature-card,
  .service-item {
    padding: 30px 20px;
  }
  
  .help-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .service-card {
   padding: 12px;
       border-radius: 5px; border-width: 2px;
  }
  .service-card-content h4 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 0px;
  }
  .service-category {
    font-size: 12px;
  }

  .cnCard {
          padding: 30px 10px;
      }
  .cnHtxt {
      margin: 15px 0 0 0;
  }
  .cnHtxt h6 {
      font-size: 18px;
  }
  .cnHtxt p {
      font-size: 14px;
  }
  .fwd50 {
      width: 100%;
  }
  .cnIcon img {
      max-height: 40px;
  }

  .sdTxt2 p {
      font-size: 14px;
  }
  a.ssname {
      min-height: 200px;
      font-size: 20px;
      padding: 0 20px;
      line-height: 26px;
  }
  .mobVdoBnr {display: block;}
  .deskVdoBnr {display: none;}



}

@media screen and (max-width:479px) { /* 360 px */

    ul.subSrvList li {
        width: calc(100% / 1);
    }

}/* 360 px */
















/* Profile Section */
.profile-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 10px;
  display: flex;
  gap: 20px;
  min-height: 100vh;
}
.profile-section {
  flex: 0 0 450px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.profile-card {
  background-color: #f0f2f6;
  border-radius: 4px;
  padding: 30px;
  position: relative;
}




.profile-icon img {
  width: 33.39px;
  height: 35.75px;
}

.profile-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.profile-id {
  display: inline-block;
  background-color: #002364;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 8px 24px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.profile-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4c4c4c;
}

.profile-description strong {
  color: #1e1e1e;
}

/* Services Section */
.services-card {
  background-color: #f0f2f6;
  border-radius: 4px;
  border-top: 2px solid #cccfd4;
  padding: 30px;
}

.services-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #1e1e1e;
  margin-bottom: 20px;
}

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

.service-item2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
  position: relative;
}

.checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #bec1c8;
  border-radius: 2px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.checkbox.checked {
  background-color: #31ba45;
  border-color: #31ba45;
}

.check-icon {
  width: 10px;
  height: 7.76px;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}

/* Logout Section */
.logout-section {
  background-color: rgba(228, 90, 110, 0.1);
  border-radius: 4px;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.logout-section:hover {
  background-color: rgba(228, 90, 110, 0.15);
}

.logout-icon {
  width: 15.92px;
  height: 16px;
}

.logout-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #e45a6e;
}

/* Documents Section */
.documents-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.documents-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.documents-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #1e1e1e;
}

.year-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}

.year-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #1e1e1e;
}

.year-dropdown {
  background-color: #f0f2f6;
  border-radius: 4px;
  padding: 6px 12px 6px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #1e1e1e;
  border-color: #cccfd4;
}

.year-dropdown img {
  width: 11.66px;
  height: 6.42px;
}

/* Document Categories */
.document-category {
  background-color: #f0f2f6;
  border-radius: 4px;
  padding: 10px 20px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-icon {
  width: 35px;
  height: 34.7px;
  flex-shrink: 0;
}

.category-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.category-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #002364;
}

.category-tag {
  display: inline-block;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  color: #1e1e1e;
  padding: 0 12px;
  border-radius: 15px;
  width: fit-content;
}

/* Document Items */
.document-items {
  margin-bottom: 30px;
}
.document-item {
  background-color: #ffffff;
  border-bottom: 1px solid #cccfd4;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.document-icon {
  width: 24.38px;
  height: 32px;
  flex-shrink: 0;
}

.document-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.document-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #000000;
}

.document-date {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  color: #4c4c4c;
}

.download-btn {
  background-color: #ffffff;
  border: 2px solid #ff7200;
  border-radius: 30px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.download-btn:hover {
  background-color: #ff730028;
}

.download-btn img {
  width: 13.18px;
  height: 16px;
}

.download-btn span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ff7200;
  transition: color 0.3s ease;
}
.proIcArea {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 12px 0;
}
a.lgoutPro {
  display: none;
    background-color: rgba(228, 90, 110, 0.1);
    border-radius: 4px;    
    vertical-align: middle;
    font-size: 0;
    width: 40px;
    text-align: center;
    padding: 12px 0;
    border: 0;
}
.profile-icon {
    font-size: 0;
}






/* When the checkbox is checked, add a blue background */
.services-list2 input:checked ~ .checkbox {
    background-color: #31BA45;
    border-color: #31BA45;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%228%22%20viewBox%3D%220%200%2010%208%22%20fill%3D%22none%22%20style%3D%22transform%3A%20rotate(0deg)%20scale(1%2C%201)%3B%20transform-origin%3A%20center%20center%3B%22%3E%0A%3Cpath%20d%3D%22M3.8292%207.61531C3.73375%207.71133%203.6035%207.7649%203.46822%207.7649C3.33294%207.7649%203.20269%207.71133%203.10724%207.61531L0.224384%204.73197C-0.0747946%204.43279%20-0.0747946%203.94765%200.224384%203.64904L0.58536%203.28797C0.884634%202.98879%201.36921%202.98879%201.66839%203.28797L3.46824%205.0879L8.33161%200.224384C8.63089%20-0.0747946%209.11594%20-0.0747946%209.41464%200.224384L9.77562%200.585456C10.0748%200.884634%2010.0748%201.36969%209.77562%201.66839L3.8292%207.61531Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
    background-position: center;
    background-repeat: no-repeat;
}
label.service-item2 input {
    position: absolute;
    opacity: 0;
}



/* Responsive Design */
@media (max-width: 1440px) {

  
}

@media (max-width: 1200px) {

  .services-card,
  .profile-card {padding: 20px;}
  .logout-section {padding: 14px 20px;}
  .profile-description {
    font-size: 14px;
    line-height: 20px;
  }  
  .profile-section {
    flex: 0 0 30%;
  }  
  .documents-section {
    width: 100%;
  }

}

@media (max-width: 768px) {
  .profile-container {flex-direction: column; padding: 20px 10px;}
  .logout-section {display: none;}
  a.lgoutPro { display: inline-block; }

  .profile-section {gap: 20px;}
  
  .profile-card,
  .services-card {
    padding: 20px;
  }
  

  
  
  
  .download-btn {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {

  .documents-header {
    align-items: flex-start;    
    flex-direction: column;
  }
  .document-item {
    align-items: flex-start;
    gap: 8px;
  }
  .document-category {    padding: 10px 10px;}
  .profile-section {
    flex: none;
  }
  .category-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  button.download-btn span {
    font-size: 0;
    gap: 0;
  }

  button.download-btn {
      gap: 0;
      padding: 4px 14px;
  }
  .year-selector {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: end;
  }
  
  .service-item2 {
    font-size: 13px;
  }
  
  .category-header {
    align-items: flex-start;
  }
}


.ndImg img {
    max-height: 450px;
}
.noDataTxt {
    text-align: center;
}
.noDataTxt p span {
    background: #f0f2f6;
    padding: 10px 30px;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    color: #595959;
    border-radius: 10px;
}




.abtPageBx .abt1-image {
    max-width: 350px;
}
.abtPageBx .abt1-image img {
    height: auto;
}
@media screen and (max-width:767px) { /* 640 px */

  
    .abtPageBx .abt1-image {
        max-width: 100%;
    }



}/* 640 px */





/*

document.addEventListener('DOMContentLoaded', function() {
  // Year dropdown functionality
  const yearDropdown = document.querySelector('.year-dropdown');
  if (yearDropdown) {
    yearDropdown.addEventListener('click', function() {
      // Add dropdown functionality here
      console.log('Year dropdown clicked');
    });
  }

  // Download button functionality
  const downloadButtons = document.querySelectorAll('.download-btn');
  downloadButtons.forEach(button => {
    button.addEventListener('click', function() {
      const documentTitle = this.parentElement.querySelector('.document-title').textContent;
      console.log(`Downloading: ${documentTitle}`);
      // Add actual download functionality here
    });
  });

  // Logout functionality
  const logoutSection = document.querySelector('.logout-section');
  if (logoutSection) {
    logoutSection.addEventListener('click', function() {
      if (confirm('Are you sure you want to logout?')) {
        console.log('User logged out');
        // Add actual logout functionality here
      }
    });
  }

  // Service item interactions
  const serviceItems = document.querySelectorAll('.service-item');
  serviceItems.forEach(item => {
    item.addEventListener('click', function() {
      const checkbox = this.querySelector('.checkbox');
      if (checkbox && !checkbox.classList.contains('checked')) {
        // Optional: Allow checking/unchecking services
        console.log('Service item clicked:', this.querySelector('span').textContent);
      }
    });
  });
});


*/