:root {
      --primary-red: #e60012;
      --secondary-red: #c80010;
      --navbar-dark-bg: #231f20;
      --navbar-yellow: #fcfcfc;
    }

    .top-bar {
      background: #000;
      color: #fff;
      padding: 10px 0;
    }

    .navbar-logo {
      height: 50px;
    }

    .customer-care {
      font-size: 1.5rem;
      font-weight: 400;
    }

    .search-box input {
      border-radius: 0;
    }

    .search-box .btn {
      border-radius: 0;
      background: #ccc;
      color: #222;
    }

    .social-icons .fa {
      font-size: 1.5rem;
      margin-left: 10px;
      color: #fff;
    }

    .social-icons .fa-facebook {
      color: #3b5998;
    }

    .social-icons .fa-blogger {
      color: #ff8000;
    }

    /* Main Navbar Background */
    .main-navbar {
      background: linear-gradient( #fd0000 0%, #6e0101 100%);
      border-bottom: 2px solid #fff;
      font-size: large;
      /*font-family: 'Cambria', 'Cochin', Georgia, Times, 'Times New Roman', serif;*/
    }

    /* Nav Items */
    .main-navbar .nav-item {
      position: relative;
    }

    /* Remove divider line for now */
    .main-navbar .nav-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      height: 18px;
      width: 0;
      z-index: 2;
      opacity: 0.8;
    }

    /* Nav Links */
    .main-navbar .nav-link {
      position: relative;
      display: inline-block;
      overflow: hidden;
      height: 26px;
      background: transparent !important;
      color: #fff !important;
      transition: none;
      padding: 0 18px;
    }

    /* Hover sliding effect */
    .main-navbar .nav-link span {
      display: block;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-navbar .nav-link span::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      color: #fff;
    }

    .main-navbar .nav-link:hover span,
    .main-navbar .nav-link:focus span {
      transform: translateY(-100%);
    }

    /* Keep hover text color same */
    .main-navbar .nav-link:hover,
    .main-navbar .nav-link:focus {
      background: transparent !important;
      color: #fff !important;
    }

    /* Disable Bootstrap underline animation */
    .main-navbar .nav-link::after,
    .main-navbar .nav-link:hover::after {
      display: none;
    }

    /* ----------------- Dropdown Menu ----------------- */
    .main-navbar .dropdown-menu {
      /* background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
       */
       background:rgb(167, 8, 8);
      border: none;
      padding: 0;
      display: none;
      /* hidden by default */
      min-width: 225px;
    }

    /* Show dropdown on hover */
    .main-navbar .dropdown:hover>.dropdown-menu {
      display: block;
    }

    /* Dropdown Items */
    .main-navbar .dropdown-item {
      background: transparent !important;
      color: #fff !important;
      padding: 4px 18px;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
    }

    /* Apply same sliding effect */
    .main-navbar .dropdown-item span {
      display: block;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-navbar .dropdown-item span::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 100%;
      width: 100%;
      color: #fff;
    }

    .main-navbar .dropdown-item:hover span,
    .main-navbar .dropdown-item:focus span {
      transform: translateY(-100%);
    }

    /* ----------------- Submenu (Diagnostic) ----------------- */
    .dropdown-submenu {
      position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
      top: 0;
      left: 100%;
      /* open to the right */
      margin-top: 0;
    }

    /* Show submenu on hover */
    .dropdown-submenu:hover>.dropdown-menu {
      display: block;
    }



    .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../img/dna.jpg') center/cover no-repeat;
      background-color: white;
      color: #fff;
      text-align: center;
      padding: px 20px;
    }
 .hero-section1 {
   
      background-color: white;
      color: #fff;
      text-align: center;
      padding: px 20px;
    }
    .carousel-caption span {
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .icon-block {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .icon-block:hover {
      transform: translateY(-5px) scale(1.05);
      /* Lift and grow slightly */
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      /* Subtle shadow */
    }

    .icon-block i {
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .icon-block:hover i {
      transform: scale(1.2);
      /* Icon grows slightly */
      color: #ffd600;
      /* Icon color change on hover */
    }


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

.container1 {
    /* max-width: 1200px; */
    /* border-radius: 20px; */
    background: linear-gradient(rgba(238, 24, 24, 0.842), rgba(255, 18, 18, 0.829)), url('../img/dna.jpg') center center no-repeat;
    background-size: cover;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    /* border: 4px solid #fff; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    /* Optional: subtle inner shadow for depth */
    /* box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 0 20px rgba(255,255,255,0.08); */
}

    /* .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(-30px);
            animation: fadeInUp 1s ease-out 0.3s forwards;
        } */

    body,
    .container1,
    .section-header h2,
    .feature-title,
    .feature-description {
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 400;
      letter-spacing: 0.5px;
    }

    .section-header h2 {
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .feature-title {
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 500;
    }

    .feature-description {
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 400;
      font-size: 1rem;
    }

    .section-header h2 {
      font-size: 2.8rem;
      color: white;
      margin-bottom: 1rem;
      font-weight: 300;
      letter-spacing: 1px;
    }

    .section-header::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: white;
      margin: 1.5rem auto 0;
      border-radius: 2px;
    }

    .features-container1 {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
      margin: 0rem 0px;
      padding: 37px 0px;
      flex-wrap: wrap;
    }

    .feature-item {
      flex: 1;
      min-width: 200px;
      text-align: center;
      opacity: 0;
      transform: translateY(50px);
      animation: slideInUp 0.8s ease-out forwards;
    }

    .feature-item:nth-child(1) {
      animation-delay: 0.5s;
    }

    .feature-item:nth-child(2) {
      animation-delay: 0.7s;
    }

    .feature-item:nth-child(3) {
      animation-delay: 0.9s;
    }

    .feature-item:nth-child(4) {
      animation-delay: 1.1s;
    }

    .feature-item:nth-child(5) {
      animation-delay: 1.3s;
    }

    .icon-circle {
      width: 120px;
      height: 120px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      margin: 0 auto 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
    }

    /* Blinking/Pulsing Animation */
    .icon-circle {
      animation: pulse 2.5s ease-in-out infinite;
    }

    .icon-circle:nth-child(1) {
      animation-delay: 0s;
    }

    .feature-item:nth-child(2) .icon-circle {
      animation-delay: 0.5s;
    }

    .feature-item:nth-child(3) .icon-circle {
      animation-delay: 1s;
    }

    .feature-item:nth-child(4) .icon-circle {
      animation-delay: 1.5s;
    }

    .feature-item:nth-child(5) .icon-circle {
      animation-delay: 2s;
    }

    /* Pulsing ring effect */
    .icon-circle::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      animation: pulseRing 2.5s ease-in-out infinite;
    }

    .feature-item:nth-child(2) .icon-circle::before {
      animation-delay: 0.5s;
    }

    .feature-item:nth-child(3) .icon-circle::before {
      animation-delay: 1s;
    }

    .feature-item:nth-child(4) .icon-circle::before {
      animation-delay: 1.5s;
    }

    .feature-item:nth-child(5) .icon-circle::before {
      animation-delay: 2s;
    }

    /* Icon styling */
    .icon-circle svg {
      width: 50px;
      height: 50px;
      fill: none;
      stroke: white;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .feature-title {
      font-size: 1.4rem;
      color: white;
      font-weight: 400;
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
    }

    .feature-description {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 220px;
      margin: 0 auto;
    }

    /* Keyframe animations */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.05);
      }

      50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.1);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.05);
      }
    }

    @keyframes pulseRing {
      0% {
        transform: scale(1);
        opacity: 0.3;
      }

      50% {
        transform: scale(1.1);
        opacity: 0.1;
      }

      100% {
        transform: scale(1.2);
        opacity: 0;
      }
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Hover effects */
    .feature-item:hover .icon-circle {
      animation-play-state: paused;
      transform: scale(1.05);
      border-color: rgba(255, 255, 255, 1);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }

    .feature-item:hover .icon-circle::before {
      animation-play-state: paused;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .features-container1 {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
      }

      .feature-item {
        min-width: 250px;
      }

      .section-header h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 480px) {
      .container1 {
        padding: 0 1rem;
      }

      .icon-circle {
        width: 100px;
        height: 100px;
      }

      .icon-circle svg {
        width: 40px;
        height: 40px;
      }
    }

    /* Hover effect for the contact button */
    .contact-btn:hover {
      background: #fff;
      color: #c80010;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .contact-btn:hover span {
      background: #c80010;
      color: #fff;
      transform: translateX(4px);
    }

    /* Small animation for the arrow on hover */
    .contact-btn span {
      transition: all 0.3s ease;
    }

    @media (max-width: 768px) {
      .contact-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
      }
    }

    html,
    body {
      width: 100vw;
      max-width: 100vw;
      overflow-x: hidden;
    }

    .container-fluid,
    .row {
      margin-right: 0 !important;
      margin-left: 0 !important;
      padding-right: 0 !important;
      padding-left: 0 !important;
    }

    /* Social Icons Vertical */
    .wrapper{
  display:flex;
  height: 40px;
  flex-direction: row;
  padding: 71px 20px 0px 20px;
  align-items: center;
  justify-content: center;
  
}



.fab {
margin: auto;

}
.social{
  color: #FFF;
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social:hover {
	text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
	transition: all ease 0.5s;
	-moz-transition: all ease-in 0.5s;
	-webkit-transition: all ease-in 0.5s;
	-o-transition: all ease-in 0.5s;
  
}

.facebook {
 color:#4267B2;
}
.youtube {
      color:#c4302b;
}
.instagram {
 color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;

}
.bg-ico {
  display: flex;
  background-color: transparent;/*#049ef8*/
  width: 40px;
  height: 40px;
  line-height: 90px;
  margin: 0 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
  opacity: 0.99;
  -webkit-transition: background-color 2s ease-out;
  -moz-transition: background-color 2s ease-out;
  -o-transition: background-color 2s ease-out;
  transition: background-color 2s ease-out;
  
}
.bg-ico:hover{
     box-shadow: 0 5px 15px -5px rgba(0,0,0,0.8);
}

#facebook {
  background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgb(0, 195, 255));
}


#youtube {
      background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgb(0, 195, 255));
}

#instagram {
 /*background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);*/
  background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgb(0, 195, 255));
  

}
#facebook,#instagram,#youtube{
  background-color: #95B2DD,#71A7E6,#226AB5;
}


.facebook:hover, 
.youtube:hover, 
.instagram:hover
{ color:#fff;
 transform: scale(.3);

}



    .footer-social-vertical {
      position: absolute;
      top: 50%;
      right: 24px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 10;
    }

    .footer-social-icon {
      width: 32px;
      height: 32px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
      transition: transform 0.2s, background 0.2s, color 0.2s;
      color: #222;
      /* Icon color */
    }

    .footer-social-icon.facebook i,
    .footer-social-icon.linkedin i,
    .footer-social-icon.google i {
      font-size: 1.25rem;
    }

    /* Hover effects with different colors */
    .footer-social-icon.facebook:hover {
      transform: scale(1.08);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
      background: #3b5998;
      /* Facebook blue */
      color: #fff;
    }

    .footer-social-icon.linkedin:hover {
      transform: scale(1.08);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
      background: #0077b5;
      /* LinkedIn blue */
      color: #fff;
    }

    .footer-social-icon.google:hover {
      transform: scale(1.08);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
      background: #db4437;
      /* Google red */
      color: #fff;
    }

    .contact-icon {
      color: #e60012;
      /* original color */
      transition: color 0.3s ease;
      /* smooth transition */
    }

    .contact-icon:hover {
      color: #f7f7f7;
      /* color on hover */
    }

    .contact-info div {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      font-size: 0.85rem;
      color: #fff;
    }

    .contact-info div div {
      line-height: 1.2;
    }



    .mian-logo>span {
      font-size: 1.35em;
    }

    .main-header {
      z-index: 999;
    }

    hr.border-light {
      max-width: 300px;
      opacity: 0.9;
    }

    .carousel-item {
      transition: transform 1s ease-in-out;
     
    }

    
    .carousel-caption {
      top: 48%;
      transform: translate(0, -50%);
      bottom: auto;
      left: 0;
      right: 0;
      width: 0;
      opacity: 0;
      overflow: hidden;
      text-align: left;
    }

    .carousel-item.active .carousel-caption {
      animation:widthSlide  3.5s 1;
      opacity: 1;
      z-index: 999;
      width: 100%;
    }
    .carousel-item1.active .carousel-caption {
      animation:widthSlide  3.5s 1;
      opacity: 1;
      z-index: 999;
      width: 100%;
    }
    
    
    @keyframes widthSlide {
      0% {
        width: 0%;
        opacity: 0;
      }

      50% {
        width: 100%;
        opacity: 1;
      }

      100% {
        width: 100%;
        opacity: 1;
      }
    }

    .carousel-caption h5 {
      font-size: 5em;
      text-transform: uppercase;
      font-weight: 900;
      /*-webkit-text-stroke: 2px #000000;*/
      text-shadow: 2px 2px #010101;
      color: #00000059;
      position: relative;
      width: fit-content;
      padding-right: 10px;
      padding-top: 40%;
    }

    .carousel-caption h5:after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      bottom: -20px;
      opacity: 1;
    }

    .carousel-item.active .carousel-caption h5:after {
      width: 10%;
      height: 4px;
      /* animation:  2.5s 1; */
      opacity: 0;
    }
.carousel-item1.active .carousel-caption h5:after {
      width: 10%;
      height: 4px;
      /* animation:  2.5s 1; */
      opacity: 0;
    }
    @keyframes titleCover {
      0% {
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
      }

      20% {
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
      }

      30% {
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
      }

      55% {
        left: 0;
        right: 0;
        width: 100%;
        height: 5px;
        opacity: 1;
      }

      95% {
        left: 0;
        right: 0;
        width: 10%;
      }

      100% {
        left: 0;
        right: 0;
        width: 10%;
        opacity: 0.5;
      }
    }
.carousel-caption h5 {
  font-size: 3rem;
  font-weight: bold;
  color: rgb(255, 0, 0);
  /* background-image: url('../img/back.jpg');  */
  background-size: 200%;
  background-position: 0 50%;
  background-clip: text;
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  /* animation:  infinite alternate linear,
             dropIn 1s ease-out forwards; */
  opacity: 0; /* fade in with drop */
}

.carousel-caption p {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff; /* Make text visible */
  /* Remove background-clip and text-fill-color for normal text */
  /* background-clip: text; */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* animation:  infinite alternate linear,
            ; */
  opacity: 0;
}

/* HR as animated line */
/*.carousel-caption hr {
  border: none;
  height: 4px;
  /* background-image: url('../img/back.jpg'); */
  /*background-size: 200%;
  background-position: 0 50%;
  animation: animate-background 5s infinite alternate linear,
             expandLine 1.5s ease-out forwards;
  border-radius: 2px;
  opacity: 0;
}*/

/* Background scroll */
/* @keyframes animate-background {
  0% { background-position: 0 50%; }
  100% { background-position: 100% 50%; }
} */

/* Drop-in animation */
/* @keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Line expansion animation */
/* @keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}  */

/* Hover effects */
.carousel-caption h5:hover,
.carousel-caption p:hover {
  transform: scale(1.05) rotate(-1deg);
  transition: transform 0.4s ease, text-shadow 0.4s ease;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
}

.carousel-caption hr:hover {
  transform: scaleY(1.5);
  transition: transform 0.3s ease;
}



    
    .carousel-item>img {
      height: 100vh;
      object-fit: cover;
      transform: scale(1);
    }
    .carousel-item1>img {
      height: 100vh;
      object-fit: cover;
      transform: scale(1);
    }

    .carousel-item.active>img {
      transform: scale(4);
      animation: bgScale 200s 1;
    }

    @keyframes bgScale {
      0% {
        transform: scale(1);
      }

      100% {
        transform: scale(4);
      }
    }

    /* .carousel-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgb(0 0 0 / 40%);
      z-index: 99;
    } */

    .carousel-caption p {
      font-size: 1.35em;
      font-weight: 600;
      text-transform: uppercase;
    }

    .carousel-caption * {
      white-space: nowrap;
    }

    .carousel-indicators {
      right: 10px;
      left: auto;
      margin: 0;
      width: 25px;
      flex-wrap: wrap;
      bottom: auto;
      top: 45%;
      transform: translate(0, -50%);
      gap: 10px;
      z-index: 9999;
    }

    .carousel-indicators [data-bs-target] {
      width: 15px;
      height: 15px;
      border-radius: 100px;
      border: none;
    }


/* Raising text effect */
@keyframes raiseText {
  0% {
    opacity: 0;
    transform: translateY(50px); /* start lower */
  }
  60% {
    opacity: 1;
    transform: translateY(-10px); /* slight overshoot */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* settle in */
  }
}

.carousel-caption h5,
.carousel-caption p,
.carousel-caption hr,
.carousel-caption .banner-btn {
  opacity: 0;
  transform: translateY(50px);
}

/* Animate when active */
.carousel-item.active .carousel-caption h5 {
  animation: raiseText 1s ease-out forwards;
}
.carousel-item1.active .carousel-caption h5 {
  animation: raiseText 1s ease-out forwards;
}
.carousel-item.active .carousel-caption hr {
  animation: raiseText 1.2s ease-out forwards;
}
.carousel-item1.active .carousel-caption hr {
  animation: raiseText 1.2s ease-out forwards;
}
.carousel-item.active .carousel-caption p {
  animation: raiseText 1.4s ease-out forwards;
}
.carousel-item1.active .carousel-caption p {
  animation: raiseText 1.4s ease-out forwards;
}
.carousel-item.active .carousel-caption .banner-btn {
  animation: raiseText 1.6s ease-out forwards;
}
.carousel-item1.active .carousel-caption .banner-btn {
  animation: raiseText 1.6s ease-out forwards;
}


    li.nav-item>a:after {
      content: '';
      position: absolute;
      height: 3px;
      background: white;
      left: 0;
      bottom: -10px;
      right: 0;
      margin: 0 auto;
      opacity: 0;
      width: 85%;
      transition: 0.3s all ease-in-out;
    }

    li.nav-item>a.active:after,
    li.nav-item>a:hover:after {
      bottom: 0;
      opacity: 0.8;
    }

    li.nav-item>a {
      position: relative;
    }


    @media screen and (max-width: 991px) {
      .carousel-caption h5 {
        font-size: 3.5em;
      }

      .carousel-caption p {
        font-size: 1em;
        font-weight: 900;
        text-transform: uppercase;
      }
    }

    @media screen and (max-width: 768px) {
      .carousel-caption h5 {
        font-size: 3.5em;
      }

      .carousel-caption p {
        font-size: 1em;
        font-weight: 600;
      }

      .carousel-item img {
        height: 80vh;
        filter: brightness(2);
      }

      .mian-logo>span {
        font-size: 1em;
      }

      .carousel-indicators {
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
        flex-wrap: nowrap;
        top: auto;
        transform: unset;
        width: auto;
        gap: 5px;
      }

      .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
      }
    }

    @media screen and (max-width: 575px) {
      .carousel-caption h5 {
        font-size: 2em;
      }

      .carousel-item img {
        height: 60vh;
      }

      .carousel-caption p {
        font-size: 0.75em;
      }

      .carousel-caption {
        width: 100%;
        opacity: 0;
      }

      .carousel-item.active .carousel-caption {
        animation: sample 2.5s 1;
        opacity: 1;
      }

      .carousel-caption * {
        white-space: unset;
      }

      @keyframes sample {
        0% {
          opacity: 0;
        }

        50% {
          opacity: 1;
        }

        100% {
          opacity: 1;
        }
      }

      .carousel-caption h5 {
        -webkit-text-stroke: 1px #E2FADB;
      }

      hr.border-light {
        max-width: 200px;
      }
    }

    @media screen and (max-width: 480px) {
      .carousel-caption h5 {
        font-size: 1.45em;
      }

      .carousel-caption p {
        font-size: 0.7em;
      }

      .carousel-item img {
        height: 50vh;
      }
    }

    .btn:hover {
      opacity: 1 !important;
      transform: scale(1.1);
    }


    .about-section {
      position: relative;
      padding: 120px 0px;
      
    }

    .about-section .content-column {
      position: relative;
      margin-bottom: 40px;
    }

    .about-section .content-column .inner-column {
      position: relative;
      padding-top: 50px;
      padding-right: 35px;
        
  
    }

    .about-section .content-column .text {
      position: relative;
      color: #777777;
      font-size: 15px;
      line-height: 2em;
      margin-bottom: 40px;
    }

    .about-section .content-column .email {
      position: relative;
      color: #252525;
      font-weight: 700;
      margin-bottom: 50px;
    }

    .about-section .image-column {
      position: relative;
      margin-bottom: 50px;
    }

    .about-section .image-column .inner-column {
      position: relative;
      padding: 40px 40px 0px 0px;
      margin-left: 50px;
    }

    .about-section .image-column .inner-column:after {
      position: absolute;
      content: '';
      right: 0px;
      top: 0px;
      left: 40px;
      bottom: 100px;
      z-index: -1;
      border: 2px solid #f30e0e;
    }

    .about-section .image-column .inner-column .image {
      position: relative;
    }

    .about-section .image-column .inner-column .image:before {
      position: absolute;
      content: '';
      left: -50px;
      bottom: -50px;
      width: 299px;
      height: 299px;
      background: url(img/pattern-2.png) no-repeat;
    }

    .about-section .image-column .inner-column .image img {
      position: relative;
      width: 100%;
      display: block;
    }

    .about-section .image-column .inner-column .image .overlay-box {
      position: absolute;
      left: 40px;
      bottom: 8px;
    }

    .about-section .image-column .inner-column .image .overlay-box .year-box {
      position: relative;
      color: #252525;
      font-size: 24px;
      font-weight: 700;
      line-height: 1.4em;
      padding-left: 125px;
    }

    .about-section .image-column .inner-column .image .overlay-box .year-box .number {
      position: absolute;
      left: 0px;
      top: 50px;
      width: 110px;
      height: 110px;
      color: #fc1010;
      font-size: 68px;
      font-weight: 700;
      line-height: 105px;
      text-align: center;
      background-color: #ffffff;
      border: 1px solid #000000;
    }

    .about-section .btn-style-three:before {
      position: absolute;
      content: '';
      left: 10px;
      top: 10px;
      z-index: -1;
      right: -10px;
      bottom: -10px;
      background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
    }

    .about-section .btn-style-three:hover {
      color: #ffffff;
      background: #ff0505;
    }

    .about-section .btn-style-three {
      position: relative;
      line-height: 24px;
      color: #252525;
      font-size: 15px;
      font-weight: 700;
      background: none;
      display: inline-block;
      padding: 11px 40px;
      background-color: #ffffff;
      text-transform: capitalize;
      border: 2px solid #ff0000;
      font-family: 'Arimo', sans-serif;
    }

    .sec-title2 {
      color: #fff;
    }

    .sec-title {
      position: relative;
      padding-bottom: 40px;

    }

    .sec-title .title {
      position: relative;
      color: #ff0000;
      font-size: 18px;
      font-weight: 700;
      padding-bottom: 8px;
      margin-bottom: 15px;
      display: inline-block;
      text-transform: capitalize;
        
    }

    .sec-title .title:before {
      position: absolute;
      content: '';
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background-color: #bbbbbb;
      border-radius: 1px;
    }


    .shadow-effect {
      background: #fff;
      padding: 20px;
      border-radius: 4px;
      text-align: center;
      border: 1px solid #ECECEC;
      box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
    }

    #customers-testimonials .shadow-effect {
      background: #fff;
      padding: 24px 18px;
      border-radius: 8px;
      text-align: center;
      border: 1px solid #ECECEC;
      box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
    }

    #customers-testimonials .shadow-effect p {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      line-height: 1.7;
      margin: 0 0 17px 0;
      font-weight: 400;
      color: #222;
      /* Dark text for readability */
    }

    .testimonial-name {
      margin: -17px auto 0;
      display: table;
      width: auto;
      background: #3190E7;
      padding: 9px 35px;
      border-radius: 12px;
      text-align: center;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    }

    #customers-testimonials .item1 {
      text-align: center;
      padding: 32px 12px 60px 12px;
      margin-bottom: 80px;
      opacity: .2;
      transform: scale3d(0.8, 0.8, 1);
      transition: all 0.8s ease-in-out;
    }

    #customers-testimonials .owl-item.active.center .item1 {
      opacity: 1;
      transform: scale3d(1.0, 1.0, 1);
    }

    .owl-carousel .owl-item img {
      max-width: 90px;
      margin: 0 auto 17px;
      border-radius: 50%;
      border: 2px solid #3190E7;
      background: #f7f7f7;
    }

    @media (max-width: 768px) {
      #customers-testimonials .shadow-effect {
        padding: 18px 8px;
      }

      #customers-testimonials .shadow-effect p {
        font-size: 1rem;
      }

      .testimonial-name {
        font-size: 0.95rem;
        padding: 7px 20px;
      }
    }

    .icon-block {
      border: 2px solid #3190e7 !important;
    }

    /* Add this to your <style> section */
    .about-section .content-column,
    .about-section .image-column {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-section.revealed .content-column,
    .about-section.revealed .image-column {
      opacity: 1;
      transform: translateX(0);
    }

    a,
    a:hover,
    a:focus,
    a:active {
      text-decoration: none;
      outline: none;
    }

    a,
    a:active,
    a:focus {
      color: #333;
      text-decoration: none;
      transition-timing-function: ease-in-out;
      -ms-transition-timing-function: ease-in-out;
      -moz-transition-timing-function: ease-in-out;
      -webkit-transition-timing-function: ease-in-out;
      -o-transition-timing-function: ease-in-out;
      transition-duration: .2s;
      -ms-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -webkit-transition-duration: .2s;
      -o-transition-duration: .2s;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    span,
    a,
    a:hover {
      display: inline-block;
      text-decoration: none;
      color: inherit;
    }

    .section-head {
      margin-bottom: 60px;
    }

    .section-head h4 {
      position: relative;
      padding: 0;
      color: #f91942;
      line-height: 1;
      letter-spacing: 0.3px;
      font-size: 34px;
      font-weight: 700;
      text-align: center;
      text-transform: none;
      margin-bottom: 30px;
    }

    .section-head h4:before {
      content: '';
      width: 60px;
      height: 3px;
      background: #f91942;
      position: absolute;
      left: 0px;
      bottom: -10px;
      right: 0;
      margin: 0 auto;
    }

    .section-head h4 span {
      font-weight: 700;
      padding-bottom: 5px;
      color: #2f2f2f
    }

    p.service_text {
      color: #cccccc !important;
      font-size: 16px;
      line-height: 28px;
      text-align: center;
    }

    .section-head p,
    p.awesome_line {
      color: #818181;
      font-size: 16px;
      line-height: 28px;
      text-align: center;
    }

    .extra-text {
      font-size: 34px;
      font-weight: 700;
      color: #2f2f2f;
      margin-bottom: 25px;
      position: relative;
      text-transform: none;
    }

    .extra-text::before {
      content: '';
      width: 60px;
      height: 3px;
      background: #f91942;
      position: absolute;
      left: 0px;
      bottom: -10px;
      right: 0;
      margin: 0 auto;
    }

    .extra-text span {
      font-weight: 700;
      color: #f91942;
    }

    .item {
      background: #fff;
      text-align: center;
      padding: 30px 25px;
      -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
      box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
      border-radius: 20px;
      border: 5px solid rgba(0, 0, 0, 0.07);
      margin-bottom: 30px;
      -webkit-transition: all .5s ease 0;
      transition: all .5s ease 0;
      transition: all 0.5s ease 0s;
    }

    .item:hover {
      background: #f91942;
      box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
      -webkit-transition: all .5s ease 0;
      transition: all .5s ease 0;
      transition: all 0.5s ease 0s;
    }

    .item:hover .item,
    .item:hover span.icon {
      background: #fff;
      border-radius: 10px;
      -webkit-transition: all .5s ease 0;
      transition: all .5s ease 0;
      transition: all 0.5s ease 0s;
    }

    .item:hover h6,
    .item:hover p {
      color: #fff;
      -webkit-transition: all .5s ease 0;
      transition: all .5s ease 0;
      transition: all 0.5s ease 0s;
    }

    .item .icon {
      font-size: 40px;
      margin-bottom: 25px;
      color: #f91942;
      width: 90px;
      height: 90px;
      line-height: 96px;
      border-radius: 50px;
    }

    .item .feature_box_col_one {
      background: rgba(247, 198, 5, 0.20);
      color: #f91942
    }

    .item .feature_box_col_two {
      background: rgba(255, 77, 28, 0.15);
      color: #f91942
    }

    .item .feature_box_col_three {
      background: rgba(0, 147, 38, 0.15);
      color: #f91942
    }

    .item .feature_box_col_four {
      background: rgba(0, 108, 255, 0.15);
      color: #f91942
    }

    .item .feature_box_col_five {
      background: rgba(146, 39, 255, 0.15);
      color: #f91942
    }

    .item .feature_box_col_six {
      background: rgba(23, 39, 246, 0.15);
      color: #f91942
    }

    .item p {
      color: #000000;
      font-size: 15px;
      line-height: 26px;
    }

    .item h6 {
      margin-bottom: 20px;
      color: #2f2f2f;
    }

    .mission p {
      margin-bottom: 10px;
      font-size: 15px;
      line-height: 28px;
      font-weight: 500;
    }

    .mission i {
      display: inline-block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      background: #f91942;
      border-radius: 50%;
      color: #fff;
      font-size: 25px;
    }

    .mission .small-text {
      margin-left: 10px;
      font-size: 13px;
      color: #666;
    }

    .skills {
      padding-top: 0px;
    }

    .skills .prog-item {
      margin-bottom: 25px;
    }

    .skills .prog-item:last-child {
      margin-bottom: 0;
    }

    .skills .prog-item p {
      font-weight: 500;
      font-size: 15px;
      margin-bottom: 10px;
    }

    .skills .prog-item .skills-progress {
      width: 100%;
      height: 10px;
      background: #e0e0e0;
      border-radius: 20px;
      position: relative;
    }

    .skills .prog-item .skills-progress span {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      background: #f91942;
      width: 10%;
      border-radius: 10px;
      -webkit-transition: all 1s;
      transition: all 1s;
    }

    .skills .prog-item .skills-progress span:after {
      content: attr(data-value);
      position: absolute;
      top: -5px;
      right: 0;
      font-size: 10px;
      font-weight: 600;
      color: #fff;
      background: rgba(0, 0, 0, 0.9);
      padding: 3px 7px;
      border-radius: 30px;
    }


    .social-fixed-insta {
      position: fixed;
      top: 30%;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9999;
    }

    /* Style each button */
    .social-fixed-insta a {
      width: 45px;
      height: 45px;
      background: #333;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border-radius: 8px 0 0 8px;
      font-size: 22px;
      text-decoration: none;
      transition: width 0.3s ease, background 0.3s ease;
      overflow: hidden;
      white-space: nowrap;
      padding-left: 10px;
      /* space for icon */
    }

    /* Expand button on hover */
    .social-fixed-insta a:hover {
      width: 160px;
    }

    /* Icon inside */
    .social-fixed-insta a i {
      margin-right: 10px;
    }

    /* Label (hidden by default) */
    .social-fixed-insta .social-label {
      font-size: 1rem;
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* Show label only on hover */
    .social-fixed-insta a:hover .social-label {

      opacity: 1;
    }

    /* Individual hover colors */
    .social-fixed-insta a.whatsapp:hover {
      background: #25d366;
    }

    .social-fixed-insta a.instagram:hover {
      background: #e4405f;
    }

    .social-fixed-insta a.facebook:hover {
      background: #1877f2;
    }

    .social-fixed-insta a.youtube:hover {
      background: #ff0000;
    }

    .social-fixed-fb {
      position: fixed;
      top: 38%;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9999;
    }

    /* Style each button */
    .social-fixed-fb a {
      width: 45px;
      height: 45px;
      background: #333;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border-radius: 8px 0 0 8px;
      font-size: 22px;
      text-decoration: none;
      transition: width 0.3s ease, background 0.3s ease;
      overflow: hidden;
      white-space: nowrap;
      padding-left: 10px;
      /* space for icon */
    }

    /* Expand button on hover */
    .social-fixed-fb a:hover {
      width: 160px;
    }

    /* Icon inside */
    .social-fixed-fb a i {
      margin-right: 10px;
    }

    /* Label (hidden by default) */
    .social-fixed-fb .social-label {
      font-size: 1rem;
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* Show label only on hover */
    .social-fixed-fb a:hover .social-label {

      opacity: 1;
    }

    /* Individual hover colors */
    .social-fixed-fb a.whatsapp:hover {
      background: #25d366;
    }

    .social-fixed-fb a.instagram:hover {
      background: #e4405f;
    }

    .social-fixed-fb a.facebook:hover {
      background: #1877f2;
    }

    .social-fixed-fb a.youtube:hover {
      background: #ff0000;
    }



    .social-fixed-you {
      position: fixed;
      top: 46%;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9999;
    }

    /* Style each button */
    .social-fixed-you a {
      width: 45px;
      height: 45px;
      background: #333;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border-radius: 8px 0 0 8px;
      font-size: 22px;
      text-decoration: none;
      transition: width 0.3s ease, background 0.3s ease;
      overflow: hidden;
      white-space: nowrap;
      padding-left: 10px;
      /* space for icon */
    }

    /* Expand button on hover */
    .social-fixed-you a:hover {
      width: 160px;
    }

    /* Icon inside */
    .social-fixed-you a i {
      margin-right: 10px;
    }

    /* Label (hidden by default) */
    .social-fixed-you .social-label {
      font-size: 1rem;
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* Show label only on hover */
    .social-fixed-you a:hover .social-label {

      opacity: 1;
    }

    /* Individual hover colors */
    .ssocial-fixed-you a.whatsapp:hover {
      background: #25d366;
    }

    .social-fixed-you a.instagram:hover {
      background: #e4405f;
    }

    .social-fixed-you a.facebook:hover {
      background: #1877f2;
    }

    .social-fixed-you a.youtube:hover {
      background: #ff0000;
    }



    .social-fixed-emergency {
      position: fixed;
      top: 54%;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9999;
    }

    /* Style each button */
    .social-fixed-emergency a {
      width: 45px;
      height: 45px;
      background: #333;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border-radius: 8px 0 0 8px;
      font-size: 22px;
      text-decoration: none;
      transition: width 0.3s ease, background 0.3s ease;
      overflow: hidden;
      white-space: nowrap;
      padding-left: 10px;
      /* space for icon */
    }

    /* Expand button on hover */
    .social-fixed-emergency a:hover {
      width: 160px;
    }

    /* Icon inside */
    .social-fixed-emergency a i {
      margin-right: 10px;
    }

    /* Label (hidden by default) */
    .social-fixed-emergency .social-label {
      font-size: 1rem;
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    /* Show label only on hover */
    .social-fixed-emergency a:hover .social-label {

      opacity: 1;
    }

    /* Individual hover colors */
  

    .social-fixed-emergency a.emergency:hover {
      background: #ff7c02;
    }


    .testimonials {
      position: relative;
      overflow: hidden;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      min-height: 500px;
      /* adjust height */
    }


        .video-wrapper-partner {
      position: relative;
      width: 100%;
      min-height: 200px;
      /* adjust height */
    }
    .bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translate(-50%, -50%);
      z-index: 1;
      pointer-events: none;
      filter: brightness(0.5);
      /* optional: darken video for readability */
    }

    .content-container {
      position: relative;
      z-index: 2;
      color: white;
      padding: 40px 20px;
    }

    /* Optional: style the carousel items */
    .shadow-effect {
      background: rgba(0, 0, 0, 0.5);
      /* semi-transparent for better readability */
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .testimonial-name {
      text-align: center;
      font-weight: bold;
      margin-top: 10px;
    }

    /* Fixed bar at bottom */
    .callback-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #f1f4f8;
      padding: 10px 20px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
      z-index: 1000;
    }

    /* Content alignment */
    .callback-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1300px;
      margin: auto;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Icon + text */
    .callback-text {
      display: flex;
      align-items: center;
      font-size: 16px;
      color: #000;
      font-weight: 500;
    }

    .callback-icon {
      background: #4a90e2;
      color: #fff;
      padding: 8px 10px;
      border-radius: 6px;
      margin-right: 10px;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Input + button */
    .callback-form {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .callback-form input {
      padding: 8px 12px;
      border: 1px solid #ccc;
      border-radius: 4px;
      outline: none;
      min-width: 220px;
    }

    .callback-form button {
      background: #d50000;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 8px 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .callback-form button:hover {
      background: #b30000;
    }

    .scroll-top {
      position: fixed;
      bottom: 13%;
      right: 30px;
      cursor: pointer;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .scroll-top span {
      display: block;
      width: 16px;
      height: 16px;
      border-left: 3px solid #4a90e2;
      /* blue arrow */
      border-top: 3px solid #4a90e2;
      transform: rotate(45deg);
      animation: arrowBlink 1.2s infinite;
      opacity: 0.6;
    }

    /* Stagger the animation for each arrow */
    .scroll-top span:nth-child(1) {
      animation-delay: 0s;
    }

    .scroll-top span:nth-child(2) {
      animation-delay: 0.2s;
    }

    .scroll-top span:nth-child(3) {
      animation-delay: 0.4s;
    }

    @keyframes arrowBlink {
      0% {
        opacity: 0.2;
        transform: translateY(0) rotate(45deg);
      }

      50% {
        opacity: 1;
        transform: translateY(-6px) rotate(45deg);
      }

      100% {
        opacity: 0.2;
        transform: translateY(0) rotate(45deg);
      }
    }
footer .container {
  padding-bottom: 60px; /* Add enough space above the fixed callback bar */
}
    /* Add this to your style section */
.fade-logo {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.fade-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: waveShine 3s infinite;
}

@keyframes waveShine {
  0%   { left: -150%; }
  50% { left: 50%; }
  100% { left: 150%; }
}

/* Make sure the logo stays above the background */
.fade-logo img {
  display: block;
  position: relative;
  z-index: 1;
}

/* Wave animation (wiggle) */
@keyframes wave {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-15deg); }
  60% { transform: rotate(10deg); }
  80% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

/* Blink (color change) */
@keyframes blinkColor {
  0%, 100% { color: #fff; }       /* default */
  50% { color: #25d366; }         /* WhatsApp green */
}
@keyframes blinkColorRed {
  0%, 100% { color: #fff; }       /* default */
  50% { color: #fa2222; }         /* WhatsApp green */
}

/* Apply both animations */



.social-fixed-call{
  position: fixed;
      top: 75%;
      left: 1%;
      display: flex;
      /* flex-direction: column; */
      gap: 10px;
      z-index: 9999;
}

.social-fixed {
  position: fixed;
      top: 85%;
      left: 1%;
      display: flex;
      /* flex-direction: column; */
      gap: 10px;
      z-index: 9999;
}
.social-fixed1 {
  position: fixed;
      top: 85%;
      left: 1%;
      display: flex;
      /* flex-direction: column; */
      gap: 10px;
      z-index: 9999;
}


.social-fixed-call a.whatsapp{
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulsingwp 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  transition: all 300ms ease-in-out;
}

.social-fixed1 a.phome {
  background-color: #f51818;
   padding-top: 30%;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulsingcall 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  transition: all 300ms ease-in-out;
}

@keyframes pulsingwp {
  0% {
    box-shadow: 0 0 0 0 #42db87;
  }
  70% {
    box-shadow: 0 0 0 20px rgba(66, 219, 135, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(66, 219, 135, 0);
  }
}

@keyframes pulsingcall {
  0% {
    box-shadow: 0 0 0 0 #fa1818;
  }
  70% {
    box-shadow: 0 0 0 20px rgba(66, 219, 135, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(66, 219, 135, 0);
  }
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

.scroll-reveal-horizontal {
      /* Start hidden with stripes */
      clip-path: polygon(0 0, 0 100%,
          0 100%, 0 0);
      transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: clip-path;
    }

    .scroll-reveal-horizontal.revealed {
      /* Reveal full section */
      clip-path: polygon(0 0, 100% 0,
          100% 100%, 0 100%);
    }


       .how-it-works {
      padding: 40px 0;
      /* background:url('../img/4775334_19366.jpg') no-repeat center center/cover; */
    }
    .how-it-works h2 {
      color: #1e3a8a;
      font-size: 1.5rem;
      font-weight: bold;
      font-family: 'Courier New', Courier, monospace;
      margin-bottom: 30px;
       
    }
    .step {
      text-align: center;
      padding: 20px;
    }
    .step img {
      max-width: 100%;
      height: auto;
    }
    .step h3 {
      margin-left:45%;
      color: #f71e1e;
      font-size: 1.25rem;
      font-weight: 600;
      width: 30px;
      border-radius: 50%;
      border: #c80010 solid 2px;
    }
    .step p {
      color: #1e3a8a;
      font-size: 0.9rem;
    }

    /* Fullscreen Loader Overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), visibility 0.7s;
}
.loading-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Loading Animation Styles */
.loading {
  font-size: 84px;
  
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}
.loading span {
  display: inline-block;
  margin: 0 -.05em;
  position: relative;
  color: rgba(200,0,16,0.18);
}
.loading07 span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #e60012;
  opacity: 0;
  transform: scale(1.5);
  animation: loading07 3s infinite;
}
.loading07 span:nth-child(1)::after { animation-delay: 0.1s; }
.loading07 span:nth-child(2)::after { animation-delay: 0.2s; }
.loading07 span:nth-child(3)::after { animation-delay: 0.3s; }
.loading07 span:nth-child(4)::after { animation-delay: 0.4s; }
.loading07 span:nth-child(5)::after { animation-delay: 0.5s; }
.loading07 span:nth-child(6)::after { animation-delay: 0.6s; }
.loading07 span:nth-child(7)::after { animation-delay: 0.7s; }
.loading07 span:nth-child(8)::after { animation-delay: 0.8s; }
.loading07 span:nth-child(9)::after { animation-delay: 0.9s; }
.loading07 span:nth-child(10)::after { animation-delay: 1s; }
.loading07 span:nth-child(11)::after { animation-delay: 1.1s; }
@keyframes loading07 {
  0%, 75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
  25%, 50% {
    transform: scale(1);
    opacity: 1;
  }
}



@keyframes slide {
      from {
        transform: translateX(0);

      }

      to {
        transform: translateX(-100%);

      }
    }

    .logos {
      overflow: hidden;
      /* padding:60px 0 ; */
      padding: 5px 0px 20px 0px;
      background: white;
      /* /* background: url("img/heartbeat.gif") no-repeat center center; */
   background-size: cover; 
      white-space: nowrap;
      position: relative;
    }

    .logos:before,
    .logos:after {
      content: "";
      position: absolute;
      top: 0;
      width: 250px;
      height: 100%;
      z-index: 2;
    }

    .logos:before {
      left: 0;
      background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    }

    .logos:after {
      right: 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    }


    .logos:hover .logos-slide {
      animation-play-state: paused;


    }

    .logos-slide {
      display: inline-block;
      animation: 35s slide infinite linear;
    }

    .logos-slide img {
      height: 50px;
      margin: 0 40px;
    }
/*
    .playbtn {
      position: relative;
      display: inline-block;
      padding: 8px 7px;
      margin: 8px 0;
      color: #ffffff;
      text-decoration: none;
      text-transform: uppercase;
      transition: 0.5s;
      font-weight: 600;
      letter-spacing: 4px;
      overflow: hidden;
    }

    .playbtn:hover {
      background: #ffffff;
      color: #000000;
      box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
      -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
    }

    .playbtn span {
      position: absolute;
      display: block;
    }

    .playbtn span:nth-child(1) {
      top: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background: linear-gradient(90deg, transparent, #fff);
      animation: animate1 1s linear infinite;
    }

    @keyframes animate1 {
      0% {
        left: -100%;
      }

      50%,
      100% {
        left: 100%;
      }
    }

    .playbtn span:nth-child(2) {
      top: -100%;
      right: 0;
      width: 10px;
      height: 100%;
      background: linear-gradient(180deg, transparent, #fff);
      animation: animate2 1s linear infinite;
      animation-delay: 0.25s;
    }

    @keyframes animate2 {
      0% {
        top: -100%;
      }

      50%,
      100% {
        top: 100%;
      }
    }

    .playbtn span:nth-child(3) {
      bottom: 0;
      right: 0;
      width: 100%;
      height: 10px;
      background: linear-gradient(270deg, transparent, #fff);
      animation: animate3 1s linear infinite;
      animation-delay: 0.5s;
    }

    @keyframes animate3 {
      0% {
        right: -100%;
      }

      50%,
      100% {
        right: 100%;
      }
    }

    .playbtn span:nth-child(4) {
      bottom: -100%;
      left: 0;
      width: 10px;
      height: 100%;
      background: linear-gradient(360deg, transparent, #fff);
      animation: animate4 1s linear infinite;
      animation-delay: 0.75s;
    }

    @keyframes animate4 {
      0% {
        bottom: -100%;
      }

      50%,
      100% {
        bottom: 100%;
      }
    }*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
.dropping-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  color: #000000;
  text-align: center;
}

.dropping-section span {
  font-weight: bold;
}

.dropping-texts {
  display: inline-flex;
  position: relative;
  width: 300px; /* adjust width as needed */
  height: 80px;
  overflow: hidden;
  align-items: center;
}

.dropping-texts > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  text-align: left;
    font-weight: 600;
  color: rgb(255, 255, 255); /* red color for changing text */
  animation: slideLR 6s linear infinite;
  /* text-shadow: 2px 2px 8px rgba(0,0,0,0.4); */
}

.dropping-texts > div:nth-child(1) { animation-delay: 0s; }
.dropping-texts > div:nth-child(2) { animation-delay: 1.5s; }
.dropping-texts > div:nth-child(3) { animation-delay: 3s; }
.dropping-texts > div:nth-child(4) { animation-delay: 4.5s; }

/* Animation: left → visible → right */
@keyframes slideLR {
  0% { opacity: 0; transform: translateX(-100%); }
  10% { opacity: 1; transform: translateX(0); }
  25% { opacity: 1; transform: translateX(0); }
  35% { opacity: 0; transform: translateX(100%); }
  100% { opacity: 0; transform: translateX(100%); }
}
/*------------sticky icon----------------*/

.fa-2x {
font-size: 2em;
}
.fa {
position: relative;
display: table-cell;
width: 60px;
height: 36px;
text-align: center;
vertical-align: middle;
font-size:20px;
}


.main-menu:hover,nav.main-menu.expanded {
width:250px;
overflow:visible;
}

.main-menu {
background:#e60303;
border-right:1px solid #e5e5e5;
border-radius: 20px;
position:fixed;
top:20%;
bottom:0;
height:35%;
right:0;
width:60px;
overflow:hidden;
--webkit-transition:width .05s linear;
transition:width .05s linear;
--webkit-transform:translateZ(0) scale(1,1);
display: flex;

z-index: 9999;
}

.main-menu>ul {
margin:7px 0;
}

.main-menu li {
position:relative;
display:block;
width:250px;
}

.main-menu li>a {
position:relative;
display:table;
border-collapse:collapse;
border-spacing:0;
color:#ffffff;
 font-family: arial;
font-size: 14px;
text-decoration:none;
--webkit-transform:translateZ(0) scale(1,1);
--webkit-transition:all .1s linear;
transition:all .1s linear;
  
}

.main-menu .nav-icon {
position:relative;
display:table-cell;
width:60px;
height:36px;
text-align:center;
vertical-align:middle;
font-size:18px;
}

.main-menu .nav-text {
position:relative;
display:table-cell;
vertical-align:middle;
width:190px;
  font-family: 'Titillium Web', sans-serif;
}

.main-menu>ul.logout {
position:absolute;
left:0;
bottom:0;
}

.no-touch .scrollable.hover {
overflow-y:hidden;
}

.no-touch .scrollable.hover:hover {
overflow-y:auto;
overflow:visible;
}

a:hover,a:focus {
text-decoration:none;
}

nav {
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
-o-user-select:none;
user-select:none;
}

nav ul,nav li {
outline:0;
margin:0;
padding:0;
}
/*.main-menu li:hover>a,nav.main-menu li.active>a,.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus,.no-touch .dashboard-page nav.dashboard-menu ul li:hover a,.dashboard-page nav.dashboard-menu ul li.active a {
color:#3300fe;
background-color:#ffffff;
}*/
.area {
float: left;
background: #e2e2e2;
width: 100%;
height: 100%;
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  src: local('Titillium WebLight'), local('TitilliumWeb-Light'), url(http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr24bNCNEoFTpS2BTjF6FB5E.woff) format('woff');
}
/*------------------*/



/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0051ff; 
}

/*--------------social media------------------*/

  .about-word {
  opacity: 0;
  transition: opacity 0.25s;
  display: inline-block;
}

    .about-reveal {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s cubic-bezier(.68,-0.55,.27,1.55), transform 2s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: opacity, transform;
}
.about-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/*------------*/


.theme-btn.btn-style-three {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  background: #00ffff;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}
.theme-btn.btn-style-three {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  background: #00ffff;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Slight float animation for life */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.theme-btn.btn-style-three {
  animation: float 3s ease-in-out infinite;
}

/* Continuous flowing light */
.theme-btn.btn-style-three::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine 2.5s linear infinite;
}

@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 120%;
  }
}

/* Optional: Glow effect on hover */
.theme-btn.btn-style-three:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}
/*--------------Feedback page-------------*/
.letter-container {
     padding-left: 40px;
     padding-right: 40%;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border-radius: 8px;
      line-height: 1.7;
      color: #333;
      text-align: left;
    }

    .letter-header {
   
      margin-bottom: 30px;
      padding-left: 40px;
     padding-right: 40%;
    }

    .letter-header p {
      margin: 0;
    }

    .letter-address {
      margin-bottom: 30px;
    }

    .letter-body {
      margin-bottom: 30px;
    }

    .letter-body p {
      margin-bottom: 15px;
    }

    .letter-footer {
      text-align: left;
      margin-top: 40px;
    }

    .letter-footer p {
      margin-bottom: 5px;
    }

    .signature {
      /*margin-top: 40px;*/
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .letter-container {
        padding: 20px;
        margin: 20px;
      }
    }

/*------------------About----------------*/
.section_all {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
}
.section-title {
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.section-subtitle {
    letter-spacing: 0.4px;
    line-height: 28px;
    max-width: 550px;
}

.section-title-border {
    background-color: #000;
    height: 1 3px;
    width: 44px;
}

.section-title-border-white {
    background-color: #fff;
    height: 2px;
    width: 100px;
}
.text_custom {
    color: #00bd2a;
}

.about_icon i {
    font-size: 22px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    color: #00bd2a;
    box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
    max-width: 450px;
    font-size: 24px;
}

.about_icon span {
    position: relative;
    top: -10px;
}

.about_content_box_all {
    padding: 28px;
}

.image_description{
  width:600px;
  height: 201px;
  display:block;
  float:left;
  transition: box-shadow 0.3s;
  border:1px solid #F8F8F8;
  background-color: #F8F8F8;
  margin:0;
  padding:0;
  box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
  -moz-box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 4px 6px 0 rgba(0,0,0,0.2);
}
.image_description:hover{
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
  -moz-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
}
.image_block{
  float:left;
  margin: 0;
  width: 35%;
  /*height: 200px;
  border: 1px solid #ddd;
  background: gray;*/
}
.image_block img{
  width:200px;
  height:200px;
  /*height: -webkit-fill-available;*/
}
.description_block{
  float:left;
  width: 65%;
  margin: 0;
  padding:20px 15px;
 display: block;
}
.title{
  font-size:18px;
  line-height:24px;
  font-weight:bold;
  margin-bottom:10px;
}
.content{
  margin:0 0 20px 0;
  line-height:26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 20px;
  max-height: 80px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.labels span{
  float:left;
  color:green;
  font-weight:bold;
  cursor:pointer;
}
.labels a{
  color:red;
  float: right;
  font-weight:bold;
  text-decoration:none;
}



    