:root {
    --primary-color: #000; /* black */
    --accent-color: #c1001f; /* red */
    --dropdown-bg: #000;
}

/* Body */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    padding-top: 120px;
    background: #f8f8f8;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1050;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}
.top-bar a:hover { color: var(--accent-color); }
.top-bar .divider {
    border-left: 1px solid rgba(255,255,255,0.4);
    margin: 0 10px;
    height: 16px;
}

/* Main Navbar */
.navbar-custom {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px 15%;
    transition: all 0.3s ease;
}
.navbar-custom .navbar-brand img { height: 60px; }
.navbar-custom .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin-right: 15px;
    position: relative;
    transition: 0.3s;
}
.navbar-custom .nav-link:hover { color: var(--accent-color) !important; }
.navbar-custom .btn-careers {
    background: var(--accent-color);
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}
.navbar-custom .btn-careers:hover { background: #000; }

/* Dropdown Styles */
.navbar .dropdown-menu {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: block;
    visibility: hidden;
    background: var(--dropdown-bg);
}
.navbar .dropdown-item {
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.navbar .dropdown-item:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateX(5px);
}

/* Dropdown animation */
.navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

/* Triangle pointer for dropdown */
.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent var(--dropdown-bg) transparent;
}

/* Alignment for dropdowns */
.navbar .nav-item.dropdown:nth-child(1) .dropdown-menu { left: 0; }
.navbar .nav-item.dropdown:nth-child(3) .dropdown-menu { right: 0; }

/* Mobile adjustments */
@media(max-width: 991px){
    .navbar-custom { padding: 10px 5%; }
    .navbar .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        background: var(--primary-color) !important;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .navbar .dropdown-item { padding-left: 30px; }
    .navbar .dropdown-menu::before { display: none; }
    .navbar-toggler { border: none; }
    .navbar-toggler-icon i { font-size: 24px; color: #000; }
}

@media (max-width: 991px) {

    /* BODY FIX */
    body {
        padding-top: 0;
    }

    /* TOP BAR FIX */
    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px 10px;
        gap: 6px;
    }

    .top-bar .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .top-bar a,
    .top-bar i {
        white-space: nowrap;
    }

    /* NAVBAR FIX */
    .navbar-custom {
        padding: 8px 12px;
        border-radius: 0;
        width: 100%;
    }

    .navbar-collapse {
        width: 100%;
        background: #fff;
        padding: 10px 0;
        margin-top: 8px;
        border-radius: 12px;
        overflow-x: hidden;
    }

    /* DROPDOWN RESET (NO SLIDE AT ALL) */
    .navbar .dropdown-menu {
        position: static !important;
        display: none;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        background: #000 !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .navbar .dropdown.show .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-item {
        padding: 12px 20px;
        transform: none !important;
    }

    .navbar .dropdown-menu::before {
        display: none;
    }
}





/* ==========================
   HERO VIDEO SECTION
========================== */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Video */
.hero-video-section video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
  z-index: 2;
}

/* Soft Glow */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,60,60,0.18);
  filter: blur(140px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Centered Content */
.hero-center-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

/* Headings */
.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: #ff3c3c;
  text-shadow: 0 0 25px rgba(255,60,60,0.6);
}

.hero-subtitle {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Glass Email Bar */
.hero-email-bar {
  display: flex;
  align-items: center;
  gap: 12px;
 
  width: 100%;
  margin: 0 auto 45px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.hero-email-bar input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 20px;
  border: none;
  font-size: 16px;
  outline: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
}

.hero-email-bar input::placeholder {
  color: #ccc;
}

.hero-email-bar button {
  padding: 14px 30px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #ff3c3c, #ff1f1f);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(255,60,60,0.45);
}

.hero-email-bar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,60,60,0.65);
}

/* Trust Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-top: 10px;
}

.hero-stats h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ff3c3c;
}

.hero-stats p {
  font-size: 14px;
  color: #ddd;
  margin-top: 4px;
}

/* ==========================
       RESPONSIVE
========================== */
@media(max-width: 1024px) {
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 18px; }
}

@media(max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-email-bar {
    flex-direction: column;
    padding: 12px;
    border-radius: 30px;
  }
  .hero-email-bar button {
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
  }
}

@media(max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 14px; }
  .hero-email-bar input { font-size: 14px; padding: 12px 15px; }
  .hero-email-bar button { font-size: 14px; padding: 12px 20px; }
}



/**********************IMPACT SLIDER SECTION*****************/

.impact-section { background: radial-gradient(circle at top, #fff1f1, #ffffff); }

.impact-card {
  height: 430px;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: 0.6s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.impact-card:hover {
  transform: scale(1.06);
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
}

.overlay {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 80%;
  z-index: 2;
  animation: fadeUp 1.1s ease both;
  backdrop-filter: blur(2px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(-50%); }
}

.overlay h3 { font-size: 28px; font-weight: 800; }
.overlay h4 { font-size: 21px; font-weight: 700; }

.premium-btn {
  margin-top: 15px;
  border-radius: 30px;
  padding: 8px 22px;
  box-shadow: 0 8px 25px rgba(217,51,51,0.4);
  transition: 0.4s;
}

.premium-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.arrow-btn {
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.arrow-btn:hover {
  background: #d93333;
  color: #fff;
}

.progress {
  height: 5px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.progress, .progress-stacked {
    --bs-progress-height: 0.2rem;
    --bs-progress-font-size: 0.75rem;
}


.progress-bar {
  background: linear-gradient(90deg, #ff4d4d, #d93333);
  animation: progressFill 4.5s linear infinite;
  height: 4px;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

@media (max-width: 768px) {
  .impact-card { height: 320px; }
  .overlay h3 { font-size: 22px; }
  .overlay h4 { font-size: 18px; }
}




/*************we are kapil soft*****************/

  /* HERO WRAPPER */
.kps-hero-section {
  background: #f8f9fb;
  padding: 20px 0;
}

/* IMAGE BOX */
.kps-hero-image {
  height: 460px;
  background-image: url("../images/banner-1.png");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.kps-hero-content {
  padding-right: 30px;
  padding-left: 0;
}

.kps-hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.kps-hero-title span {
  color: #d93333;
}

/* DESCRIPTION */
.kps-hero-description {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 95%;
}

/* BUTTON */
.kps-hero-button {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 36px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.kps-hero-button:hover {
  background: #d93333;
  transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 991px) {
  .kps-hero-content {
    padding-left: 0;
    text-align: center;
  }

  .kps-hero-image {
    height: 400px;
  }

  .kps-hero-title {
    font-size: 34px;
  }

  .kps-hero-description {
    max-width: 100%;
  }

  .kps-hero-button {
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .kps-hero-title {
    font-size: 28px;
  }

  .kps-hero-description {
    font-size: 15px;
  }

  .kps-hero-image {
    height: 260px;
    border-radius: 14px;
  }
}




/**************we are defined****************/

/* MAIN SECTION */
.commitment-area {
    background: #d62828;
    padding: 70px 0 90px;
}

/* HEADING */
.commitment-header {
    text-align: left;
    margin-bottom: 40px;
}

.commitment-title {
    font-size: 38px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.commitment-line {
    width: 230px;
    height: 3px;
    background: white;
    margin-top: 12px;
}

/* CARD */
.commitment-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.commitment-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.commitment-card:hover .commitment-img {
    transform: scale(1.08);
}

/* OVERLAY */
.commitment-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    transition: 0.3s ease;
}

/* MAIN TITLE */
.commitment-main {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

/* HOVER DESCRIPTION */
.commitment-hover-text {
    font-size: 15.5px;
    line-height: 1.45;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.35s ease;
}

.commitment-card:hover .commitment-hover-text {
    opacity: 1;
    transform: translateY(0px);
}

/* RESPONSIVE TABLET */
@media (max-width: 991px) {
    .commitment-title {
        font-size: 32px;
        text-align: center;
    }
    .commitment-line {
        margin-left: auto;
        margin-right: auto;
        width: 160px;
    }
    .commitment-header {
        text-align: center;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .commitment-img {
        height: 320px;
    }
    .commitment-main {
        font-size: 22px;
    }
    .commitment-hover-text {
        font-size: 14.5px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
    .commitment-img {
        height: 260px;
    }
    .commitment-title {
        font-size: 26px;
    }
    .commitment-hover-text {
        font-size: 14px;
    }
}




/**********************we are driven***********************/

/* SECTION BASE */
.purpose-section {
  background: #000;
  color: #fff;
}

.purpose-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

/* TABS LAYOUT */
.purpose-tabs {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
}

.purpose-tab {
  cursor: pointer;
  font-size: 18px;
  color: #ccc;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  flex: 1;
}

.purpose-tab span {
  color: #ccc;
}

.purpose-tab.active span {
  color: #d62828;
}

/* UNDERLINE ANIMATION */
.tab-underline {
  height: 3px;
  background: #d62828;
  width: 33%;
  margin-top: 10px;
  transition: transform 0.35s ease;
}

/* CARD */
.purpose-card {
  background: #1c1c1c;
  border-radius: 10px;
  padding: 35px 25px;
  transition: 0.3s;
  height: 100%;
}

.purpose-card:hover {
  transform: translateY(-8px);
  background: #2a2a2a;
}

.purpose-icon img {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
}

.purpose-title {
  font-size: 20px;
  font-weight: 600;
}

.purpose-desc {
  margin-top: 12px;
  font-size: 15px;
  color: #bbb;
}

.purpose-more {
  margin-top: 15px;
  color: #d62828;
  font-weight: 600;
  display: inline-block;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
  .purpose-heading {
    font-size: 30px;
    text-align: center;
  }

  .purpose-tabs {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .purpose-tab {
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid #333;
  }

  .tab-underline {
    width: 100%;
    transform: translateX(0) !important;
    margin-top: 5px;
  }
}



/*****************our focus on****************/


  body {
    background: #fff7f7;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  .slider-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }

  .header-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
  }

  .header-title span {
    color: #e60012;
  }

  .sub-title {
    font-size: 20px;
    color: #555;
    margin-top: 5px;
    text-align: center;
  }

  /* SLIDER MAIN */
  .slider {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 12px;
  }

  .slide-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
  }

  .slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
  
  }

  .slide-content {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .slide-content p {
    font-size: 18px;
    line-height: 1.6;
  }

  .quote-symbol {
    font-size: 50px;
    color: #ddd;
  }

  .slide-img {
    flex: 1 1 50%;
  }

  .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .watch-btn {
    background: black;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 25px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    width: fit-content;
  }

  /* ARROW BUTTONS */
  .arrow-btn {
    background: none;
    border: 1px solid #ccc;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
  }

  .arrow-btn:hover {
    background: #d93333;
    color: #fff;
    border-color: #d93333;
  }

  .arrow-wrapper {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    display: flex;
    gap: 10px;
  }

  /* MOBILE RESPONSIVE FIXES */
  @media (max-width: 768px) {
    .slide {
      flex-direction: column;
    }

    .slide-content {
      padding: 25px;
      text-align: center;
    }

    .slide-img {
      order: -1;
      height: 250px;
    }

    .slide-img img {
      height: 250px;
      object-fit: cover;
    }

    .arrow-wrapper {
      bottom: 10px;
      right: 10px;
    }

    .header-title {
      font-size: 32px;
    }

    .sub-title {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .slide-content p {
      font-size: 16px;
    }

    .watch-btn {
      margin: 15px auto;
    }
  }




  /****************testimonials****************/

  


/* Section Layout */
.testimonial-section {
  padding: 80px 20px;
  text-align: center;
}

.header-title {
  font-size: 42px;
  font-weight: 700;
}

.header-title span {
  color: #d60000;
}

.sub-title {
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Slider Layout */
.testimonial-slider {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: 0.6s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  display: flex;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
  gap: 30px;
  align-items: center;
}

/* Left Image */
.person-img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
}

/* Right Content */
.quote {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.watch-btn {
  background: #d60000;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
}

.watch-btn:hover {
  background: #b10000;
}

.person-name {
  color: #d60000;
  margin-top: 10px;
  font-size: 22px;
}

.person-role {
  color: #555;
}

/* Arrows */
/* Modern Arrow Buttons */
.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.arrow-btn-modern {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.arrow-btn-modern:hover {
  background: #d60000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214,0,0,0.35);
}

.arrow-icon {
  font-weight: 700;
}

/* Responsive arrow size */
@media (max-width: 480px) {
  .arrow-btn-modern {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .person-img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 25px;
  }

  .header-title {
    font-size: 32px;
  }

  .quote {
    font-size: 16px;
  }
}





/**********************as recognized by **************/

/* SECTION WRAPPER */
.industry-recognition {
  background: #f2f2f2;
  padding: 70px 20px;
  font-family: Arial, sans-serif;
}

.ir-container {
  max-width: 1250px;
  margin: auto;
}

.ir-heading {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

/* FIXED GRID (fully responsive) */
.ir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* DESKTOP → TABLET */
@media (max-width: 992px) {
  .ir-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .ir-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD DESIGN */
.ir-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.ir-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* IMAGE */
.ir-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .ir-img {
    height: 190px;
  }
}

/* CONTENT */
.ir-content {
  padding: 20px;
}

.ir-content p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}

/* BUTTON */
.ir-btn {
  margin-top: 15px;
  background: #000;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.ir-btn:hover {
  background: #333;
}

/* MOBILE HEADING FIX */
@media (max-width: 576px) {
  .ir-heading {
    font-size: 28px;
  }
  .ir-content p {
    font-size: 16px;
  }
}





/**************people who make *************/

  /* SECTION WRAPPER */
.kss-career-banner {
  background: #f8f9fb;
  padding: 40px 0;
}

/* IMAGE */
.kss-career-image {
  height: 380px;
  background-image: url("../images/footer\ above\ image.png");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CONTENT */
.kss-career-content {
  padding-left: 30px;
}

.kss-career-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.kss-career-title span {
  color: #d93333;
}

/* TEXT */
.kss-career-text {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 95%;
}

/* BUTTON */
.kss-career-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 36px;
  background: #111;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.kss-career-btn:hover {
  background: #d93333;
  transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 991px) {
  .kss-career-content {
    padding-left: 0;
    text-align: center;
  }

  .kss-career-image {
    height: 380px;
  }

  .kss-career-title {
    font-size: 34px;
  }

  .kss-career-text {
    max-width: 100%;
  }

  .kss-career-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .kss-career-title {
    font-size: 28px;
  }

  .kss-career-text {
    font-size: 15px;
  }

  .kss-career-image {
    height: 260px;
    border-radius: 14px;
  }
}



/************popup*****************/
/* OVERLAY */
.consult-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.4s ease;
  z-index:9999;
}

.consult-popup-overlay.active{
  opacity:1;
  visibility:visible;
}

/* POPUP BOX */
.consult-popup-box{
  width:900px;
  max-width:95%;
  background:#fff;
  display:flex;
  border-radius:14px;
  overflow:hidden;
  transform:scale(.85);
  transition:.4s ease;
  position:relative;
}

.consult-popup-overlay.active .consult-popup-box{
  transform:scale(1);
}

/* CLOSE BUTTON */
.consult-popup-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  background:#e60012;
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
  z-index:10;
  box-shadow:0 6px 20px #00000040;
  transition:all .3s ease;
}

.consult-popup-close:hover{
  background:#ff2c3d;
  transform:rotate(90deg) scale(1.1);
}

/* LEFT IMAGE */
.consult-popup-image{
  width:45%;
  position:relative;
  overflow:hidden;
}

.consult-popup-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  animation:imageZoom 8s linear infinite;
}

@keyframes imageZoom{
  from{transform:scale(1)}
  to{transform:scale(1.1)}
}

.consult-popup-image::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,#00000060,#00000090);
}

.consult-popup-image-text{
  position:absolute;
  bottom:30px;
  left:30px;
  color:#fff;
  z-index:2;
}

.consult-popup-image-text h2{
  font-size:26px;
  margin-bottom:8px;
}

/* RIGHT FORM */
.consult-popup-form{
  width:55%;
  padding:45px 40px;
  background:#f7f7f7;
}

.consult-popup-form h3{
  margin-bottom:20px;
  font-size:22px;
  color:#333;
}

.consult-popup-form input,
.consult-popup-form select,
.consult-popup-form textarea{
  width:100%;
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:14px;
}

.consult-popup-form input:focus,
.consult-popup-form select:focus,
.consult-popup-form textarea:focus{
  outline:none;
  border-color:#e60012;
}

/* SUBMIT BUTTON */
.consult-popup-form button{
  width:100%;
  background:#e60012;
  color:#fff;
  border:none;
  padding:14px;
  font-size:15px;
  border-radius:30px;
  cursor:pointer;
  transition:.3s ease;
}

.consult-popup-form button:hover{
  background:#ff2c3d;
}

/* CANCEL LINK */
.consult-cancel{
  margin-top:14px;
  text-align:center;
  font-size:14px;
  color:#666;
  cursor:pointer;
}

.consult-cancel:hover{
  color:#e60012;
  text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){
  .consult-popup-box{
    flex-direction:column;
  }
  .consult-popup-image{
    width:100%;
    height:220px;
  }
  .consult-popup-form{
    width:100%;
  }
}



/******************footer*********************/



.footer{
  background:linear-gradient(180deg,#4b4b4b,#3b3b3b);
  color:#dcdcdc;
  padding:70px 20px 0;
  font-family:Arial, sans-serif;
  position:relative;
  overflow:hidden;
}

/* soft glow */
.footer::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top,#ffffff12,transparent 60%);
  pointer-events:none;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* COLUMNS */
.footer-column{
  flex:1 1 250px;
  min-width:220px;
  animation:footerFade .9s ease forwards;
  opacity:0;
  transform:translateY(30px);
}

.footer-column:nth-child(1){animation-delay:.1s}
.footer-column:nth-child(2){animation-delay:.25s}
.footer-column:nth-child(3){animation-delay:.4s}
.footer-column:nth-child(4){animation-delay:.55s}

@keyframes footerFade{
  to{opacity:1;transform:translateY(0);}
}

/* HEADINGS */
.footer-column h3{
  font-size:18px;
  margin-bottom:18px;
  color:#fff;
  position:relative;
}

.footer-column h3::after{
  content:'';
  width:40px;
  height:2px;
  background:#e60012;
  position:absolute;
  left:0;
  bottom:-8px;
  transition:width .4s ease;
}

.footer-column:hover h3::after{
  width:70px;
}

/* LINKS */
.footer-column ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-column ul li{
  margin-bottom:10px;
}

.footer-column ul li a{
  text-decoration:none;
  color:#dcdcdc;
  font-size:14px;
  position:relative;
  padding-left:0;
  transition:all .35s ease;
}

.footer-column ul li a::before{
  content:'›';
  position:absolute;
  left:-12px;
  opacity:0;
  color:#e60012;
  transition:all .35s ease;
}

.footer-column ul li a:hover{
  color:#fff;
  padding-left:12px;
}

.footer-column ul li a:hover::before{
  opacity:1;
  left:0;
}

/* SOCIAL */
.social-icons{
  display:flex;
  gap:14px;
  margin-top:14px;
  flex-wrap:wrap;
}

.social-icons img{
  width:38px;
  height:38px;
  background:#ffffff20;
  padding:8px;
  border-radius:8px;
  transition:all .4s ease;
}

.social-icons img:hover{
  background:#e60012;
  transform:translateY(-6px) scale(1.05);
  box-shadow:0 10px 25px #e6001240;
}

/* BUTTON */
.contact-btn{
  display:inline-block;
  margin-top:20px;
  background:linear-gradient(135deg,#e60012,#ff2c3d);
  color:#fff;
  padding:13px 30px;
  text-decoration:none;
  border-radius:30px;
  font-size:14px;
  letter-spacing:.5px;
  transition:all .4s ease;
  box-shadow:0 10px 30px #e6001233;
}

.contact-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px #e6001260;
  color:#fff;
}

/* BOTTOM BAR */
.footer-bottom{
  text-align:center;
  font-size:13px;
  color:#c0c0c0;
  margin-top:60px;
  background:#2f2f2f;
  padding:16px 10px;
  position:relative;
}

.footer-bottom::before{
  content:'';
  position:absolute;
  top:0;
  left:50%;
  width:0;
  height:2px;
  background:#e60012;
  transform:translateX(-50%);
  animation:bottomLine 1.2s ease forwards;
}

@keyframes bottomLine{
  to{width:120px;}
}

/* RESPONSIVE */
@media(max-width:992px){
  .footer-container{gap:30px;}
}

@media(max-width:600px){
  .footer{
    padding:50px 15px 0;
    text-align:center;
  }
  .footer-column h3::after{
    left:50%;
    transform:translateX(-50%);
  }
  .social-icons{
    justify-content:center;
  }
}

