/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  @font-face {
    font-family: 'MyFont';
    src: 
         url('fonts/TTNormsProCompact-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  body, html {
    height: 100%;
    font-family: sans-serif;
  }
  
  .row{
    padding-top: 50px;
    
  }
  .col-{
    border: 2px solid white;
    padding: 16px;
    border-radius: 8px;
  }
  .border{
    border: 2px solid white;
    padding: 16px;
    border-radius: 8px;
  }
  .video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;   /* full viewport width */
  height: 100vh;  /* full viewport height */
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it fills the area like background-size: cover */
}

  /* Background image */
  body {
    background-image: url('images/bg7.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    font-family: 'MyFont', sans-serif;

    padding-top: 80px;
  }
  
  /* Transparent Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4); /* semi-transparent */
    backdrop-filter: blur(4px);           /* optional blur */
    z-index: 1000;
  }
  
  /* Push content down to avoid overlap */
  .hero {
    padding-top: 100px;  /* Adjust depending on navbar height */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* Logo and Nav */
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover {
    color: #ddd;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .title{
    align-items: flex-end;
  }
  .container{
    padding-top: 20px;
  }
  .btn-primary {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border: none;
  }
  
  .btn-outline-light {
    color: #fff;
    border-color: #fff;
  }
  
  .btn-outline-light:hover {
    background: #fff;
    color: #000;
  }
.blurry{
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(5px);
    padding: 20px;
}  
.footer {
    background-color: rgba(0, 0, 0,0.8); 
      color: #fff;
    margin-top: 20px;  
      text-align: center;
    margin-bottom: 0;
    bottom: 0;
    
    }

    .footer a {
      color: #aaa;
      text-decoration: none;
      margin: 0 10px;
      transition: color 0.3s;
    }

    .footer a:hover {
      color: #fff;
    }

    .footer .logo {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      display: block;
    }
    .services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service box */
.service-box {
 background-color: rgba(0, 0, 0, 0.4); 
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px; /* equal height for all */
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background: linear-gradient(45deg, #6a11cb, #2575fc);
}

/* Title */
.service-box h2 {
  
  margin-bottom: 20px;
  color: white;
}

/* Description */
.service-box p {
  font-size: 0.95rem;
  color: white;
  line-height: 1.5;
}

    @media (min-width: 600px) {
      .footer {
        text-align: left;
        padding: 40px 80px;
      }
    }
    .circle-card {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #7c8b9b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 15px;
  flex-direction: column;
}

/* Icon visible initially */
.circle-card .icon {
  font-size: 2rem;
  transition: all 0.4s ease;
  opacity: 1;
}

/* Description hidden initially */
.circle-card .description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
}

/* On hover expand */
.circle-card:hover {
  width: auto;
  height: auto;
  min-height: 120px;
  border-radius: 20px;
  justify-content: flex-start;
  padding: 10px 15px 15px; /* ⬅️ reduced top padding */
}

/* Icon fades out */
.circle-card:hover .icon {
  opacity: 0;
  transform: scale(0.8);
  height: 0; /* ⬅️ collapses icon space */
  margin: 0;
  padding: 0;
}

/* Description fades in */
.circle-card:hover .description {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  margin-top: 5px; /* ⬅️ tighter spacing above "Security" */
}
/**********************************************************************************************/
.core-circle {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: 50px auto;
  background-color:  rgba(0, 0, 0, 0.4); 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Center text */
.center-text {
  position: absolute;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: white !important; /* <-- force white text */
  opacity: 0.9;
  padding: 10px;
}


/* Circle items */
.circle-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #7c8b9b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  transition: background 0.3s ease;
}

/* Hover effect (only color change) */
.circle-item:hover {
  background: #3e4a56;
}

/* Positions around circle */
.reliability     { top: 8%;  left: 50%; transform: translate(-50%, -50%); }
.innovation      { top: 40%; left: 92%; transform: translate(-50%, -50%); }
.professionalism { bottom: 20%;  right: 50%;transform: translate(-50%, 50%); }
.safety          { top: 40%; left: 10%;  transform: translate(-50%, -50%); }
.mobility        { bottom: 0%; left: 80%; transform: translate(-50%, -50%); }
/*************************************************************************************************************************/
.values-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

/* Each row */
.value-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  transition: background 0.3s ease;
  cursor: pointer;
}  

.value-item:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}



/* Circle icon */
.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:#0541aa ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-item:hover .icon {
  background:     #2575fc;
  transform: scale(1.1);
  
}

/* Text */
.text {
  margin-left: 25px;
  opacity: 1;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

.value-item:hover .text {
  opacity: 1;
  transform: translateX(0);
}

.text h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

.text p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 500px) {
  .value-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text {
    margin-left: 0;
    margin-top: 10px;
    transform: translateY(-10px);
  }

  .value-item:hover .text {
    transform: translateY(0);
  }
}
/***************************************************************************************/
.swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  width: 50%;
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.bi-patch-check-fill{

 color: rgb(53, 53, 224);
  padding: 5px;
}
/*********************************************************/
.counter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
 
}

.counter-box {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
}

.counter {
  font-size: 3rem;
  color: #ffffff; /* Green */
}

.plus {
  font-size: 2rem;
  color: #27ae60;
}
/*********************************************************/
.image-frame {
  display: inline-block;
  padding: 0px; /* space between image & frame */
  border: 5px solid #2c3e50; /* frame color */
  border-radius: 12px; /* rounded corners (optional) */
  background-color: #fff; /* inside frame background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* shadow for depth */
}

.image-frame img {
  max-width: 100%;
  height: 300px;
  display: block;
  border-radius: 8px; /* match frame rounding */
}
/**********************************************************************************************************************/
/* Hidden state */
/* Hidden state */
.hidden {
  opacity: 0;
  transform: translateX(600px); /* start shifted to the right */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Visible state */
.show {
  opacity: 1;
  transform: translateX(0); /* normal position */
}
/* From right → */
.hidden-right {
  opacity: 0;
  transform: translateX(50px); /* shifted right */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show-right {
  opacity: 1;
  transform: translateX(0);
}

/* From left ← */
.hidden-left {
  opacity: 0;
  transform: translateX(-300px); /* shifted left */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show-left {
  opacity: 1;
  transform: translateX(0);
}


/***********************************************************************************/
.carousel {
  position: relative;
  width: 100%;              /* full width of parent column */
  margin: auto;

  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 100%;              /* each slide takes full carousel width */
  flex-shrink: 0;
  object-fit: cover;        /* keep images proportional */
  border-radius: 10px;
}

/*************************************************************************************************/
.contact-form {
  
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.contact-form .form-label {
  font-weight: 600;
  color: white;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
}

.contact-form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.btn-submit {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 12px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: scale(1.05);
}
a{
  color: white;
}
a:hover{
color: blue;
}
/***************************************************************************/
.service-card {
  position: relative;
  width: 100%;
  background: #1a228a;
  background-color: rgb(0, 0, 0,0.5);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  /* remove overflow: hidden; */
  transition: all 0.5s ease;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible; /* <-- allow image to stick out */
}

/* Title visible initially */
.card-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  transition: color 0.3s ease;
}

/* Hidden details initially */
.card-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.6s ease, max-height 0.6s ease;
  margin-top: 15px;
}

/* Hidden image initially */
.card-image {
  position: absolute;
  right: -50px; /* half outside */
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  width: 250px;
  opacity: 0;
  transition: all 0.6s ease;
}

.card-image img {
  width: 100%;
  height: auto;   /* keeps proportions */
  max-height: 300px; /* resize limit */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

/* Hover effect */
.service-card:hover {
  background:linear-gradient(135deg, #3a03ff, #0c3f72);
}

.service-card:hover .card-details {
  opacity: 1;
  max-height: 500px;
}

.service-card:hover .card-image {
  right: -80px; /* slide more into view */
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.service-card:hover .card-title {
  color: #ffffff;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .card-image {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin-top: 20px;
    width: 100%;
    opacity: 0; /* hidden by default */
  }

  .service-card:hover .card-image {
    opacity: 1;
    transform: scale(1);
  }

  .card-image img {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
  }
}
/* Arrow icon styling */
.arrow-down {
      display: none;
      
}

.service-card:hover .arrow-right {
  display: none; /* rotate arrow down */
}
.service-card:hover .arrow-down {
  display: contents; /* rotate arrow down */
}

/*****************************************************************************************/
 svg {
      width: 100%;
      height: auto;
    }

    /* Default state styles */
    .state {
      fill: #91dd26;
      stroke: #546e7a;
      stroke-width: 1;
      cursor: pointer;
      transition: fill 0.3s ease;
    }

    /* Hover highlight */
    .state:hover {
      fill: #000101;
    }

    /* Tooltip */
    .tooltip {
      position: absolute;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 14px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s ease;
    }