:root {
  --primaryColor: #262874;
  --secondaryColor: #59bd74;
  --optionalColor: #91D089;
}

a.navbar-brand {
    max-width: 145px;
    position: absolute;
    top: 8px;
}
a.navbar-brand:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -5px;
    right: 0;
    margin: 0 auto;
    background: #fff;
    width: 125px;
    height: 125px;
    border-radius: 170px;
    z-index: -1;
}

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

li.menu-item-has-children a iconify-icon {
    position: absolute;
    font-size: 21px;
    top: 32px;
    right: -26px;
}
.menu>ul>li.menu-item-has-children {
    margin-right: 36px;
}


.menu>ul>li {
    margin-right: 28px;
}

.navbar-area.style-one {
    backdrop-filter: blur(5px);
}
.hero-slide-item.style-one .hero-content h1 {
        font-size: 56px !important;
        line-height: 74px !important;
        margin-bottom: 15px !important;
        color: #262874 !important;
    }
    .navbar-area.style-one .menu > ul > li > a {
        padding: 34px 0px;
    }

    .btn
    {
        overflow: inherit !important;
    }
   .btn.style-one .btn-text {
    height: 48px;
    padding: 5px 34px;
}
.btn.style-two .btn-text {
    background-color: #262874;
    color: #fff;
}
.btn .btn-icon-one, .btn .btn-icon-two {
    width: 48px;
    height: 48px;
        color: #fff;
}
.btn.style-two .btn-icon-one, .btn.style-two .btn-icon-two {
    background-color: #262874;
}   
.header-both-btn {
    display: flex;
    gap: 20px;
}

.header-both-btn a {
    border: 2px solid rgb(255 255 255 / 44%);
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 400;
    border: 2px solid rgb(2 50 81);
    color: #262874;
}

.header-both-btn a span {
    position: relative;
    top: 4px;
    margin-right: 4px;
    font-size: 18px;
}

.header-both-btn a:last-of-type {
    background: #59bd74;
    border-color: #59bd74;
    color: #fff !important;
    border-color: #59bd74 !important;
}
/* .btn.style-one .btn-icon-one, .btn.style-one .btn-icon-two {
    background-color: #262874;
        color: #fff;
} */
    /* .navbar-area.style-one.sticky {
        background-color: #ffffff;
    } */
    
.hero-slide-item.style-one:after {
   background:linear-gradient(90deg, rgb(255 255 255) 0%, rgb(255 255 255 / 12%) 63%, rgb(38 40 116 / 0%) 100%);
}
.hero-slide-item.style-one p {
    color: #000;
    font-size: 17px;
    margin-bottom: 10px;
}
.hero-slide-item.style-one p:last-of-type {
    margin-bottom: 55px;
}
/* ====== Sidebar Container ====== */
.fix-media {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
  transition: all 0.4s ease;
}

/* ====== List Style ====== */
.fix-media ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ====== Each Item ====== */
.fix-media ul li {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* ====== Icon Styling ====== */
.fix-media ul li iconify-icon {
  font-size: 22px;
}

/* ====== Tooltip ====== */
.fix-media ul li::after {
  content: attr(data-text);
  position: absolute;
  left: 50px;
  opacity: 0;
  background: #000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 0px 5px 5px 0px;
  white-space: nowrap;
  transition: all 0.3s ease;
  pointer-events: none;
  transform: translateX(-10px);
}
.fix-media ul li:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ====== Colors ====== */
.fix-media ul li:nth-child(1) { background: #3b5998; border-radius: 0 5px 0 0; }
.fix-media ul li:nth-child(2) { background: #E1306C; }
.fix-media ul li:nth-child(3) { background: #000000; }
.fix-media ul li:nth-child(4) { background: #e60023; }
.fix-media ul li:nth-child(5) { background: #0077b5; }
.fix-media ul li:nth-child(6) { background: #000; }
.fix-media ul li:nth-child(7) { background: #0000007a; border-radius: 0 0 5px 0; }
.fix-media ul li:nth-child(8) { background: #bcbcbc; border-radius: 0 0 5px 0; }

/* Tooltip background color */
.fix-media ul li:nth-child(1)::after { background: #3b5998; }
.fix-media ul li:nth-child(2)::after { background: #E1306C; }
.fix-media ul li:nth-child(3)::after { background: #000000; }
.fix-media ul li:nth-child(4)::after { background: #e60023; }
.fix-media ul li:nth-child(5)::after { background: #0077b5; }
.fix-media ul li:nth-child(6)::after { background: #000; }
.fix-media ul li:nth-child(7)::after { background: #0000007a;  }
.fix-media ul li:nth-child(8)::after { background: #bcbcbc; }

/* ====== Hide Mode ====== */
.fix-media.hide {
  left: -52px;
}

/* ====== Toggle Button ====== */
.toggle-btn {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: #444;
  color: #fff;
  padding: 8px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: 0.3s;
}
.fix-media ul li a {
  color: #fff;
}
.fix-media ul li:hover {
  border-radius: 0px;
}

/* ====== Responsive Styles ====== */
@media (max-width: 767px) {
  .fix-media.hide {
    left: -52px;
  }
  .toggle-btn {
    right: -30px;
    top: 40%;
    background: #444;
  }
}
.bannerbtn {
    display: flex;
    gap: 20px;
}

.bannerbtn a {
    max-width: 180px;
    border-radius: 7px;
    overflow: hidden;
}
.btn .btn-text {
    height: 48px;
    padding: 5px 30px;
}
.bg_secondary {
    background-color: #59bd74;
}
.service-area.style-three .section-shape {
    opacity: .8;
}
.promo-card.style-one span {
    color: #fff;
}

/* .bannerbtn a span {
    background: #fff;
    border-radius: 50px;
    padding: 9px 28px 9px 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bannerbtn a span iconify-icon {
    background: var(--secondaryColor);
    padding: 8px;
    border-radius: 50%;
    font-size: 20px;
} */
    .hero-slide-item.style-one .hero-content {
        padding-right: 0px !important;
        padding-left: 35px;
    }
    .about-img .img-container img {
    min-height: 280px;
    transform: inherit !important;
}
.about-area.style-three .about-content h6.last {
    margin-bottom: 0;
    padding-bottom: 5px;
}
.about-area.style-three .about-content h2.section-title.style-two.classFcolor {
    margin-bottom: 15px;
}
.ab-text {
    padding: 0px 0px 15px 60px;
}
    .about-area.style-three .about-content h6 {
        margin-left: 60px !important;
    }
    .service-card.style-three .service-info {
        padding: 20px 20px 26px 20px !important;
        position: relative;
        /* min-height: 142px; */
    }
    .service-card.style-three .service-info h3 {
    margin-bottom: 0;
    font-size: 20px;
}
    .service-card.style-three .service-img {
    height: 200px;
}
.service-card.style-three .service-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.service-info .btn .btn-text {
    height: 44px;
}
.service-info .btn .btn-icon-one, .service-info .btn .btn-icon-two {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.service-info .btn {
    width: 100%;
    margin-top: 10px;
}
.service-info .btn:hover .btn-text {
    margin-left: -42px;
}
.service-info h6 {
    font-weight: 600;
}
.service-area.style-three {
    padding-bottom: 50px;
}
.about-area.style-two .about-img-wrap img.about-img.move-left-two.\32 docterd {
    width: 100%;
    margin: auto;
    left: -130px !important;
    right: 0;
}
.about-img-wrap.about-img-wrap-over {
    border-radius: 20px !important;
}
.about-area.style-two .about-content .features-wrap .feature-img.feature-img-height {
    height: 180px;
}

.about-area.style-two .about-content .features-wrap .feature-img.feature-img-height img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.designnewbt a {
    background: #262874;
    color: #fff;
    padding: 6px 20px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.promo-card.style-one p {
        max-width: 65% !important;
        color: #fff;
        opacity: .9;
    }
    .about-area.style-two .about-content .about-card.designnewbt.bg_secondary h3 {
    color: #fff;
}

.about-area.style-two .about-content .about-card.designnewbt.bg_secondary p {
    color: #fff !important;
}
    .about-area.ourCommints {
    padding: 60px 0px;
}
.first-section {
    padding: 60px 0px;
}
p.footer-ptext {
    margin: 0;
}
p.footer-ptext {
    color: var(--grayColor);
    margin: 0;
}
.footer-widget .footer-menu li a {
    font-size: 17px;
    display: inline-block;
}
.career-heath-wrap {
    /* display: flex;
    gap: 24px;
    justify-content: space-between; */
    height: auto;
    width: 100%;
    /* padding-top: 30px; */
}
.footer-top {
    padding-top: 50px;
}

.career-heath-wrap .career-heath-box:first-of-type{
    padding-top: 10px;
}

.career-heath-box {
  display: flex;
    gap: 15px;
    border-radius: 14px;
    width: 100%;
    padding-top: 30px;
}
.career-heath-box-icon {
       height: 42px;
    width: 42px;
    background: #fff;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #262874;
}

.career-heath-box-content h3 {
      font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}

.career-heath-box-content p {
    color: var(--grayColor);
    margin: 0;
    font-size: 15px;
}

.career-heath-wrap .career-heath-box:last-of-type p {
    font-size: 14px;
}
.Alabama {
    height: 135px;
    width: 100%;
}

.Alabama img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
}
.footer-widget p b {
    color: #fff;
    font-weight: 600;
}

/* .footer-widget h3 {margin-bottom: 12px;} */

.promo-area .promo-bg.img-container img {
    transform: translate(0) !important;
}
.hero-bg.img-container img {
    transform: translate(0px) !important;
}

.promo-area .promo-bg.img-container{
    position: relative;
}

.promo-area .promo-bg.img-container:after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgb(0 37 44 / 81%) 0%, rgb(0 37 44 / 60%) 63%, rgb(0 37 44 / 90%) 100%);
    left: 0;
    top: 0;
}
.case-card.style-one .case-img img {
    height: 100%;
    object-fit: cover;
}
    .case-card.style-one .case-img {
        height: 470px;
        position: relative;
    }
    .ourprogrma-wrap {
    padding-top: 80px;
}
.case-card.style-one .case-img .case-counter {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 42px;
    background: #ffffffab;
    height: 70px;
    width: 70px;
    backdrop-filter: blur(10px);
    line-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
a.newdesignbtn {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    background: #262874;
    color: #fff;
    padding: 7px 8px 7px 18px;
    border-radius: 50px;
}

a.newdesignbtn iconify-icon {
    background: #fff;
    color: #262874;
    padding: 5px;
    border-radius: 50px;
    font-size: 18px;
}

.ab-text a.newdesignbtn {
    max-width: 255px;
    padding: 10px 20px;
    margin: 38px 0px;
    border-radius: 8px;
}
.ab-text a.newdesignbtn iconify-icon {
    background: transparent;
    color: #fff;
    padding: 0;
    border-radius: 0;
    font-size: 20px;
}

.promo-area.style-one .promo-box .promo-list li {
    margin-bottom: 28px;
}
.footer-area.style-one .footer-bottom {
    padding: 38px 0 28px 0px !important;
}
a.DiscoverMore {
    position: absolute;
    right: 18px;
    bottom: 24px;
    background: #262874;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

a.DiscoverMore iconify-icon {
    position: relative;
    top: 3px;
}

.progress-wrap::after{
    display: none;
}
div#progress-wrap iconify-icon {
    position: absolute;
    left: 10px;
    top: calc(50% - 13px);
    font-size: 26px;
    color: #000;
}
.blog-card.style-one .blog-img {
    height: 450px;
}
.blog-card.style-one .blog-img img {
    height: 100%;
    object-fit: cover;
}
.blog-card.style-one .blog-img img {
    height: 100%;
    object-fit: cover;
}

.blog-info {
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.blog-card:before {
    content: '''';
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    opacity: .5;
    background: linear-gradient(310deg, rgb(0 0 0) 50%, rgb(0 0 0 / 23%) 100%);
}
.blog-metainfo.style-one li a {
    color: #ffffff;
}
/* .text-title {
    color: #ffffff;
} */
    .blog-card h3 {
        margin-bottom: 5px;
    }
    .blog-card > a {
    position: absolute;
    z-index: 9;
    right: 18px;
    top: 18px;
    background: #fff;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.blog-card.style-one .blog-info .blog-metainfo {
    margin-bottom: 0px;
    font-size: 14px;
}
.blog-metainfo.style-one li a:hover {
    color: #ffff;
}
.blog-card h3 a.text-title.link-hover-primary {
    color: #fff;
}
.blog-card .link-hover-primary:hover {
    background-image: none;
    color: #fff !important;
}
.blog-info p {
    color: #e6e6e6;
    margin: 0;
    padding-top: 10px;
}
.blog-wrap {
    padding: 50px 0px;
}
span.maind {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
span.maind a {
    background: #262874;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 10px 20px;
    height: 48px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    gap: 25px;
}

span.maind a iconify-icon {
    font-size: 24px;
}
.fiend-morw {
    display: flex;
    gap: 20px;
}

.fiend-morw a.newdesignbtn {
    border: 2px solid #262874;
    font-weight: 600;
    justify-content: center;
    gap: 20px;
}

.fiend-morw a.newdesignbtn:last-of-type {
    background: #fff;
    border: 2px solid #262874;
    color: #262874;
    justify-content: center;
    min-width: 180px;
}
.fiend-morw a.newdesignbtn:first-of-type
{
    min-width: 148px;
}
.footer-area.style-one{
    position: relative !important;
}

/* Modern Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-overlay .popup-container {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(-30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s ease;
}

.popup-overlay.active .popup-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.popup-overlay .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #262874;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
}

.popup-overlay .popup-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #262874;
}

.popup-overlay .popup-close:active {
  transform: rotate(90deg) scale(0.95);
}

.popup-overlay .popup-content {
  padding: 50px 40px 40px;
  text-align: center;
}

.popup-overlay .popup-logo-wrapper {
  margin-bottom: 24px;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.popup-overlay .popup-logo {
  width: 125px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.popup-overlay .popup-logo-wrapper:hover .popup-logo {
  transform: scale(1.05);
}

.popup-overlay .popup-title {
  font-size: 2em;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 8px 0;
  line-height: 1.2;
  animation: slideInDown 0.6s ease 0.2s both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-overlay .popup-subtitle {
  font-size: 1.2em;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 30px 0;
  animation: slideInDown 0.6s ease 0.3s both;
}

.popup-overlay .popup-body {
  margin: 24px 0 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

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

.popup-overlay .popup-text {
  font-size: 1.05em;
  line-height: 1.7;
  color: #2c3e50;
  margin: 0;
  text-align: center;
}

.popup-overlay .popup-text strong {
  color: #1a252f;
  font-weight: 700;
}

.popup-overlay .popup-link {
  color: #2196F3;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.popup-overlay .popup-link:hover {
  color: #1976D2;
}

.popup-overlay .popup-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2196F3;
  transition: width 0.3s ease;
}

.popup-overlay .popup-link:hover::after {
  width: 100%;
}

.popup-overlay .popup-cta {
    background: #262874;
    color: white;
    border: none;
    padding: 14px 45px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    animation: fadeInUp 0.6s ease 0.5s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-overlay .popup-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(76, 175, 80, 0.4);
}

.popup-overlay .popup-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

/* Scrollbar Styling */
.popup-overlay .popup-container::-webkit-scrollbar {
  width: 8px;
}

.popup-overlay .popup-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.popup-overlay .popup-container::-webkit-scrollbar-thumb {
  background: #4CAF50;
  border-radius: 10px;
}

.popup-overlay .popup-container::-webkit-scrollbar-thumb:hover {
  background: #262874;
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-container {
    width: 95%;
    border-radius: 20px;
  }

  .popup-content {
    padding: 40px 24px 32px;
  }

  .popup-logo {
    width: 140px;
  }

  .popup-title {
    font-size: 1.5em;
  }

  .popup-subtitle {
    font-size: 1em;
  }

  .popup-text {
    font-size: 0.95em;
  }

  .popup-cta {
    padding: 14px 36px;
    font-size: 1em;
  }

  .popup-close {
    width: 40px;
    height: 40px;
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .popup-logo {
    width: 120px;
  }

  .popup-title {
    font-size: 1.3em;
  }

  .popup-subtitle {
    font-size: 0.9em;
  }

  .popup-cta {
    padding: 12px 32px;
    font-size: 0.95em;
  }
}

    .menu > ul > li.disablednsd{
    display: none;
}
    .navbar-area.style-one .menu-mobile-trigger span {
        background: #ffffff;
    }

  /* .theme-light .navbar-brand img.logo-dark{
    display: block !important;
  } */
  .navbar-area.style-one.position-relative.home-header img.logo-dark{
display: none !important;
  }

          .navbar-area.style-one.sticky {
        background-color: #fff;
    }
        .navbar-area.style-one.sticky .menu > ul > li > a {
        color: #000000;
    }
       .navbar-area.style-one.sticky .menu > ul > li > a.active, .navbar-area.style-one.sticky .menu > ul > li > a:hover {
        color: #000000;
    }

    .navbar-area.style-one.sticky .header-both-btn a {
    border: 2px solid #262874;
    color: #262874;
}

    .navbar-area.style-one.sticky  a.navbar-brand img{
      display: none;
    }

      .navbar-area.style-one.sticky  a.navbar-brand .logo-dark{
        display: block !important;
      }
      .navbar-area.style-one.sticky .menu-mobile-trigger span {
    background: #262874;
}
/* Default: show dark logo on inner pages */
.logo-dark { display: block; }
/* .logo-white { display: none; } */

/* Home page custom class */
.home-header .logo-white { display: block; }
.home-header .logo-dark { display: none; }

.inner-babber {
    padding: 60px 0px;
    background: #eaeaead6;
}

.breds{
   /* border-bottom: .5px solid rgb(0 0 0 / 5%);
   background-color: #fff; */
   height: auto;
   width: 100%;
}

.breds ul {
display: flex;
    gap: 10px;
    align-items: center;
    padding: 0;
    margin: 0;
    padding: 15px 0px;
    list-style-type: none;
    justify-content: center;
}

.breds ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
}
.breds ul li{
    color: #000;
    opacity: .8;
}

.breds ul li a iconify-icon {
    font-size: 18px;
    position: relative;
    top: 1px;
}

.comon-bredcrms h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #262874;
    margin-bottom: 2px;
}

.comon-bredcrms p {
    max-width: 60%;
    font-size: 15px;
    color: #000000;
    opacity: .9;
    margin: auto;
    text-align: center;
}

.bg_secondary.comon-bredcrms-wrap:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(380deg, #ffffff 26%, #26287400 100%);
    top: 0;
    left: 0;
    z-index: 1;
}
.comon-bredcrms-wrap {
    padding: 72px 0px;
    position: relative;
    height: 260px;
}
.comon-bredcrms-wrap img {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.comon-bredcrms {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-area.style-three .about-img-text.innvervalure {
    padding-top: 20px;
    margin-top: 40px;
}

.fullparagrph {
    padding-top: 10px;
}

/* .about-img-text.innvervalure a {
    background: #262874;
    color: #fff;
    padding: 6px 24px;
    border-radius: 8px;
    margin-top: 24px;
    display: inline-block;
} */
.about-area.ourCommints.style-two.whitebg {
    background: #fff;
}
.missin-inner-img {
    height: 600px;
    width: 100%;
    border-radius: 14px;
    position: relative;
}

.missin-inner-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.short-image {
    position: absolute;
    bottom: 30px;
    background: #ffffff38;
    padding: 16px;
    border-radius: 10px;
    left: 30px;
    backdrop-filter: blur(10px);
}

.short-image img {
    max-width: 180px;
    border-radius: 10px;
}

.short-image h6 {
    color: #fff;
    font-size: 17px;
}
.innermission .about-card h3 {
    font-size: 42px;
}

.reach-gole-wrap a {
    background: #262874;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 14px;
    display: inline-block;
}
.innermission .about-card h6 {
    font-size: 24px;
    padding-top: 24px;
}
.reach-gole-wrap {
    background: #f1f4ff;
    padding: 26px;
    border-radius: 12px;
    margin-top: 30px;
}

.reach-gole-wrap h3 {
    font-size: 34px !important;
    font-weight: 500;
}

.innermission {
  padding-right: 40px;
}
.ineerpage-program {
    height: auto;
    width: 100%;
}

.ineerpage-program .about-content {
    padding: 0 !important;
    padding-bottom: 25px !important;
    text-align: center;
}

.ineerpage-program .about-content h2 {
    text-transform: capitalize;
    font-size: 42px;
}

.ineerpage-program .service-card {
    background: #f1f4ff !important;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
}

.ineerpage-program .service-card img {
    border-radius: 0 !important;
}

.ineerpage-program .service-img.img-scale.position-relative {
    border-radius: 0;
    height: 230px;
}
.ineerpage-program .service-card.style-three .service-info {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.ineerpage-program .service-card.style-three .service-info h3 {
    padding-right: 50px;
    line-height: 30px;
}
.ineerpage-program .service-card .reach-gole-wrap {
    height: 362px;
    position: relative;
}

.ineerpage-program .service-card .reach-gole-wrap a {
    position: absolute;
    bottom: 26px;
    left: 26px;
}
.ns-content-flow-wrap {
    padding-top: 50px;
}
/* FAQ CARD */
.faq-card {
    border-radius: 10px;
    transition: 0.3s ease;
    background: #f1f4ffe3;
    padding: 16px 20px;
    margin-bottom: 18px;
    border: 1px solid #e4eaff;
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    gap: 20px;
}

.faq-header span {
    text-align: left;
}

.faq-header .arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: 0.3s;
}

.faq-card.active .arrow {
    transform: rotate(-135deg);
}

.faq-body {
    font-size: 15px;
    margin-top: 5px;
    display: none;
    color: #666;
    margin-bottom: 0;
}

.faq-card.active .faq-body {
    display: block;
}
.faq-card iconify-icon {
    height: 34px;
    width: 34px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 22px;
}

.about-content.certifiedsec .reach-gole-wrap h3 {
    font-size: 26px !important;
    line-height: 38px;
}

.about-content.certifiedsec .reach-gole-wrap {
    margin-top: 50px !important;
    position: absolute;
    bottom: 0;
    width: calc(100% - 50px);
    left: 0;
}
.about-content.certifiedsec {
    padding-right: 50px !important;
        height: 100%;
    position: relative;
}
.about-content.certifiedsec > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #262874;
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
}

.about-content.certifiedsec > a iconify-icon {
    font-size: 24px;
}
.about-content.heddingfields h5 {
    padding-top: 15px;
}
.forcontent-flw{
  background: linear-gradient(360deg,rgba(242, 242, 242, 0.78) 26%, rgba(255, 255, 255, 1) 100%);
}
.forcontent-flw .about-img .img-container img {
    height: 320px !important;
}
.forcontent-flw .about-content.certifiedsec p {
    line-height: 32px;
}
.ns-content-flow ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.ns-content-flow ul li {
    line-height: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ns-content-flow ul li iconify-icon {
    font-size: 20px;
    color: #59bd74;
}
.enroll-wrapp {
    padding: 60px 0px;
}

.enroll-text h2 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 600;
}

.enroll-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding-bottom: 10px;
}

.enroll-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 38px;
    color: #222;
}

.enroll-text p span {
    text-decoration: underline;
    color: #222;
}

.download-section {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #ddd;
    position: sticky;
    top: 120px;
}

.download-section p span {
    color: #222;
    font-size: 17px;
    font-weight: 600;
}

.download-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.download-section ul li .pdf-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-section {}

.pdficon-wraps {
    align-items: center;
    display: flex;
    gap: 12px;
}

.pdficon {
    height: 46px;
    width: 46px;
    background: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #dddddd8c;
    font-size: 22px;
}

.pdf-text h6 {
    font-size: 15px;
    margin-bottom: 0px;
}

.pdf-text p {
    margin: 0;
    font-size: 13px;
    line-height: 22px;
}

.download-section ul li {
    margin-top: 15px;
    border: 2px solid #dddddd54;
    padding: 10px 12px;
    border-radius: 10px;
}

.pdfdownload a {color: #262874;font-size: 24px;}














.enroll-form .container {
        max-width: 1000px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        padding: 0;
    }

    .form-header {
    background: linear-gradient(135deg, #262874 0%, #1e40af 100%);
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    }

    .form-header h2 {
       font-size: 26px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
    }

    .form-header p {
       font-size: 16px;
    margin: 0;
    opacity: .8;
    }

    .form-content {
        padding: 24px;
    }

    .alert-info {
        background: #dbeafe;
        border-left: 4px solid #262874;
        padding: 16px 20px;
        margin-bottom: 30px;
        border-radius: 8px;
        font-size: 14px;
        color: #1f2937;
    }

    .alert-info strong {
        display: block;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .section-header {
        background: #f3f4f6;
        padding: 16px 24px;
        margin: 40px -40px 30px -40px;
        border-left: 4px solid #262874;
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .section-header:first-of-type {
        margin-top: 0;
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-bottom: 24px;
    }

    .form-row.single {
        grid-template-columns: 1fr;
    }

    .form-row.triple {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 8px;
        display: flex;
        align-items: baseline;
        gap: 8px;
        line-height: 24px;
    }

    .form-group label i {
        color: #262874;
        font-size: 16px;
    }

    .required {
        color: #ef4444;
        font-weight: 700;
    }

    .input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .input-icon {
        position: absolute;
        left: 16px;
        color: #6b7280;
        pointer-events: none;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        background: #ffffff;
        color: #1f2937;
        font-weight: 500;
    }

    .form-control.with-icon {
        padding-left: 44px;
    }

    .form-control:focus {
        outline: none;
        border-color: #262874;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .form-control::placeholder {
        color: #6b7280;
    }

    select.form-control {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 44px;
    }

    .radio-group {
        display: flex;
        gap: 20px;
        margin-top: 8px;
    }

    .radio-option {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .radio-option input[type="radio"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #262874;
    }

    .radio-option label {
        margin: 0;
        font-weight: 500;
        cursor: pointer;
    }

    .file-upload {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        border: 2px dashed #e5e7eb;
        border-radius: 8px;
        background: #f3f4f6;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .file-upload:hover {
        border-color: #262874;
        background: #eff6ff;
    }

    .file-upload input[type="file"] {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .file-upload-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        pointer-events: none;
    }

    .file-upload-content i {
        font-size: 32px;
        color: #262874;
    }

    .file-upload-content .file-name {
        font-size: 14px;
        color: #1f2937;
        font-weight: 500;
    }

    .file-upload-content .file-hint {
        font-size: 12px;
        color: #6b7280;
    }

    .file-upload.has-file {
        border-color: #10b981;
        background: #f0fdf4;
    }

    .file-upload.has-file .file-upload-content i {
        color: #10b981;
    }

    .info-box {
        background: #fef3c7;
        border-left: 4px solid #f59e0b;
        padding: 16px 20px;
        border-radius: 8px;
        margin: 24px 0;
        font-size: 14px;
        line-height: 1.7;
    }

    .signature-pad {
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        background: #ffffff;
        cursor: crosshair;
        display: block;
        width: 100%;
        height: 150px;
    }

    .signature-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 8px;
    }

    .btn-clear {
        padding: 8px 16px;
        background: #ffffff;
        color: #ef4444;
        border: 1px solid #ef4444;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-clear:hover {
        background: #ef4444;
        color: #ffffff;
    }

    .recaptcha-wrapper {
        display: flex;
        margin: 15px 0;
    }

    .btn-submit {
        width: 100%;
        padding: 12px 32px;
        background:#262874;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    @media (max-width: 768px) {

        .form-content {
            padding: 24px;
        }

        .section-header {
            margin-left: -24px;
            margin-right: -24px;
            font-size: 16px;
        }

        .form-header h1 {
            font-size: 24px;
        }

        .form-row, .form-row.triple {
            grid-template-columns: 1fr;
        }
    }

    .phone-input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .phone-input-wrapper .country-code {
        position: absolute;
        left: 16px;
        color: #6b7280;
        font-size: 14px;
        pointer-events: none;
    }

    .phone-input-wrapper .form-control {
        padding-left: 48px;
    }

    .checkbox-agreement {
        display: none;
    }

    .agreement-text {
        background: #f3f4f6;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #262874;
        font-size: 14px;
        line-height: 1.8;
        margin: 20px 0;
        color: #1f2937;
    }

    .agreement-text p {
        margin-bottom: 12px;
    }

    .agreement-text p:last-child {
        margin-bottom: 0;
    }
    .enroll-form {
    padding-top: 24px;
}
.alert-info p {
    margin: 0;
}
.info-box p {
    margin: 0;
}
.about-area.style-three .about-content.certificationpage {
    border: none;
}

.allctrns {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.allctrnsimg {
    width: 16%;
    height: 80px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.allctrnsimg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.phone-input-wrapper .iti {
    width: 100%;
}
.form-header.moreheader {
    background: #ffff;
    text-align: left;
}

.form-header.moreheader h2 {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.form-header.moreheader h2 br {
    display: none;
}
.cashapp-wrap {
    display: flex;
    gap: 20px;
}

.cashapp-wrap button.btn-submit:first-of-type {
    background: #dddddd75;
    color: #222;
    text-transform: capitalize;
    border: 2px solid #ddd;
}

.cashapp-wrap button.btn-submit:last-of-type {
    background: #ffc439;
}

.totelpay h6 {
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 0;
}

.totelpay h6 span {
    font-weight: 700;
}

.form-content p {
    margin-bottom: 6px;
}

.otherpayment-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 20px;
}

.card-img {width: 50px;height: auto;cursor: pointer;}

.card-img img {
    height: 100%;
    width: 100%;
}

.btn-submit img {
    max-width: 65px;
}
.popup-content .form-row {justify-content: space-between;display: flex;gap: 15px;margin: 12px 0px;}

.popup-content .form-row .form-group.half {
    width: 100%;
}

.popup-overlay .popup-content.newdesogn {
    padding: 35px;
}

.popup-overlay .popup-content.newdesogn .popup-body {
    margin-bottom: 12px;
}

.popup-overlay .popup-content.newdesogn >  span {
    font-size: 14px;
    display: block;
    line-height: 22px;
    margin-bottom: 24px;
}

.popup-overlay .popup-content.newdesogn h2.popup-subtitle {
    margin: -35px -35px 0px -35px;
    background: #f3f3f3;
    padding: 16px 35px;
    text-align: left;
}
.popup-container.newonepop p {
    text-align: left;
    color: #222;
    font-weight: 500;
}
.popup-container.newonepop button#closePopup {
    height: 34px;
    width: 34px;
    top: 10px;
}
.popup-content.newdesogn .otherpayment-section {
    padding-top: 15px;
}

.popup-content.newdesogn .otherpayment-section .card-img {
    width: 46px;
}

.popup-content.newdesogn .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 49px;
    user-select: none;
    -webkit-user-select: none;
    margin: 0 !important;
    text-align: left;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
}
.popup-content.newdesogn .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 44px;
    padding-left: 15px;
}
.popup-content.newdesogn  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
}
.totelpay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
}

.totelpay p {
    margin: 0;
}
.custom-check-wrap {
    padding: 12px 15px;
    background: #eaf3ff;
    border-radius: 6px;
    border-left: 4px solid #2563eb;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #2563eb;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.custom-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 4.5px;
    top: 0.5px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox p {
    margin: 0;
    font-size: 14px;
    color: #1f2937;
    line-height: 1.5;
}

.custom-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}
button.btn-submit.carrers {
    max-width: 180px;
}

.carrers-btns {
    text-align: right;
}
.blogpage-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blogpage-wrap .blog-card {
    width: calc(33.33% - 20px);
}

.pagination ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    justify-content: center;
}
.pagination ul li{
  color: #262874;
  list-style: none;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.pagination ul li.numb{
  list-style: none;
  height: 45px;
  width: 45px;
  margin: 0 3px;
  line-height: 45px;
  border-radius: 50%;
}
.pagination ul li.numb.first{
  margin: 0px 3px 0 -5px;
}
.pagination ul li.numb.last{
  margin: 0px -5px 0 3px;
}
.pagination ul li.dots{
  font-size: 22px;
  cursor: default;
}
.pagination ul li.btn{
  padding: 0 20px;
  border-radius: 50px;
}
.pagination li.active,
.pagination ul li.numb:hover,
.pagination ul li:first-child:hover,
.pagination ul li:last-child:hover{
  color: #fff;
  background: #262874;
}
.plog-detail-page {
    padding: 60px 0px;
}
.rp-post-card .rp-post-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.rp-post-card .rp-post-img {
    width: 100px;
    height: 100px;
}
.blog-metainfo.style-two li {
    padding-left: 0;
}
.blog-metainfo.style-two li iconify-icon {
    font-size: 20px;
    position: relative;
    top: 3px;
    color: #262874;
}
.rp-post-card .rp-post-info .post-date {
    padding-left: 0;
}
.rp-post-card .rp-post-info .post-date iconify-icon {
    font-size: 18px;
    position: relative;
    top: 3px;
}
.single-para p a {
    text-decoration: underline;
    color: #000;
}
.leave-comment {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
}

.leave-comment h4.section-title.style-two {
    font-size: 28px;
    line-height: 30px;
}
button.post-comments {
    background: #262874;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
}

.carrers-btns-more {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding-top: 24px;
}

.carrers-btns-more .carrers-btns button {margin: 0;background: #ffc439;min-width: 200px;}

.carrers-btns-more .otherpayment-section {
    padding: 0;
}

.team-card .team-img {
    height: 450px;
    width: 100%;
}

.team-card .team-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contect-info {
    display: inline-flex;
    padding: 12px 0px;
    border-radius: 10px;
    width: 100%;
    gap: 15px;
}
.contect-info-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.contect-info-icon {
   min-width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #262874, #262874);
    color: #fff;
    font-size: 22px;
    width: 48px;
    margin-bottom: 10px;
}

.about-area.style-three .about-content .contect-info-text h6 {
    margin: 0 !important;
    font-size: 18px;
    line-height: 24px;
}

.contect-info-text p {
    margin: 0;
}

.contect-info-text p a {
    color: #4a4a4a;
}
.about-area.style-three .about-content.heddingfields.removepadd-br {
    padding: 0;
    border: none;
}
.privacypage .ns-content-flow ul {
    padding-bottom: 24px;
}
.programmenu{
  display: none;
}

/* new changes 23/12/2025 */

.service-area.style-three.position-relative.first-section h6 {
    color: #fffffff0;
}

.service-area.style-three.position-relative.first-section h2.text-title {
    color: #fffffff0;
}
.ab-text a.newdesignbtn:last-of-type iconify-icon {
    color: #262874;
}
.footer-widget .footer-menu li a {
    color: #eaeaea;
}
.career-heath-box-content p a {
                color: #eaeaea !important;
}
.hero-slide-item.style-one .stat-card.style-three {
    background: radial-gradient(97.57% 210.75% at 0.9% 2.98%, rgb(108 108 108 / 40%) 0%, rgb(0 0 0 / 10%) 100%);
}
.menu > ul > li .menu-subs {
    background: #59bd74 !important;
}
    /* .navbar-area.style-one ul li a{
        color: #ffffff !important;
    } */

    .menu > ul > li .menu-subs li a {
    color: #fff !important;
}
.hero-slider-one .hero-pagination .swiper-pagination-current {
  
    color: var(--primaryColor);
}
.hero-slide-item.style-one .hero-para p{
    color:  var(--primaryColor) !important;
}
ul#menu-primary-menu {
    padding-left: 100px !important;
}
.navbar-area.style-one.sticky a.navbar-brand:before {
    display: none;
}

.navbar-area.style-one.sticky a.navbar-brand {
    position: relative;
    top: 0;
    max-width: 226px;
}
ul#menu-primary-menu {
    padding-left: 0 !important;
}
.footer-img-wrap {
    display: flex;
    gap: 30px;
    width: 100%;
    padding-top: 25px;
}

.footer-img-box {
    width: 315px;
    height: 230px;
    border: 5px solid #59bd74;
}

.footer-img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
     .navbar-area.style-one {
            background-color: #262874;
    }
      .navbar-area.style-one .menu > ul > li > a {
    color: var(--whiteColor);
  }
      .navbar-area.style-one .menu > ul > li > a.active, .navbar-area.style-one .menu > ul > li > a:hover {
        color: var(--secondaryColor);
    }
    .header-both-btn a {
    border: 2px solid rgb(255 255 255 / 44%);
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 400;
}
@media (max-width: 1080px) {
      .navbar-area.style-one .menu-mobile-trigger span {
        background: #fff;
    }  
}

.team-card ul {
    margin: 0;
    padding-left: 10px;
}

.team-card ul li {
    display: flex;
    align-items: center;
    list-style-type: none;
    line-height: 32px;
    gap: 5px;
    color: #000;
}

.team-card ul li iconify-icon {
    font-size: 14px;
}
.first-section .service-card.style-three {
    min-height: 342px;
}

/* date 05/01/2026 */
 
/* RIGHT SIDE */

.cu-form {

    background: #ffffff;

    padding: 40px;

    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.06);

    padding: 32px;

    width: 100%;

}
 
.cu-form h3 {

    font-size: 24px;

    margin-bottom: 25px;

    color: #222;

}
 
.cu-field {

    margin-bottom: 18px;

}
 
.cu-field input,

.cu-field textarea {

    width: 100%;

    padding: 10px 14px;

    border-radius: 8px;

    border: 1px solid #ddd;

    font-size: 14px;

    outline: none;

    transition: 0.3s;

}
 
.cu-field textarea {

    height: 100px;

    resize: none;

}
 
.cu-field input:focus,

.cu-field textarea:focus {

    border-color: #262874;

}
 
.cu-btn {

    width: 100%;

    padding: 14px;

    background: linear-gradient(135deg, #262874, #262874);

    color: #fff;

    border: none;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 500;

    cursor: pointer;

    transition: 0.3s;

}
 
.cu-btn:hover {

    opacity: 0.9;

}

.contect-info-wrapper-outs {

    display: flex;

    gap: 30px;

    padding-top: 20px;

}
 
.contect-info-wrapper-outs .contect-info-wrapper {

    width: 100%;

}

.contect-info-wrapper {

    flex-direction: column;

}

.cu-field label {

    font-size: 14px;

    padding-bottom: 8px;

}

.cu-field-wrap {

    display: flex;

    gap: 20px;

}

.contect-info {

    display: block;

    padding: 20px 0px;

}

.contect-info-icon {

    margin-bottom: 12px;

}
 
.contact-card-wrapper {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 24px;

    width: 50%;

}
 
/* CARD */

.contact-card {

    padding: 24px;

    background: #ffffff;

    border-radius: 16px;

    transition: 0.35s ease;

    position: relative;

    overflow: hidden;

}

/* ICON */

.contact-card-icon {
min-width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #262874, #262874);
    color: #fff;
    font-size: 22px;
    width: 48px;
    margin-bottom: 10px;
}
 
/* TEXT */

.contact-card-text {

    z-index: 1;

}
 
.about-area.style-three .about-content h6 {

    font-size: 22px;

    font-weight: 600;

    color: #222;

    margin: 12px 0px 0px 0px !important;

}
 
.contact-card-text p {

    margin: 0;

    font-size: 16px;

    line-height: 1.6;

}
 
.contact-card-text a {

    color: #555;

    text-decoration: none;

    transition: 0.3s;

}
 
.contact-card-text a:hover {

    color: #262874;

}

.cu-field-wrap .cu-field {

    width: 100%;

}
 
/* RESPONSIVE */

@media (max-width: 767px) {

   .contect-info-wrapper-outs {

    flex-wrap: wrap;

}

.contact-card-wrapper {

    width: 100%;

}

.cu-field-wrap {

    gap: 0;

    flex-wrap: wrap;

}

.contact-card-text p {

    font-size: 14px;

}

}

 