@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
    --primary-color: #007bff;
    --secondary-color:  rgb(255 120 0);
    --text-color: #333;
}
/*SCROLLBAR CSS*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #9a9a9a;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}
::selection {    
    background-color: var(--primary-color);
    color: #FFF;
}
body {
    font-family: "Manrope", sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* UNDERLINE CSS */
.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.dropdown-menu {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}
.dropdown-item {
  padding: 10px 20px;
  transition: background 0.3s ease;
}
.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.05);
}
.btn-glass {
  background: var(--secondary-color);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
}
.btn-glass:hover {
  border: 1px solid var(--secondary-color);
  background: rgba(255, 255, 255, 0.35);
  color: var(--text-color);
}
a, button {
  transition: all 0.3s ease-in-out;
}
/* DROAPDOWN CSS */

.nav-link.hover-underline {
  position: relative;
}
.nav-link.hover-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #007bff;
  transition: width 0.3s ease;
}
.nav-link.hover-underline:hover::after {
  width: 100%;
}
.dropdown-item i {
  font-size: 1rem;
}
.dropdown-menu.custom-dropdown {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-toggle::after {
  content: none !important;
}

/* CAROUSEL CSS */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 70%);
  z-index: 1;
}
.carousel-caption.text-start {
    z-index: 2;
    top: 40%;
}
.carousel-caption h1 span {
  color: var(--primary-color);
}
/* ABOUT SEC */
.who-we-are-section {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}
.image-wrapper {
  height: 100%;
  min-height: 350px;
}
.icon-circle {
  width: 45px;
  height: 45px;
  background: #e9f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
/* HOW WE DELEVER */
.how-we-deliver {
  background-color: #f8fbfd;
  position: relative;
}
.badge-box {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
}
.badge-icon {
  font-size: 20px;
  color: #007bff;
  margin-right: 10px;
}
.step-circle {
  width: 40px;
  height: 40px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}
.process-step {
  display: flex;
  align-items: flex-start;
}
/* SERVICES CSS */
.services-section {
  background: #ffffff;
}
.service-card {
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.service-card:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}
.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
/* CLIENT REVIEW CSS */
.client-reviews-section {
  background-color: #f9f9f9;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
}
.section-subtitle {
  font-size: 1rem;
  color: #555;
}
.review-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0d6efd;
}
.review-content {
  flex: 1;
}
.review-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  font-weight: 600;
  font-size: 1.2rem;
  color: #212529;
}
.review-role {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 0.5rem;
}
.review-stars {
  color: #ffc107;
  font-size: 1.1rem;
}
/* CONTACT FORM */
.contact {
    background: linear-gradient(to right, #1d2b64, #f8cdda);
}
.form-section, .info-box {
    background-color: #f1f3f6;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.form-control {
    border-radius: 8px;
    box-shadow: none;
}
.info-box i {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-right: 10px;
}
.info-box strong {
    color: #2c3e50;
}
/* FAQ */
.faq-section {
    padding: 60px 20px;
}
.accordion-button:focus {
box-shadow: none !important;
border-color: transparent !important;
outline: none !important;
}
.accordion-item {
    background-color: #f1f3f6;
    border: 1px solid #ddd;
    border-radius: 12px !important;
    margin-bottom: 15px;
    padding: 10px 20px;
}
.accordion-button {
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 0;
}
.accordion-button:not(.collapsed) {
    color: #2c3e50;
    background-color: transparent;
    box-shadow: none;
}
.accordion-body {
    padding: 0 0 1rem 0;
    color: #444;
}
/* FOOTER CSS */
.custom-link-list li {
  margin-bottom: 9px;
}
.custom-footer-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.custom-footer-link i {
  color: var(--secondary-color);
  margin-right: 8px;
  transition: color 0.3s ease;
  font-size: 1rem;
}
.custom-footer-link:hover {
  color: var(--text-color);
}
.custom-footer-link:hover i {
  color: var(--secondary-color);
}
.contact-info-list {
  color: #333;
  font-size: 15px;
}
.contact-icon {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-top: 2px;
}
.contact-link {
  text-decoration: none;
  color: var(--text-color);
  display: inline-block;
  transition: color 0.3s ease;
}
.contact-link:hover {
  color: var(--text-color);
  text-decoration: underline;
}
/* BACKTO TOP CSS */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  display: none;
}
.back-to-top-btn:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
/*  */
.transition-hover {
  transition: transform 0.4s ease;
}
.transition-hover:hover {
  transform: scale(1.03);
  z-index: 2;
}
/* RMM CSS */
.rmm-section {
  background: url('../assets/images/security_bg.jpg') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}
.rmm-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.rmm-section .container {
  z-index: 2;
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
}
/* TABLE CSS */
table td,
table th {
  vertical-align: middle !important;
  font-size: 1rem;
}
thead th {
  font-size: 1.1rem;
}
.btn {
  font-weight: 600;
  font-size: 1rem;
}
.p-6 {
  padding: 4rem;
}
/* MISSION CSS */
.mission-section {
    background-color: #f1f7fa;
    padding: 50px 0;
}
.mission-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.mission-icon {
    font-size: 1rem;
    color: #007bff;
}
.mission-text {
    font-size: 15px;
    color: #333;
}
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #007bff;
}
.empowering-title {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    margin-top: 30px;
}
.empowering-text {
    font-size: 15px;
    color: #6c757d;
}
.image-section {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* HISTORY */
.history-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}
.history-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.history-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.history-text {
    font-size: 1.1rem;
    color: #333;
}
.history-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
}
.history-stat {
    font-size: 17px;
    color: var(--text-color);
}
.history-number {
    font-size: 25px;
    font-weight: 700;
    color: var(--secondary-color);
}
.image-section {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* TIMELINE */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}
.timeline-item .timeline-icon {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.timeline-item .timeline-content {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-left: 15px;
    width: 80%;
}
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 15px;
}
.timeline-item:nth-child(odd) .timeline-icon {
    margin-left: auto;
}
.timeline-item:nth-child(odd) .timeline-content {
    background-color: #e9ecef;
}
.timeline .timeline-year {
    font-weight: bold;
    color: #007bff;
}
/* EXPERTISE CSS */
.exper {
  background-color: #f8f9fa;
}
.card-title {
  color: var(--secondary-color);
}
.border-o {
  border-color: var(--secondary-color);
}
/* FAQ PAGE CSS */
.tab-content {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

  .tab-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }

  .nav-tabs .nav-link {
    border: none;
    border-radius: 50px;
    margin: 0 10px;
    padding: 10px 20px;
    font-weight: bold;
  }

  .nav-tabs .nav-link.active {
    background-color: #f58220;
    color: white;
  }

  .nav-tabs .nav-link:hover {
    background-color: #f58220;
    color: white;
  }

  .faq-item {
    margin-bottom: 15px;
  }

  .faq-item h5 {
    font-size: 1.2rem;
    cursor: pointer;
  }

  .faq-item p {
    font-size: 1rem;
    margin-top: 5px;
    color: #555;
  }

  .faq-item .collapse {
    padding-left: 20px;
  }

  .faq-item .collapse.show {
    margin-top: 10px;
  }