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

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Erode-Semibold';
    src: url('../fonts/Erode-Semibold.woff2') format('woff2'),
        url('../fonts/Erode-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Erode-Medium';
    src: url('../fonts/Erode-Medium.woff2') format('woff2'),
        url('../fonts/Erode-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4{
    font-family: 'Erode-Semibold';
}

a, li{
    font-family: 'Poppins-Regular';
    text-decoration: none;
}

p{
    font-family: 'Poppins-Regular';
    color: #656565;
    font-size: 16px;
}

:root {
  --primary-color: #003472;
  --secondary-color: #00869D;
  --primary-light: #e8eef7;
  --secondary-light: #e0f4f7;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
  --white: #ffffff;
  --bg-light: #f7f9fc;
}

/* header-section */
.navbar-sec {
  position: relative;
  width: 100%;
  background: #fff;
  box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
	z-index: 999;
	transition: top .4s ease;
}

/* Sticky State */
.navbar-sec.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown .4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

@keyframes slideDown{
    from{
        transform: translateY(-100%);
    }
    to{
        transform: translateY(0);
    }
}

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

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

.navbar-links>ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar-links ul li {
  list-style: none;
	position:relative;
}

.navbar-links ul li a {
  color: #000;
  font-family: 'Poppins-Regular';
  transition: all 0.3s ease;
}

.navbar-links ul li a:hover {
  color: var(--secondary-color);
}

.navbar-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

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

.navbar-btn i {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar-btn a {
  padding: 6px 22px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar-btn a:hover {
  background: var(--secondary-color);
}

/* Dropdown */
.navbar-links ul li .custom-dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    background:#fff;
    padding:10px;
    margin:0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .3s ease;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    border-radius:10px;
    z-index:999;
}

/* Hover Open */
.navbar-links ul li.menu-item-has-children:hover > .custom-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Dropdown Links */
.navbar-links ul li .custom-dropdown li{
    width:100%;
}

.navbar-links ul li .custom-dropdown li a{
    display:block;
    background:var(--secondary-color);
    color:#fff;
    padding:12px 15px;
    margin:4px 0;
    border-radius:6px;
    font-size:14px;
    transition:.3s;
}

.navbar-links ul li .custom-dropdown li a:hover{
    padding-left:20px;
    color:#fff;
}

.menu-item-has-children > a::after{
    content:"\f078";
    font-family:"Font Awesome 7 Free";
    font-weight:900;
    margin-left:8px;
    font-size:12px;
    transition:.3s;
}

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


/* hero-section */
.hero-sec {
  position: relative;
}

.hero-bg {
  position: relative;
  width: 100%;
  background-image: url('images/hero-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 550px;
}

.hero-text {
/*   padding-top: 120px; */
  width: 100%;
  text-align: center;
  z-index: 99;
  position: relative;
}

.hero-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.hero-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
  color: #fff;
}

.hero-text h3 {
  font-size: 50px;
  color: #fff;
}

.hero-text h3 span {
  color: var(--secondary-color);
}

.hero-text p{
  color: #fff;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.hero-fill-btn a {
  padding: 6px 22px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.hero-border-btn a {
  padding: 6px 22px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-border-btn a:hover {
  border: 1px solid transparent;
  background: var(--secondary-color);
  color: #fff;
}

.hero-tab-content{
    position: fixed;
    top: 50%;
    right: -160px;
    transform: translateY(-50%);
    width: 140px;

    background: linear-gradient(135deg,#0f172a,#06b6d4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px 0 0 30px;
    padding: 15px 10px;
    text-align: center;
    z-index: 999;

    transition: all .45s ease;
}

.hero-tab-content.active{
    right: 0;
}

/* Toggle Button */

.hero-tab-toggle{
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 42px;
    height: 70px;

    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    font-size: 22px;
    z-index: 1000;

    transition: .3s;
}

.hero-tab-toggle:hover{
    background: var(--primary-color);
}

.hero-tab-toggle i{
    transition: transform .3s ease;
}

.hero-tab-content.active + .hero-tab-toggle i{
    transform: rotate(180deg);
}

/* Existing */

.hero-locate{
    margin:12px 0;
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.25);
}

.hero-locate:last-child{
    border-bottom:none;
}

.hero-locate img{
    width:22px;
}

.hero-locate h4{
    margin-top:5px;
    line-height:16px;
}

.hero-locate h4 a{
    font-size:14px;
    color:#fff;
}

/* Mobile */

@media(max-width:768px){

    .hero-tab-content{
        width:130px;
        right:-150px;
        padding:12px 8px;
    }

    .hero-tab-toggle{
        width:38px;
        height:60px;
        font-size:20px;
    }

    .hero-locate h4 a{
        font-size:13px;
    }
}

/* about-section */
.about-sec {
  margin-bottom: 60px;
}

.padd {
  padding: 60px 0;
}

.pb-6{
	padding-bottom: 60px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.title {
  font-size: 40px;
  color: var(--primary-color);
}

.title span {
  color: var(--secondary-color);
}

.about-btn a {
  padding: 6px 22px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-btn a:hover {
  background-color: var(--secondary-color);
}

/* service-section */
.service-sec {
  position: relative;
  background: var(--primary-color);
  z-index: 1;
}

.service-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
  color: #fff;
}

.service-text {
  width: 84%;
}

.service-text h2 {
  font-size: 40px;
  color: #fff;
}

.service-text h2 span {
  color: var(--secondary-color);
}

.service-box {
  padding: 20px 14px;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s ease;
  min-height: 280px;
  height: 100%;
  width: 95%;
  margin: auto;
}

.service-box:hover {
  background: var(--secondary-color);
}

.service-icon-text {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.service-icon-text img {
  width: 45px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(33%) sepia(96%) saturate(1608%) hue-rotate(157deg) brightness(95%) contrast(101%);
  transition: all 0.3s ease;
}

.service-box:hover .service-icon-text img {
  filter: brightness(0) invert(1);
}

.service-icon-text h4 {
  margin-bottom: 0;
  font-size: 24px;
  transition: all 0.3s ease;
}

.service-box:hover .service-icon-text h4 {
  color: #fff;
}

.service-box p {
  transition: all 0.3s ease;
}

.service-box:hover p {
  color: #fff;
}

.service-btn a {
  padding: 6px 22px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.service-btn a:hover {
  background-color: #000;
}

/* Slider Parent */
.service-slider-content {
  position: relative;
}

/* Dots Container */
.service-slider .slick-dots {
  position: absolute;
  left: -16px;
  /* apne layout ke hisab se adjust karo */
  top: 46%;
  transform: translateY(-50%);

  display: flex !important;
  flex-direction: column;
  gap: 12px;

  width: auto;
  bottom: auto;
}

/* Dot li */
.service-slider .slick-dots li {
  width: 30px;
  height: 1px;
  margin: 10px 0;
}

/* Remove Default Slick Dot */
.service-slider .slick-dots li button:before {
  display: none;
}

/* Pill Shape */
.service-slider .slick-dots li button {
  width: 6px;
  height: 30px;
  padding: 0;
  border-radius: 50px;
  background: #fff;
  transition: all .3s ease;
}

/* Active Pill */
.service-slider .slick-dots li.slick-active button {
  background: var(--secondary-color);
  width: 6px;
}

.service-corner-box {
  position: absolute;
  top: -80px;
  right: 140px;
  z-index: -1;
}

.service-corner-box img {
    width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* counter-section-start */
.conter-box {
  background: #fff;
  padding: 20px;
  position: relative;
}

/* Top Left Corner */
.conter-box::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
}

/* Bottom Right Corner */
.conter-box::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 24px;
  height: 24px;
  border-bottom: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
}

.conter-box h3 {
  color: var(--secondary-color);
  font-size: 34px;
  margin-bottom: 0px;
}

.conter-box h4 {
  text-transform: uppercase;
  font-size: 22px;
}

/* why-choose-section */
.why-choose-sec {
  background: #f7f9fb;
}

.why-choose-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.why-choose-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.why-choose-btm-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-choose-btn a {
  padding: 6px 22px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.why-choose-btn a:hover {
  background: var(--secondary-color);
}

.why-choose-box {
  background-color: #E5EBF1;
  padding: 20px 14px;
  border-radius: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--primary-color);
  height: 100%;
}

.why-choose-box:hover {
  background: var(--secondary-color);
  border-bottom: 4px solid transparent;
}

.why-choose-img {
  background-color: var(--secondary-color);
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.why-choose-box:hover .why-choose-img {
  background-color: #fff;
}

.why-choose-img img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.why-choose-box:hover .why-choose-img img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(94%) saturate(2743%) hue-rotate(208deg) brightness(92%) contrast(103%);
}

.why-choose-box h4 {
  color: var(--primary-color);
}

.why-choose-box:hover h4 {
  color: #fff;
}

.why-choose-box p {
  transition: all 0.3s ease;
}

.why-choose-box:hover p {
  color: #fff;
}

/* testimonial-section */
.testimonial-sec {
  position: relative;
  width: 100%;
  background-image: url('images/testimonial-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-box {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
}

.testimonial-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.testimonial-btn a {
  padding: 6px 22px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonial-btn a:hover {
  background: var(--secondary-color);
}

.profile-name {
  position: relative;
}

.profile-name img {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  border: 6px solid #fff;
  margin-left: 50px;
  margin-bottom: -36px;
}

.profile-text h6 {
  background: var(--secondary-color);
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  border-radius: 50px;
  font-family: 'Poppins-Regular' !important;
  border: 6px solid #fff;
  font-size: 14px;
}

.profile-text h4 {
  font-size: 34px;
  color: var(--secondary-color);
}

.profile-text p {
  color: #C4C1B7;
}

.testimonial-profile-box {
  display: flex !important;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #C4C1B7 !important;
}

.testimonial-profile-box:last-child {
  border-bottom: none !important;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.contact-img {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 20px;
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-img img:hover {
  transform: scale(1.1);
  filter: brightness(80%);
}

.contact-right-box {
  padding: 30px;
  border-radius: 20px;
  background-color: #E5EBF1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

form.quote-form {
  margin-top: 16px;
}

.quote-form label {
  display: block;
  margin-bottom: 6px;
  color: #0D3B66;
  font-size: 17px;
  font-weight: 500;
  font-family: 'Erode-Medium' !important;
}

.quote-form .form-control {
  height: 40px;
  border-radius: 30px;
  border: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: none;
  padding: 12px 20px;
}

.quote-form textarea.form-control {
  height: 120px;
  resize: none;
  border-radius: 20px;
  padding-top: 15px;
}

.quote-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  border: none;
  border-radius: 30px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  padding: 6px 22px;
  font-family: 'Erode-Medium' !important;
}

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

/* logo-section */
.logo-sec {
  padding-bottom: 60px;
}

.logo-img {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.logo-img img {
width: 110px;
    height: 90px;
    display: block;
    object-fit: fill;
}

/* footer-section */
.footer-sec {
  background: #E5EBF1;
  padding-top: 60px;
  padding-bottom: 50px;
}

.footer-img img {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icons i {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-social-icons i:hover {
  background: var(--secondary-color);
  color: #fff;
  border: 1px solid transparent;
}

.quick-links h4 {
  font-size: 24px;
  color: var(--primary-color);
  text-decoration: underline;
}

.quick-links ul li {
  color: #656565;
  padding: 2px 0;
}

.quick-links ul li a {
  color: #656565;
  font-size: 16px;
  transition: all 0.3s ease;
}

.quick-links ul li a:hover {
  color: var(--primary-color);
}

.quick-links.contact-det a {
  color: #656565;
  font-size: 16px;
  transition: all 0.3s ease;
}

.quick-links.contact-det a:hover {
  color: var(--primary-color);
}

.quick-links {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #C4C1B7;
}

.quick-links.contact-det {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer-links-btm {
  width: 80%;
  margin-left: auto;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #C4C1B7;
}

.footer-links-btm ul {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  justify-content: space-between;
}

.footer-links-btm ul li {
  list-style: none;
  padding-left: 20px;
}

.footer-links-btm ul li a {
  color: var(--secondary-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-links-btm ul li a:hover {
  color: var(--primary-color);
}

.footer-btm-tagline {
  padding: 8px 0;
  background: var(--primary-color);
  text-align: center;
}

.tagline-text p {
  margin-bottom: 0;
  color: #fff;
}

.tagline-text p a {
  color: #fff;
  font-family: 'Poppins-Regular' !important;
}


/* Contact page-section */
.inner-banner-sec {
  position: relative;
  width: 100%;
}

.inner-banner-text {
  padding: 80px 0;
}

.inner-banner-text ul {
  display: inline-flex;
  margin-bottom: 0;
  align-items: center;
  gap: 6px;
  padding: 8px 26px;
  background: var(--primary-color);
  margin-top: 10px;
  border-radius: 4px;
}

.inner-banner-text ul li {
  list-style: none;
}

.inner-banner-text ul li i {
  color: #fff;
  font-size: 18px;
}

.inner-banner-text ul li a {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.inner-banner-text ul li a:hover {
  color: var(--secondary-color);
}

.inner-banner-text h3 {
  font-size: 50px;
  color: var(--primary-color);
}

.inner-banner-text h3 span {
  color: var(--secondary-color);
}

.contact-page-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact-page-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.contact-page-left-box {
  position: sticky;
  top: 10px;
}

.contact-page-call-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: all 0.3s ease;
}

.contact-page-call-box:hover {
  background-color: var(--primary-color);
}

.contact-page-call-box i {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-page-call-box:hover i {
  background-color: #fff;
  color: var(--primary-color);
}

.contact-page-call-box a {
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-page-call-box:hover a {
  color: #fff;
}

/* form */
.contact-page-right-box {
  background: #E5EBF1;
  padding: 35px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 30px;
}

.contact-page-form label {
  display: block;
  margin-bottom: 6px;
  font-family: 'Erode-Medium';
  color: var(--primary-color);
}

.contact-page-form .form-control,
.contact-page-form .form-select {
  height: 42px;
  border-radius: 50px;
  border: 1px solid #d9d9d9;
  box-shadow: none;
  padding: 0 20px;
}

.contact-page-form textarea.form-control {
  height: 140px;
  border-radius: 20px;
  padding-top: 15px;
  resize: none;
}

.contact-page-form .form-control:focus,
.contact-page-form .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}

.contact-submit-btn {
  width: 100%;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-family: 'Erode-Medium';
  transition: all .3s ease;
}

.contact-submit-btn:hover {
  background: var(--secondary-color);
}

.contact-map-sec {
  padding-bottom: 60px;
}

.contact-map-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 30px;
}

/* about-page-section */
section.about-sec.padd.about-marg-page {
  margin-bottom: 0;
}


.mission-sec {
  background: #f7f9fb;
}

.mission-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.mission-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.section-heading {
  width: 70%;
  margin: auto;
}

.mission-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all .3s ease;
  border-bottom: 4px solid var(--primary-color);

  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.mission-box:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--secondary-color);
}

.mission-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--primary-color);
  border-radius: 50%;
  transition: all .3s ease;
}

.mission-box:hover .mission-icon {
  background: var(--secondary-color);
}

.mission-icon i {
  color: #fff;
  font-size: 36px;
}

.mission-box h3 {
  color: var(--primary-color);
  font-size: 30px;
}

.mission-box p {
  margin-bottom: 0;
}

.faq-sec {
  background: #f7f9fb;
}

.faq-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.faq-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.faq-img {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.faq-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: all 0.3s ease;
}

.faq-img img:hover {
  transform: scale(1.1);
  filter: brightness(60%);
}

/* faq */
div#faqAccordion {
  margin-top: 20px;
}

.faq-right-box .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  background: #fff;
}

.faq-right-box .accordion-button {
  background: #fff;
  color: var(--primary-color);
  font-family: 'Erode-Medium';
  font-size: 18px;
  padding: 18px 20px;
  box-shadow: none !important;
}

.faq-right-box .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #fff;
}

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

.faq-right-box .accordion-button::after {
  filter: brightness(0);
}

.faq-right-box .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-right-box .accordion-body {
  color: #656565;
  font-family: 'Poppins-Regular';
  line-height: 28px;
  padding: 20px;
}

.faq-right-box .accordion-item:last-child {
  margin-bottom: 0;
}

.about-lgo {
  padding-top: 60px;
}

/* service-page-section */
.service-page-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.service-page-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.service-page-box {
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
  height: 100%;
}

.service-page-img {
  overflow: hidden;
}

.service-page-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all .4s ease;
}

.service-page-box:hover .service-page-img img {
  transform: scale(1.08);
}

.service-page-icon {
  position: absolute;
  left: 12px;
  top: 160px;
  width: 72px;
  height: 72px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 15px;
  transition: all 0.3s ease;
}

.service-page-box:hover .service-page-icon {
  background: var(--primary-color);
}

.service-page-icon img {
  width: 38px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(33%) sepia(96%) saturate(1608%) hue-rotate(157deg) brightness(95%) contrast(101%);
  transition: all 0.3s ease;
}

.service-page-box:hover .service-page-icon img {
  filter: brightness(0) invert(1);
}

.service-page-text {
  padding: 28px 20px 20px;
}

.service-page-text h4 {
  color: var(--primary-color);
  font-size: 24px;
}

.service-page-text p {
    color: #656565;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-page-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-color);
  padding: 14px 22px;
  color: #fff;
  transition: all .3s ease;
  border-radius: 10px;
}

.service-page-btn span {
  font-size: 30px;
  line-height: 1;
}

.service-page-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

.service-page-box:hover {
  box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 30px;
}

/* blog-page-section */
.blog-top-text {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.blog-top-text h5 {
  margin-bottom: 0;
  font-size: 17px;
}

.blog-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-box:hover {
  transform: translateY(-8px);
}

.blog-box-img {
  overflow: hidden;
}

.blog-box-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.blog-box:hover .blog-box-img img {
  transform: scale(1.08);
}

.blog-box-content {
  padding: 25px 18px 30px;
}

.blog-meta {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-meta span {
  font-size: 13px;
  font-family: 'Poppins-Medium';
  padding: 6px 22px;
  background: var(--secondary-color) ;
  color: #fff;
  border-radius: 50px;
}

.blog-box-content h4 a {
    color: var(--primary-color);
    font-size: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Erode-Semibold';	
}

.blog-box:hover h4 a {
  color: var(--secondary-color);
}

.blog-box:hover span {
    background: var(--primary-color);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-family: 'Poppins-Medium';
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.blog-read-more i {
  font-size: 14px;
}

/* review section */
.review-card {
  padding: 30px 20px;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 95%;
  margin: auto;
  transition: all 0.3s ease;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

.review-content p {
  transition: all 0.3s ease;
}

.review-card:hover .review-content p {
  color: #fff;
}

.review-content h4 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #C4C1B7;
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.review-card:hover .review-content h4 {
  color: #fff;
}

.review-content span {
  color: #000;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.review-card:hover .review-content span {
  color: #fff;
}

.review-image {
  position: relative;
}

.review-image img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.review-quote-icon {
  position: absolute;
  top: -18px;
  right: 0;
}

.review-quote-icon i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: 4px solid #fff;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.review-card:hover .review-quote-icon i {
  background: var(--secondary-color);
}

/* ==========================
   Service Detail Page
========================== */

.service-detail-content {
  background: #fff;
}

.service-detail-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}

.service-detail-img img {
  width: 100%;
  height: auto ;
  object-fit: cover;
  border-radius: 20px;
}

.service-detail-content h4 {
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 30px;
}

.service-detail-content p {
  line-height: 30px;
  margin-bottom: 18px;
}

/* UL Style */

.service-detail-content ul {
  padding-left: 0;
  margin-bottom: 30px;
}

.service-detail-content ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  margin-bottom: 14px;
  font-family: 'Poppins-Regular';
color: #656565;	
}

.service-detail-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary-color);
}

/* OL Style */

.service-detail-content ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.service-detail-content ol li {
  margin-bottom: 14px;
  color: #656565;
  font-family: 'Poppins-Regular';
}

.service-detail-highlight {
  background: #E5EBF1;
  padding: 20px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 12px;
  margin-top: 20px;
}

.service-detail-highlight h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-detail-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  transition: all .3s ease;
}

.service-detail-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* ==========================
   Sidebar
========================== */

.service-detail-sidebar {
  position: sticky;
  top: 10px;
}

.service-sidebar-box {
  background: #E5EBF1;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.service-sidebar-box h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-sidebar-box ul {
  padding: 0;
  margin: 0;
}

.service-sidebar-box ul li {
  list-style: none;
  margin-bottom: 12px;
}

.service-sidebar-box ul li:last-child {
  margin-bottom: 0;
}

.service-sidebar-box ul li a {
  display: block;
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  color: #656565;
  transition: all .3s ease;
}

.service-sidebar-box ul li a:hover {
  background: var(--secondary-color);
  color: #fff;
  padding-left: 25px;
}

.service-sidebar-contact {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
}

.service-sidebar-contact h4 {
  color: #fff;
  margin-bottom: 15px;
}

.service-sidebar-contact p {
  color: #fff;
}

.service-sidebar-contact a {
  display: block;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  margin-top: 12px;
  transition: all .3s ease;
}

.service-sidebar-contact a:hover {
  background: var(--secondary-color);
  color: #fff;
}

.service-sidebar-contact i {
  margin-right: 10px;
}

/* Blog Detail */

.blog-detail-img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.blog-detail-img img {
  width: 100%;
  border-radius: 20px;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.blog-detail-meta span {
  color: #656565;
  font-family: 'Poppins-Regular';
}

.blog-detail-meta i {
  color: var(--secondary-color);
}

.blog-detail-content h4 {
  font-size: 28px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-detail-content p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 25px;
  margin-bottom: 25px;
}

.blog-detail-content ul li,
.blog-detail-content ol li {
  margin-bottom: 10px;
  color: #656565;
  font-family: 'Poppins-Regular';
}

.blog-detail-content ul li::marker,
.blog-detail-content ol li::marker {
  color: var(--secondary-color);
  font-weight: 700;
}

.blog-detail-quote {
  background: #E5EBF1;
  padding: 30px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 15px;
  margin: 30px 0;
}

.blog-detail-quote i {
  color: var(--secondary-color);
  font-size: 30px;
  margin-bottom: 15px;
}

.blog-detail-quote p {
  margin-bottom: 0;
  font-style: italic;
}

.blog-detail-tags-share {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-tags a {
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--primary-color);
  color: #fff;
  transition: .3s;
}

.blog-tags a:hover {
  background: var(--secondary-color);
}

.blog-share {
  display: flex;
  gap: 10px;
}

.blog-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.blog-share a:hover {
  background: var(--secondary-color);
}

/* Sidebar */

.blog-sidebar-box {
  background: #E5EBF1;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 25px;
}

.blog-sidebar-box h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d5dde6;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-item img {
  width: 90px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.recent-post-item a {
  color: var(--primary-color);
  transition: .3s;
}

.recent-post-item a:hover {
  color: var(--secondary-color);
}

.recent-post-item span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #656565;
}


.blog-sidebar {
  position: sticky;
  top: 10px;
}


.section_padding {
  padding: 60px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--secondary-color);
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.section-title em {
  font-style: normal;
  color: var(--secondary-color);
}


.btn-primary-ma {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  transition: all 0.25s;
  cursor: pointer;
}

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

.btn-secondary-ma {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--secondary-color);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--secondary-color);
  transition: all 0.25s;
}

.btn-secondary-ma:hover {
  background: var(--secondary-color);
  color: var(--white);
}



.why-join {
  background: var(--white);
}

.why-join .content-img-wrap {
  position: relative;
}

.why-join .img-main {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 440px;
  background: var(--primary-light);
  display: block;
}

.why-join .img-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0, 52, 114, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-join .img-badge .badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-join .img-badge .badge-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.why-join .img-badge .badge-label {
  font-size: 11.5px;
  color: var(--text-muted);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item .benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #00869d;
}

.benefit-item .benefit-icon svg {
  width: 18px;
  height: 18px;
}

.benefit-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 3px;
  font-family: 'DM Sans', sans-serif;
}

.benefit-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}


.looking-for {
  background: var(--bg-light);
}

.trait-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  height: 100%;
}

.trait-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 28px rgba(0, 134, 157, 0.1);
  transform: translateY(-4px);
}

.trait-card .trait-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  color: #00869d;
}

.trait-card .trait-icon svg {
  width: 26px;
  height: 26px;
}

.trait-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.trait-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.heart-note {
  background: var(--primary-color);
  border-radius: 12px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  color: white;
}

.heart-note svg {
  flex-shrink: 0;
}

.heart-note p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
}

.heart-note strong {
  color: var(--white);
  font-style: normal;
}


.opportunities {
  background: var(--white);
}

.job-card {
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
}

.job-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 36px rgba(0, 134, 157, 0.12);
  transform: translateY(-4px);
}

.job-card .job-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--secondary-light);
  color: var(--secondary-color);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.job-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.job-card .job-type {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}


.requirements {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.requirements::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 134, 157, 0.1);
}

.requirements .section-eyebrow::before {
  background: var(--secondary-color);
}

.requirements .section-eyebrow {
  color: var(--secondary-color);
}

.requirements .section-title {
  color: var(--white);
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.req-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.req-item .req-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.req-item p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.req-note {
  background: rgba(0, 134, 157, 0.15);
  border: 1px solid rgba(0, 134, 157, 0.3);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.req-note p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.req-note strong {
  color: var(--white);
}


.apply-cta {
  background: var(--bg-light);
}

.cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 4px 40px rgba(0, 52, 114, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--secondary-light);
  opacity: 0.5;
}

.cta-card .cta-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  font-size: 20px;
  color: #00869d;
}

.cta-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--primary-color);
  margin-bottom: 14px;
}

.cta-card h2 em {
  font-style: normal;
  color: var(--secondary-color);
}

.cta-card p {
  color: var(--text-muted);
  /* max-width: 520px; */
  margin: 0 0 15px;
  line-height: 1.75;
}

.cta-btn-wrap {
  display: flex;
  gap: 14px;
  /* justify-content: center; */
  flex-wrap: wrap;
}

/* 24.06.2026 */

.about-left-box {
    position: sticky;
    top: 10px;
}

.apply-text{
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    max-width: 340px;
    margin-left: auto;
}






/* RESPONSIVE QUERY */


@media only screen and (min-width: 1440px) {
	
	.hero-bg {
  min-height: 600px;
}
	
	.hero-text h3 {
  font-size: 58px;
}
	
	.hero-top-text h5 {
    font-size: 19px;
}
	
	p {
    font-size: 17px;
}
	
	.navbar-links ul li a {
    font-size: 17px;
}
	
	.title {
    font-size: 46px;
}
	
	.about-top-text h5 {
    font-size: 19px;
}
	
	.service-text h2 {
    font-size: 46px;
}
	
	.service-top-text h5 {
    font-size: 19px;
}
	
	.service-icon-text h4 {
    font-size: 26px;
}
	
	.conter-box h4 {
    font-size: 26px;
}
	
	.why-choose-top-text h5 {
    font-size: 19px;
}
	
	.quick-links h4 {
    font-size: 26px;
}
	
	

}

@media only screen and (max-width: 1366px) {

}

@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {
	
	.navbar-logo img {
    width: 160px;
    height: auto;
}
	
	.navbar-links>ul {
    gap: 10px;
}
	
	.service-icon-text img {
  width: 40px;
}

	.service-icon-text h4 {
  font-size: 22px;
}
	
	.service-corner-box {
    right: 110px;
}
	
	.why-choose-img {
    width: 80px;
    height: 80px;
}
	
	.why-choose-img img {
    width: 60px;
    height: 60px;
}
	
	.why-choose-box h4 {
    font-size: 22px;
}
	
	
}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {
	
	    .service-corner-box {
        right: 60px;
    }

}

@media only screen and (max-width: 991px) {
	
	.hero-text {
    width: 100%;
}
	
	.hero-video-banner-sec {
    height: 500px !important;
}
	
	.hero-text h3 {
    font-size: 40px;
}
	
	
	.hero-bg {
    height: 500px;
}
	
	.title {
    font-size: 34px;
    color: var(--primary-color);
	margin-top: 10px;
}
	
	.service-corner-box img {
    display: none;
}
	
	.service-text h2 {
    font-size: 34px;
	margin-top: 10px;
}
	
	.service-box {
    text-align: center;
	height: 330px;
}
	
	.service-icon-text {
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
	
	.service-icon-text img {
        width: 55px;
    }
	
	.why-choose-btm-text {
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
	
	.contact-img {
    height: auto;
}
	
	.testimonial-profile-box {
  padding: 30px;
  border-bottom: 1px solid transparent !important;
  background: #fff;
  border-radius: 20px;
}
	
	.profile-name img {
  border: 6px solid #003573;
}
	
	.profile-text h6 {
    border: 6px solid #003573;
}
	
	.profile-text p {
  color: #656565;
}
	
	.quick-links {
    border-right: none;
}
	
	.footer-links-btm {
    width: 100%;
}
	
	/* Toggle Button */
.mobile-menu-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius: 6px;
    background: #003472;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s ease;
}

.mobile-menu-btn:hover{
    transform:scale(1.05);
}

.mobile-menu-btn:focus{
    box-shadow:none;
}
	
	/* Close Button */
.offcanvas-close{
    width:40px;
    height:40px;
    border:none;
    background: #003472;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s ease;
	margin-left: auto;
}

.offcanvas-close i{
    font-size:22px;
    color: #fff;
}

.offcanvas-close:hover{
    transform:rotate(90deg);
}
	
	.mobile-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-menu li{
    margin-bottom:15px;
	list-style:none;
}

.mobile-menu li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:6px 0;
    color:#000;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}
	
	.mobile-menu .custom-dropdown{
    display:none;
    padding-left:15px;
    margin:10px 0;
}
	
	.mobile-menu .custom-dropdown li a{
    display: block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 15px;
    margin: 4px 0;
    border-radius: 6px;
    font-size: 14px;
    transition: .3s;
}
	
	.mobile-menu .custom-dropdown li a:hover{
	padding-left: 20px;
    color: #fff;
	}
	
	.mobile-menu .menu-item-has-children.active > .custom-dropdown{
    display:block;
}
	
	/* Arrow */
.mobile-menu .menu-item-has-children > a::after{
    content:"\f078";
    font-family:"Font Awesome 7 Free";
    font-weight:900;
    font-size:12px;
    transition:.3s;
}

.mobile-menu .menu-item-has-children.active > a::after{
    transform:rotate(180deg);
}
	
	.mobile-menu li a:hover{
		color: #003472;
	}
	
	    .navbar-logo img {
        width: 180px;
        height: auto;
    }
	
	.about-image img {
    height: auto;
    object-fit: cover;
}
	
	.hero-text p {
    color: #fff;
}
	
	.service-text {
    width: 100%;
}
	
	.about-sec {
    margin-bottom: 0;
}
	
	.inner-banner-text h3 {
    font-size: 40px;
}
	
	.section-heading {
    width: 100%;
}
	
	.faq-img {
    height: auto;
}
	
	.inner-banner-text ul {
    padding: 6px 16px;
}
	
	.why-join .img-main {
    height: auto;
}
	
	.apply-text{
        max-width: 100%;
    }
	
	.service-page-text h4 {
    font-size: 23px;
}
	
	

}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 767px) {
	
	.hero-text {
        width: 100%;
    }
	
	.hero-video-banner-sec {
        height: 400px !important;
    }
	
	.hero-bg {
        height: auto;
    }
	
	.hero-text h3 {
        font-size: 32px;
    }
	
	.hero-top-text h5 {
    font-size: 15px;
}
	
	.title {
    font-size: 28px;
}
	
	.about-top-text h5 {
    font-size: 15px;
}
	
	.service-text h2 {
    font-size: 28px;
}
	
	.padd {
    padding: 30px 0;
}
	
	.footer-links-btm ul {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
	
	.profile-text h4 {
  font-size: 28px;
  color: var(--secondary-color);
}
	
	.inner-banner-text h3 {
        font-size: 34px;
    }
	
	.section_padding {
    padding: 30px 0;
}
	
	.blog-box-content h4 a {
    font-size: 24px;
}
	
	.logo-sec {
    padding-bottom: 30px;
}
	
	.about-lgo {
    padding-top: 30px;
}
	

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {
	
	.service-slider .slick-dots {
  display: none !important;
}

}

@media only screen and (max-width: 575px) {
	
	.hero-text h3 {
        font-size: 28px;
    }
	
	    .title {
        font-size: 26px;
    }
	
	.service-text h2 {
        font-size: 26px;
    }
	
	.footer-links-btm ul li a {
    font-size: 16px;
}
	
	.mission-box h3 {
    font-size: 24px;
}
	
	.service-page-text h4 {
    font-size: 24px;
}
	
	.cta-card {
    padding: 36px 30px;
}
	
	    .inner-banner-text h3 {
        font-size: 28px;
    }
	
	.cta-card::before {
    display: none;
}
	
	section.new-mission-founder-sec .founder-image {
        width: 300px !important;
    }
	

}

@media only screen and (max-width: 500px) {

}

@media only screen and (max-width: 480px) {
	
	.service-box {
    text-align: center;
    min-height: auto;
		height: auto;
}
	
	.testimonial-profile-box {
  gap: 6px;
  flex-direction: column;
  text-align: center;
		padding: 16px;
}
	
	    .navbar-logo img {
        width: 150px;
        height: auto;
    }
	
	.inner-banner-text ul {
        padding: 4px 12px;
        display: none;
    }
	
	.inner-banner-text ul li a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}
	
	.mobile-menu-btn{
    width: 40px;
    height: 40px;
}
	
	.review-card {
    padding: 24px 16px;
    flex-direction: column-reverse;
    text-align: center;
}
	
	.contact-page-right-box {
    padding: 22px;
}
	
	.cta-card img {
    width: 100%;
}
	
		

}


@media only screen and (max-width: 414px) {
	
	.hero-text {
        padding: 60px 0;
    }
	
	.contact-right-box {
    padding: 22px;
}
	
	.inner-banner-text {
    padding: 60px 0;
}

	
	.contact-page-call-box a {
    width: 80%;
}
	
	

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {
	
	.contact-page-call-box a {
    font-size: 15px;
}

}


@media only screen and (max-width: 320px) {

}


/* 25.06.2026 */
.top-btn{
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg,#0f172a,#06b6d4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(6,182,212,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease;
    z-index: 9999;
}

.top-btn.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-btn:hover{
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(6,182,212,.5);
}

/* video-section */
.hero-video-banner-sec{
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-banner-sec .hero-video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video-banner-sec .hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 2;
}

.mission-download-btn{
    position: fixed;
    left: 20px;
	bottom: 34px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0f172a, #06b6d4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(6, 182, 212, .35);
    transform: translateY(15px);
    transition: all .3s ease;
    z-index: 99;
}

.mission-download-btn i{
    font-size: 18px;
}

.mission-download-btn:hover{
    transform: translateY(-3px);
}


/* 15.07.2026 */
section.new-mission-founder-sec .founder-image{
	width: 400px;
	position: relative;
	margin: auto;
}

section.new-mission-founder-sec .founder-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

section.new-mission-founder-sec .founder-role {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 18px;
}

section.new-mission-founder-sec blockquote.founder-quote {
    padding: 30px;
    background: #33a8ba70;
    color: #000;
    border-left: 3px solid var(--secondary-color);
    font-style: italic;
}
