@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

body {
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
}

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

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  text-align: justify;
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --primary-black: #373435;
  --black: #000;
  --white: #fff;
  --green: #174d20;
  --gold: #c99a3b;
  --blue: #3785ca;
  --dark-blue: #14497e;
  --gray: #aaa8a8;
  --red: #EC3137;
}

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-head .heading {
  font-size: 36px;
  font-weight: 600;
  position: relative;
  color: var(--dark-blue);

  position: relative;
}

.section-head .heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 45%;
  height: 3px;
  width: 10%;
  background-color: var(--gray);
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head .heading {
    font-size: 28px;
  }

  .section-head .heading::after {
    left: 40%;
    height: 2px;
    width: 20%;
    bottom: -10px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 20px;
  }
}

/* section css */

/* footer css */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 5px 0px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 250px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--primary-black);
  font-size: 18px;
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--gray);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--gray);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}

.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--dark-blue);
  box-shadow: none;
}

.nav-btn a {
  display: inline-block;
  background: var(--red);

  padding: 5px 10px;
  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  transition: 0.4s ease-in-out;
}

.nav-btn a:hover {
  background: var(--dark-blue);
}

/* responsive navbar */

@media screen and (max-width: 1400px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .navbar .logo {
    width: 150px;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }

  .nav-btn a {
    padding: 5px 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .navbar .logo {
    width: 120px;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }

  .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  .nav-btn a {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 100px;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 20px;
  }

  .nav-btn a {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 14px;
  }
}

.dropdown .dropdown-menu {
  display: block;
  position: absolute;
  border: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown .dropdown-menu li {
  font-size: 18px;
  padding: 10px 5px;
  transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li a {
  color: var(--black);
  transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:hover {
  background: var(--gray);
}

.dropdown .dropdown-menu li:hover a {
  color: var(--white);
}

.dropdown .dropdown-menu .dropdown-item {
  background: none;
}

@media screen and (max-width: 1400px) {
  .dropdown .dropdown-menu li {
    font-size: 16px;
    padding: 5px 2px;
  }
}

@media screen and (max-width: 991px) {
  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown .dropdown-menu li {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown .dropdown-menu li {
    font-size: 16px;
    padding: 5px 2px;
    transition: 0.2s ease-in-out;
  }
}

/* --------------- end of navbar css here ------------- */

/* --------------- banner css start here ---------------- */

.carousel-indicators {
  margin-bottom: 5px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: none;
  background: var(--gray) !important;
}

.carousel-indicators button {
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .carousel-indicators [data-bs-target] {
    width: 5px;
    height: 5px;
  }
}

/* --------------------- end of banner css here --------------------- */




/* ---------------------- about us section css start here ---------------------- */

.namaskar-about {
    position: relative;
    padding: 100px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-small-title {
    display: inline-block;
    position: relative;
    padding-left: 42px;
    margin-bottom: 15px;
    color: #ef3038;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-small-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 3px;
    background: #ef3038;
    transform: translateY(-50%);
}

.about-content h2 {
    margin: 0 0 18px;
    color: #333132;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
}

.about-content h2 span {
    color: #ef3038;
}

.about-line {
    width: 70px;
    height: 4px;
    margin-bottom: 25px;
    background: #ef3038;
    border-radius: 5px;
}

.about-content p {
    margin-bottom: 16px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 13px 25px;
    background: #ef3038;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: #333132;
    color: #fff;
    transform: translateY(-3px);
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* about image */

.about-image-wrapper {
    position: relative;
    padding: 20px 20px 30px 30px;
}

.about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.about-image img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* news badge */

.about-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ef3038;
    color: #fff;
    border: 7px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-badge strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.about-badge span {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* decorative element */

.about-decoration {
    position: absolute;
    z-index: 1;
    background: #333132;
}

.about-decoration-one {
    left: 0;
    top: 0;
    width: 150px;
    height: 150px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-decoration-two {
    right: 20px;
    bottom: 15px;
    width: 100px;
    height: 100px;
    background: #ef3038;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* responsive start */

@media (max-width: 991px) {

    .namaskar-about {
        padding: 80px 0;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-image-wrapper {
        margin-top: 20px;
    }

    .about-image img {
        height: 430px;
    }
}

@media (max-width: 767px) {

    .namaskar-about {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-image-wrapper {
        padding: 15px 15px 25px 20px;
    }

    .about-image img {
        height: 350px;
    }

    .about-badge {
        width: 115px;
        height: 115px;
        border-width: 5px;
    }

    .about-badge strong {
        font-size: 25px;
    }

    .about-badge span {
        font-size: 10px;
    }

    .about-decoration-one {
        width: 100px;
        height: 100px;
    }

    .about-decoration-two {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {

    .about-content h2 {
        font-size: 28px;
    }

    .about-small-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-image img {
        height: 280px;
    }

    .about-badge {
        width: 100px;
        height: 100px;
    }

    .about-badge strong {
        font-size: 22px;
    }
}
/* responsive end */

/* ---------------------- end of about us section css here ---------------------- */



/* ---------------------- mission vision section css start here ---------------------- */

.mission-vision-section {
    position: relative;
    padding: 100px 0;
    background: #f7f7f7;
    overflow: hidden;
    background: #f0a5a860;
}





.mv-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #ef3038;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mv-title {
    margin: 0;
    color: #333132;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.mv-title span {
    color: #ef3038;
}

.mv-intro {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* mission vision card */

.mv-card {
    position: relative;
    height: 100%;
    padding: 45px 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.mission-card {
    border-top: 5px solid #ef3038;
}

.vision-card {
    border-top: 5px solid #333132;
}

.mv-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #ef3038;
    color: #fff;
    font-size: 27px;
    box-shadow: 0 8px 20px rgba(239, 48, 56, 0.25);
}

.vision-card .mv-icon {
    background: #333132;
    box-shadow: 0 8px 20px rgba(51, 49, 50, 0.2);
}

.mv-label {
    display: block;
    margin-bottom: 8px;
    color: #ef3038;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vision-card .mv-label {
    color: #333132;
}

.mv-content h3 {
    margin-bottom: 18px;
    color: #333132;
    font-size: 28px;
    font-weight: 800;
}

.mv-content p {
    margin-bottom: 14px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.mv-number {
    position: absolute;
    right: 25px;
    bottom: 10px;
    color: rgba(239, 48, 56, 0.07);
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
}

.vision-card .mv-number {
    color: rgba(51, 49, 50, 0.06);
}

/* bottom  statement */

.mv-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    background: #333132;
    border-radius: 8px;
    border-left: 6px solid #ef3038;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.mv-bottom-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ef3038;
    color: #fff;
    border-radius: 50%;
    font-size: 25px;
}

.mv-bottom h4 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.mv-bottom p {
    margin: 0;
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.7;
}

/* responsive start */

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 80px 0;
    }

    .mv-title {
        font-size: 40px;
    }

    .mv-card {
        padding: 35px 30px;
    }

}

@media (max-width: 767px) {

    .mission-vision-section {
        padding: 60px 0;
    }

    .mv-title {
        font-size: 32px;
    }

    .mv-intro {
        font-size: 15px;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 23px;
    }

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

    .mv-content p {
        font-size: 14px;
    }

    .mv-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
        gap: 18px;
    }

    .mv-bottom h4 {
        font-size: 19px;
    }

}

@media (max-width: 480px) {

    .mv-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .mv-title {
        font-size: 28px;
    }

    .mv-card {
        padding: 25px 20px;
    }

    .mv-number {
        font-size: 70px;
    }

}
/* responsive end */

/* ---------------------- end of mission vision section css here ---------------------- */





/* ---------------------- footer css start here ---------------------- */


/* =========================
   NAMASKAR CITY FOOTER
========================= */

.namaskar-footer {
    position: relative;
    background: #333132;
    color: #fff;
    overflow: hidden;
}




/* =========================
   MAIN FOOTER
========================= */

.footer-main {
    position: relative;
    padding: 75px 0 60px;
    background: #333132;
}

.footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(239, 48, 56, 0.04);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* =========================
   FOOTER WIDGET
========================= */

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-widget h4 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ef3038;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.45));
}

.footer-about p {
    margin-bottom: 13px;
    color: #c8c8c8;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #444243;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ef3038;
    color: #fff;
    transform: translateY(-4px);
}

/* =========================
   FOOTER LINKS
========================= */

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

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

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c8c8c8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a i {
    color: #ef3038;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* =========================
   CONTACT
========================= */

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.contact-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #444243;
    color: #ef3038;
    border-radius: 4px;
    font-size: 14px;
}

.footer-contact strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.footer-contact p {
    margin: 0;
    color: #c8c8c8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact a {
    color: #c8c8c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    padding: 20px 0;
    background: #282627;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 13px;
}

.footer-bottom strong {
    color: #fff;
}

.footer-policy {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-policy li {
    position: relative;
}

.footer-policy li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -11px;
    width: 1px;
    height: 13px;
    background: #666;
    transform: translateY(-50%);
}

.footer-policy a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: #ef3038;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  

    .footer-main {
        padding: 60px 0 45px;
    }

}

@media (max-width: 767px) {


    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-widget h4 {
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-policy {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

}

@media (max-width: 480px) {

    .footer-newsletter h3 {
        font-size: 22px;
    }

    .footer-social {
        gap: 7px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom p {
        text-align: center;
        line-height: 1.7;
    }

    .footer-policy {
        gap: 12px;
    }

    .footer-policy a {
        font-size: 12px;
    }

}

/* end of footer css here */










/* ================================================================================================== */
/* =================================================================================================== */


/* --------------------------- e paper page css start here ---------------------------- */
              .paper-card{
                    background: rgb(238, 237, 237);
                    padding: 20px 10px;
                    border-radius: 20px;
                    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
                    margin-bottom: 30px;
                }

                .paper-card .paper-img{
                    border: 1px solid rgb(233, 173, 173);
                    margin-bottom: 20px;
                    position: relative;
                    overflow: hidden;
                    
                }
                  .paper-card .paper-img img{
                    transition: .4s ease-in-out;
                  }
                 .paper-card:hover .paper-img img{
                     width: 100%;
                    transform: scale(1.1);
                }

                .paper-card .paper-text h3{
                    font-size: 18px;
                    margin-bottom: 10px;
                    color: rgb(51, 50, 50);
                    transition: .4s ease-in-out;
                }
                .paper-card .paper-text p{
                    color: var(--red);
                    font-size: 14px;
                }

                .paper-card:hover .paper-text h3{
                    color: var(--red);
                }



                /* --------------------------- end of e paper page css here ---------------------------- */
                
                
                
                
                
                
    
/* ------------------- industry we serve css start here ------------------- */

.industry-we-serve {
    background: linear-gradient(#e4e0e0b4, #e2e0e0b9);
}

.industry-we-serve .work-card {
    text-align: center;
    background: var(--white);
    padding: 10px 0px;
    transition: 0.2s ease-in-out;
    margin-bottom: 20px;
}

.industry-we-serve .work-card img {
    margin-bottom: 20px;
}

.industry-we-serve .work-card h5 {
    font-size: 18px;
    color: var(--primary-black);
}

.industry-we-serve .work-card:hover {
    background: var(--red);
}

.industry-we-serve .work-card:hover h5 {
    color: var(--white);
}

.industry-we-serve .work-card img {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

/* responsive css start */

@media screen and (max-width: 1200px) {
    .industry-we-serve .work-card img {
        width: 60px;
    }

    .industry-we-serve .work-card h5 {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .industry-we-serve .work-card {
        margin-bottom: 20px;
    }

    .industry-we-serve .work-card img {
        width: 60px;
    }

    .industry-we-serve .work-card h5 {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .industry-we-serve .work-card img {
        margin-bottom: 10px;
        width: 50px;
    }

    .industry-we-serve .work-card h5 {
        font-size: 14px;
    }
}

/* responsive css end */

/* ------------------- end of industry we serve css ------------------- */   






/* ------------------- terms and condition page css start here --------------- */

.terms-section {
    padding: 90px 0;
    background: #f7f7f7;
}

/* Header */

.terms-header {
    max-width: 950px;
    margin: 0 auto 55px;
}

.terms-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 18px;
    background: rgba(239, 48, 56, 0.08);
    color: #ef3038;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.terms-header h1 {
    margin: 0 0 25px;
    color: #333132;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
}

.terms-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.terms-meta p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.terms-meta strong {
    color: #333132;
}


/* Main Content */

.terms-content {
    max-width: 1050px;
    margin: auto;
    padding: 45px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}


/* Individual Section */

.terms-item {
    padding: 0 0 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #e9e9e9;
}

.terms-item:last-of-type {
    margin-bottom: 0;
}

.terms-item h2 {
    position: relative;
    margin: 0 0 20px;
    padding-left: 18px;
    color: #333132;
    font-size: 23px;
    line-height: 1.4;
    font-weight: 750;
}

.terms-item h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 25px;
    background: #ef3038;
    border-radius: 5px;
}

.terms-item p {
    margin: 0 0 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.terms-item p:last-child {
    margin-bottom: 0;
}


/* Ordered List */

.terms-item ol {
    margin: 0;
    padding-left: 22px;
}

.terms-item ol li {
    padding-left: 8px;
    margin-bottom: 11px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.terms-item ol li::marker {
    color: #ef3038;
    font-weight: 700;
}


/* Unordered List */

.terms-item ul {
    margin: 10px 0 18px;
    padding-left: 22px;
}

.terms-item ul li {
    position: relative;
    padding-left: 7px;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.terms-item ul li::marker {
    color: #ef3038;
}


/* Acknowledgement */

.acknowledgement {
    padding: 35px;
    margin-top: 5px;
    background: #fafafa;
    border: 1px solid #ededed;
    border-left: 4px solid #ef3038;
}


/* Final Note */

.terms-final {
    margin-top: 35px;
    padding: 25px 30px;
    background: #333132;
    border-radius: 7px;
}

.terms-final p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}


/* responsive css */

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

    .terms-section {
        padding: 75px 0;
    }

    .terms-header h1 {
        font-size: 36px;
    }

    .terms-content {
        padding: 35px;
    }

}

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

    .terms-section {
        padding: 55px 0;
    }

    .terms-header {
        margin-bottom: 35px;
    }

    .terms-header h1 {
        font-size: 30px;
    }

    .terms-meta {
        display: block;
    }

    .terms-meta p {
        margin-bottom: 7px;
    }

    .terms-content {
        padding: 25px 20px;
        border-radius: 7px;
    }

    .terms-item {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .terms-item h2 {
        font-size: 20px;
    }

    .terms-item p,
    .terms-item ol li,
    .terms-item ul li {
        font-size: 14px;
    }

    .acknowledgement {
        padding: 25px 20px;
    }

}

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

    .terms-section {
        padding: 45px 0;
    }

    .terms-header h1 {
        font-size: 26px;
    }

    .terms-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .terms-content {
        padding: 22px 16px;
    }

    .terms-item h2 {
        font-size: 18px;
    }

    .terms-final {
        padding: 20px;
    }

}


/* ------------------- terms and condition page css start here --------------- */





/* ----------------- director message css start here ----------------- */


:root {
    --nc-red: #ef1739;
    --nc-dark: #252525;
    --nc-gray: #666666;
    --nc-light: #f8f8f8;
    --nc-border: #eeeeee;
}

.director-message-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.director-image-wrapper {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}


/* Image */

.director-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


.director-image img {
    display: block;
 width: 100%;
    height: 430px;
    object-fit: cover;
}
.director-decoration {
    position: absolute;
    z-index: 1;
    left: -18px;
    bottom: -18px;
    width: 120px;
  height: 120px;
    background: var(--nc-red);
    border-radius: 10px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--nc-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.section-label span {
    display: inline-block;
    width: 35px;
    height: 3px;
    background: var(--nc-red);
    border-radius: 5px;
}

.director-heading {
    margin: 0 0 20px;
    color: var(--nc-dark);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}


.director-heading span {
    color: var(--nc-red);
}

.director-intro {
    margin-bottom: 18px;
    color: var(--nc-dark);
    font-size: 19px;
    font-weight: 700;
}

.director-text p {
    margin-bottom: 16px;
    color: var(--nc-gray);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.director-quote {
    position: relative;
    margin-top: 25px;
    padding: 20px 25px 20px 55px;
    background: #fff5f6;
    border-left: 4px solid var(--nc-red);
    border-radius: 0 8px 8px 0;
}


.director-quote p {
    margin: 0;
    color: var(--nc-red);
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
}

.quote-icon {
    position: absolute;
    left: 18px;
    top: 17px;
    color: var(--nc-red);
    font-size: 25px;
}


.director-signature {
    margin-top: 25px;
}

.warm-regards {
    margin: 0 0 5px;
    color: var(--nc-gray);
    font-size: 15px;
}

.director-signature h3 {
    margin: 0;
    color: var(--nc-dark);
    font-size: 22px;
    font-weight: 700;
}

.director-signature span {
    display: block;
    margin-top: 2px;
    color: var(--nc-red);
    font-size: 14px;
    font-weight: 600;
}



.director-image {
    transition: all 0.4s ease;
}
.director-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}


@media screen and (max-width: 991px) {
    .director-message-section {
        padding: 70px 0;
    }
    .director-heading {
        font-size: 36px;
    }
    .director-image img {
        height: 380px;
    }
    .director-text p {
      font-size: 15px;
     line-height: 1.75;
    }
}

@media screen and (max-width: 767px) {
    .director-message-section {
        padding: 55px 0;
    }
    .director-image-wrapper {
        max-width: 280px;
        margin-bottom: 20px;
    }

    .director-image img {
        height: 330px;
    }
    .director-decoration {
        left: -10px;
        bottom: -10px;
        width: 85px;
        height: 85px;
    }
    .section-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .section-label span {
        width: 25px;
    }
    .director-heading {
        font-size: 29px;
        margin-bottom: 15px;
    }
    .director-intro {
        font-size: 17px;
    }
    .director-text p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 13px;
    }
    .director-quote {
        padding: 17px 18px 17px 45px;
    }

    .director-quote p {
        font-size: 16px;
    }
    .quote-icon {
        left: 14px;
        top: 14px;
        font-size: 21px;
    }
}


@media screen and (max-width: 400px) {
    .director-heading {
        font-size: 25px;
    }
    .director-text p {
        font-size: 13px;
    }
    .director-quote p {
        font-size: 15px;
    }
}


/* ---------------- end of director message css here ---------------- */














