  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
      url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Bebas Neue';
    src: url('BebasNeue-Regular.woff2') format('woff2'),
      url('BebasNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
      url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
      url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
      url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
      url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }


  :root {
    --red: #FF3526;
    --white: #FFFFFF;
    --black: #000000;
    --font1: 'Poppins';
    --font2: 'Inter';
  }


  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span,
  ul,
  li,
  a,
  .btn-default,
  textarea {
    margin: 0;
    padding: 0;
  }

  * {
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
  }

  a:focus {
    text-decoration: none;
  }

  ul {
    list-style: none;
    padding: 0;
  }

  body {
    font-family: 'Poppins' !important;
    background-image: url('../images/body.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    /* background-color: #000; */
  }

  .small-heading {
    color: var(--red);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 6px;
    font-family: var(--font2);
  }

  .sub-heading {
    color: var(--red);
    font-size: 56px;
    font-weight: 900;
    font-family: var(--font2);
  }

  p {
    font-size: 16px;
    color: var(--white);
    font-family: var(--font2);
  }

  /* ************************************ */
  /*RESPONSIVE NAVIGATION*/
  .mobile-menu {
    display: none;
  }

  .mobile-menu .circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 6px;
    background: var(--red);
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }


  h3.port-head {
    color: var(--red);
    padding: 50px 0 0 20px;
}
  .mobile-menu .mobile-cross {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 6px;
    background: var(--red);
    margin: 0 auto;
    font-size: 16px;
    position: fixed;
    right: 20px;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }

  .mobile-menu .nveMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateX(-320px);
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    padding: 40px 20px;
  }

  .mobile-menu .nveMenu.is-opened {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-menu .overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 280px);
    height: 100%;
    background: rgba(0, 0, 0, 0.71);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  }

  .mobile-menu .overlay.is-on {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }

  .mobile-menu .navlinks li {
    display: block;
    padding: 8px 0 6px 0;
    margin-block: 10px;
    /* border-bottom: 1px solid var(--red); */
  }

  .mobile-menu .navlinks li a {
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    font-family: var(--font2);
  }

  .mobile-menu .navlinks li a:hover {
    text-decoration: none;
  }

  /*RESPONSIVE NAVIGATION*/

  /* BUTTONS STYLE START */
  .btn-padding {
    border-radius: 4px;
  padding: 7px 10px;
    font-family: var(--font2);
    font-size: 14px;
    font-weight: 700;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--red);
    display: inline-block;
  }

  .btn-padding span {
    display: block;
    position: relative;
    /* mix-blend-mode: difference; */
    z-index: 10;
  }

  .btn-padding::after,
  .btn-padding::before {
    position: absolute;
  }

  /* BTN RED START */
  .btn-red {
    background: var(--red);
  }

  .btn-red span {
    color: var(--white);
  }

  .btn-red::before {
    content: '';
    background: #000;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  }

  .btn-red::after {
    content: '';
    background: #000;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  }

  .btn-red:hover::before {
    transform: translate3d(0, 0, 0) scale3d(2, 2, 2);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  }

  .btn-red:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
  }

  .btn-red:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
  }

  /* BTN RED END */


  /* BTN RED OUTLINE START */
  .btn-red-outline {
    background: var(--black);
    /* box-shadow: rgb(147 15 15 / 80%) 1px 1px 8px 4px; */
  }

  .btn-red-outline span {
    color: var(--white);
  }

  .btn-red-outline::before {
    content: '';
    background: var(--red);
    width: 120%;
    height: 130px;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  }

  .btn-red-outline::after {
    content: '';
    background: var(--red);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  }

  .btn-red-outline:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  }

  .btn-red-outline:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
  }

  .btn-red-outline:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
  }

  /* BTN RED OUTLINE END */
  .btns-container {
    display: flex;
    align-items: center;
    gap: 15px;
  }


  @keyframes MoveScaleUpInitial {
    to {
      transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
      opacity: 0;
    }
  }

  @keyframes MoveScaleUpEnd {
    from {
      transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
      opacity: 0;
    }

    to {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }

  /* BUTTONS STYLE END */

  /* DESKTOP HEADER START */
  header{
    position: relative;
    z-index: 999;
  }
  .desktop-header {
    padding-block: 20px;
  }

  .desktop-header .logo-con img {
    width: 130px;
  }

  .desktop-header .menu-con {
    gap: 24px;
    padding-left: 15px;
  }

  .desktop-header .menu-con ul {
    gap: 40px;
  }

  .desktop-header .menu-con ul li a {
    font-family: var(--font2);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all ease-in-out 0.3s;
  }

  .desktop-header .menu-con ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0px;
    height: 2px;
    transition: all ease-in-out 0.3s;
    background-color: var(--red);
  }

  .desktop-header .menu-con ul li a:hover {
    color: var(--red);
  }

  .desktop-header .menu-con ul li a:hover::after {
    width: 100%;
  }

  /* DESKTOP HEADER END */


  /* TESTIMONIAL START */
  .testimonial-sec {
    padding-block: 80px;
    background-color: var(--black);
    border-top: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
  }

  .testimonial-sec .item .testmonial-box {
    /* border: 2px solid var(--red); */
    background-color: #1D1D1D;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    display: block;
  }

  .testimonial-sec .item .testmonial-box img {
    width: 120px;
  }

  .testimonial-sec .item .testmonial-box .testi-top {
    padding: 26px 26px 18px 26px;
    border-bottom: 2px solid #363636;
    display: flex;
    justify-content: space-between;
  }

  .testimonial-sec .item .testmonial-box .testi-bottom {
    padding: 26px;
  }

  .testimonial-sec .item .testmonial-box .testi-bottom p {
    font-family: var(--font2);
    font-size: 15px;
    font-weight: 500;
  }

  .testimonial-sec .item .testmonial-box .testi-top .name {
    color: var(--white);
    font-size: 22px;
    font-family: var(--font1);
    font-weight: 600;
    margin-bottom: 6px;
  }

  .testimonial-sec .item .testmonial-box .testi-top .designation {
    color: var(--red);
    font-size: 14px;
    font-family: var(--font2);
    font-weight: 600;
    text-transform: uppercase;
  }

  .testimonial-sec .item .quote1 {
    display: block;
    margin-bottom: 16px;
    margin-right: auto;
  }

  .testimonial-sec .item .quote2 {
    display: block;
    margin-top: 16px;
    margin-left: auto;
  }

  .testimonial-sec .item .quote {
    width: 44px;
  }

  .testimonial-sec .owl-carousel .owl-nav.disabled {
    display: block !important;
  }

  .testimonial-sec .owl-carousel {
    position: relative;
    width: 100%;
    margin: auto;
    margin-top: 70px;
  }

  .testimonial-sec .owl-carousel .owl-nav i {
    color: var(--red);
    background-color: #1D1D1D;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .testimonial-sec .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -5%;
    top: 40%;
  }

  .testimonial-sec .owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -5%;
    top: 40%;
  }
  .test-ani{
    padding: 2px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
  .test-ani .animate-testi{
    content: '';
    position: absolute;
    left: 0;
    background-color: red;
    width: 24%;
    height: 400%;
    transform: translate(-50%, -50%) rotate(132deg);
      left: 50%;
      top: 50%;
      display: none;
      transition: all ease-in-out 0.3s;
  }
  .testimonial-sec .item:hover .test-ani .animate-testi{
    animation: testi-rotate 5s infinite linear;
    display: block;
  }


  .serv-animate{
    padding: 2px;
        position: relative;
      border-radius: 20px;
      overflow: hidden;
  }
  .serv-animate .my-span{
      content: '';
      position: absolute;
      left: 0;
      background-color: red;
      width: 24%;
      height: 400%;
      transform: translate(-50%, -50%) rotate(132deg);
      left: 50%;
      top: 50%;
      display: none;
      transition: all ease-in-out 0.3s;
  }
  .serv-animate:hover .my-span{
        display: block;
    animation: testi-rotate 5s infinite linear;
  }
  .main-abt-animat{
    padding: 2px;
        position: relative;
      border-radius: 20px;
      overflow: hidden;
  }
  .main-abt-animat .abt-anm{
      content: '';
      position: absolute;
      left: 0;
      background-color: red;
      width: 24%;
      height: 400%;
      transform: translate(-50%, -50%) rotate(132deg);
      left: 50%;
      top: 50%;
      display: none;
      transition: all ease-in-out 0.3s;
  }
  .main-abt-animat:hover .abt-anm{
        display: block;
    animation: testi-rotate 5s infinite linear;
  }

  @keyframes testi-rotate{
    0% {
      transform: translate(-50%, -50%) rotate(30deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  /* TESTIMONIAL END */


  /* FOOTER START */
  footer {
    padding-block: 90px 10px;
    /* background-image: url('../images/footer-bg.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 1px solid var(--red);
    background-color: var(--black);
    position: relative;
  }
  footer .container, footer .copyright{
    z-index: 3;
    position: relative;
  }
  footer:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url(../images/footer-bg.png);
      background-size: cover;
      background-position: center;
      z-index: 1;
  }

  footer .footer-info .logo-footer img {
    width: 150px;
    margin-bottom: 30px;
  }

  footer .footer-info p {
    font-size: 16px;
  }

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

  footer .footer-info .social-footer i {
    color: var(--white);
    font-size: 24px;

  }

  footer .footer-info .footer-heading {
    color: var(--red);
    font-family: var(--font2);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  footer .footer-info .footer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .footer-info .footer-list a {
    color: var(--white);
    font-size: 16px;
    font-family: var(--font2);
    transition: all ease-in-out 0.3s;
  }

  footer .footer-info .footer-list .footer-email {
    text-decoration: underline;
  }

  footer .footer-info .footer-list a:hover {
    color: #cecece;
  }

  footer .footer-info form .form-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  footer .footer-info form .form-field input {
    border: none;
    outline: none;
    font-size: 18px;
    font-family: var(--font2);
    font-weight: 500;
    color: #fff;
    background-color: transparent;
  }

  footer .footer-info form .form-field input::placeholder {
    color: #eeeeee;
  }

  footer .footer-info form .form-field:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #363636;
    left: 0;
    bottom: 0px;
  }

  footer .footer-info form button {
    background-color: transparent;
    border: none;
    padding: 0px;
  }

  footer .footer-info form button i {
    color: var(--red);
    font-size: 18px;
    transition: all ease-in-out 0.3s;
  }

  footer .footer-info form button:hover i {
    color: #cecece;
  }

  footer .footer-info form .select-field {
    display: flex;
    align-items: start;
    gap: 10px;
  }

  footer .footer-info form .select-field input {
    margin-top: 5px;
  }

  footer .footer-info form .select-field p {
    padding: 0px;
    margin: 0px;
  }

  footer .copyright {
    border-top: 1px solid var(--red);
    margin-top: 60px;
    padding-block: 30px 10px;
  }

  footer .copyright p {
    font-family: var(--font2);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
  }

  footer .copyright p a {
    color: var(--red);
  }

  /* FOOTER END */


  /* Banner */

  #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    /* Background color if needed */
  }
  /* Make sure your banner section is positioned relatively */
  .hero-section {
    position: relative;
    overflow: hidden;
  }

  h1.main-banner-h {
    color: var(--white) !important;
  }


  section.hero-section h1 {
    color: var(--red);
    font-size: 50px;
    font-weight: 600;
    line-height: 52px;
  }
  section.hero-section h1 span{
    color: var(--red);
  }
  section.hero-section {
      padding: 200px 0px 100px 0;
      border-bottom: 2px solid var(--red);
      margin-top: -8.5em;
  }
  section.hero-section p {
    width: 50%;
    line-height: 25px;
    margin: 20px 0;
  }
  .icons ul {
    display: flex;
  }
  .icons ul li {
    PADDING-RIGHT: 18PX;
  }
  .icons ul li a {
    font-size: 24px;
    color: #fff;
  }
  .bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .animation-img img {
    width: 150px;
  }
  .animation-img img {
    animation: rotateImage 7s linear infinite;
    transform-origin: center center;
  }

  @keyframes rotateImage {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  /* Banner */

  /* marquee-sec */

  .marquee-container {
    width: 100%;
    overflow: hidden;
    /* optional */
    white-space: nowrap;
    padding: 34px 0;
  }
  .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-loop 25s linear infinite;
  }
  .marquee-content span {
    display: inline-block;
    color: var(--red);
    font-size: 16px;
    padding-right: 8rem;
    FONT-WEIGHT: 700;
  }
  @keyframes marquee-loop {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .extra {
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1.2px;
  }
  /* About */
  .about-img img {
    width: 100%;
  }
  .about-cont h4 {
    padding-bottom: 10px;
  }
  .about-cont h2 {
    font-size: 38px;
    color: var(--red);
    font-family: var(--font2);
    font-weight: 800;
  }
  .about-cont p {
    font-size: 15px;
    width: 80%;
    padding: 20px 0;
  }
  section.about {
    padding: 100px 0px;
  }
  .about-img img {
    animation: floatUpDown 3s ease-in-out infinite;
    display: inline-block;
    position: relative;
  }
  @keyframes floatUpDown {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }


  /* SERVICE SECTION START */
  .service-sec{
    padding-bottom: 80px;
  }
  .service-sec .service-slider{
    margin-top: 50px;
  }
  .service-sec .service-box .ser-num{
    color: var(--red);
    font-size: 130px;
    font-family: var(--font2);
    font-weight: 900;
    text-shadow: -1px -1px #fff;
    z-index: 1;
  }
  .service-sec .service-box .ser-top{
    background-color: var(--black);
    margin-top: -70px;
    margin-bottom: 20px;
    position: relative;
    display: block;
    z-index: 3;
  }
  .service-sec .service-box .serv-con{
    /* height: 120px; */
    overflow: auto;
  }
  .service-sec .service-box .serv-con .btn-padding{
    margin-top: 14px;
  }
  .service-sec .service-box .serv-con p{
    margin-bottom: 8px;
  }
  .service-sec .service-box .serv-con::-webkit-scrollbar{
    background-color: var(--white);
    width: 9px;
    padding-right: 4px;
  }
  .service-sec .service-box .serv-con::-webkit-scrollbar-thumb{
    background-color: var(--red);
  }
  .service-sec .service-box .ser-name{
    color: var(--white);
    font-size: 30px;
    font-family: var(--font2);
    font-weight: 800;
  } .owl-dots .owl-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FF352680 !important;
  } .owl-dots .owl-dot.active{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--red) !important;
  } .owl-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
  }
  .service-slider .owl-nav .owl-prev {
    position: absolute;
    left: -64px;
    top: 42%;
  }
  .service-slider .owl-nav .owl-next {
    position: absolute;
    right: -64px;
    top: 42%;
  }
  .service-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }
  .service-slider .owl-nav i {
      color: var(--red);
      background-color: #1D1D1D;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
  }
  /* SERVICE SECTION END */
  .owl-dots {
      DISPLAY: NONE !IMPORTANT;
  }

  /* PORTFOLIO SECTION START */
  .portfolio-sec{
    padding-top: 30px;
    padding-bottom: 90px;
  }
  .portfolio-sec .portfolio{
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .portfolio-sec .portfolio a img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
  }
  .portfolio-sec .portfolio a:hover img{
    filter: brightness(0.3);
  }
  .portfolio-sec .portfolio a{
    display: block;
    width: 22%;
    border: 2px solid var(--red);
  }
  /* PORTFOLIO SECTION END */


  /* PACKAGE SECTION START */
  .package-sec{
    padding-block: 90px;
  }
  .package-sec .package-slide{
    margin-top: 60px;
  }
  .package-sec .package-main .package-title{
    color: var(--white);
    font-weight: 800;
    font-family: var(--font2);
    font-size: 30px;
    margin-bottom: 8px;
  }
  .package-sec .package-main .package-price{
    color: var(--red);
    font-size: 50px;
    font-weight: 800;
    font-family: var(--font2);
    display: flex;
    align-items: start;
    margin-bottom: 20px;
  }
  .package-sec .package-main .package-price span{
    font-size: 36px;
    margin-top: 12px;
    margin-right: 5px;
    display: block;
  }
  .package-sec .package-main ul li{
    list-style-type: disc;
  }
  .package-sec .package-main ul li::marker{
    color: var(--red);
  }
  .package-sec .package-main{
    position: relative;
    padding: 2.4px;
    /* background-color: #fff; */
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    border-radius: 16px;
  }
  .package-sec .package-box{
    background-color: #1D1D1D;
    position: relative;
    z-index: 99;
    padding: 30px;
    /* overflow-y: auto; */
    
    border-radius: 16px;
  }
  .package-sec .package-box::-webkit-scrollbar{
    background-color: #363636;
    width: 8px;
  }
  .package-sec .package-box::-webkit-scrollbar-thumb{
    background-color: #fff;
    transition: all ease-in-out 0.3s;
  }
  .package-sec .package-box::-webkit-scrollbar-thumb:hover{
    background-color: var(--red);
  }
  .package-sec .move-border1{
    position: absolute;
    background-color: var(--red);
    width: 33%;
    height: 300%;
    z-index: 1;
    transform: translate(-50%, -50%) rotate(132deg);
    left: 50%;
    top: 50%;
    opacity: 0;
  }
  .package-sec .package-main:hover{
    background-color: transparent;
  }
  .package-sec .package-main:hover .move-border1{
    animation: rotate-move-border1 10s linear infinite;
    opacity: 1;
  }
  @keyframes rotate-move-border1 {
    0% {
      transform: translate(-50%, -50%) rotate(30deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .package-sec .owl-dots{
    display: none;
  }
  .package-sec .owl-nav .owl-prev {
    position: absolute;
    left: -60px;
    top: 42%;
  }
  .package-sec .owl-nav .owl-next {
    position: absolute;
    right: -60px;
    top: 42%;
  }
  .package-sec .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .package-slide .owl-nav i {
      color: var(--red);
      background-color: #1D1D1D;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
  }
  /* PACKAGE SECTION END */


  /* Chnages */

  footer .copyright p a {
      text-transform: uppercase;
      font-family: auto;
  }
  .animation-img img {
      display: none;
  }

  .bottom-flex {padding-top: 40px;}

  .testimonial-sec .item .quote {
      display: none;
  }

  .bottom-flex i {
      border: 1px solid #ff3526;
      padding: 10px 11px;
      border-radius: 20px;
      font-size: 16px;
      /* box-shadow: rgb(147 15 15 / 60%) 1px 1px 20px 2px; */
  }

  .bottom-flex i.fa-brands.fa-facebook-f {
      padding: 10px 13px;
  }

  .bottom-flex i:hover {
      background: #ff3526;
      color: #ffffff;
      transition: 0.5s;
  }

  /* Chnages */



  /* About-page */

  .bottom-cont p {
      padding: 10px 0;
      width: 90%;
  }


  .bottom-cont ul {padding-top: 20px;}

  .bottom-cont ul h4 {
      color: #fff;
      text-transform: capitalize;
      padding-bottom: 20px;
  }

  .bottom-cont ul li {
      color: #fff;
      font-weight: 300;
      font-size: 14px;
  }
  /* About-page */

  .footer-info .bottom-flex{
    padding-top: 20px;
  }


  /* CONTACT SECTION START */
  .contact-sec{
    padding-block: 90px;
  }
  .contact-sec .contact-info{
    padding-right: 30px;
  }
  .contact-sec .contact-info h2{
    margin-bottom: 10px;
  }
  .contact-sec .contact-info .info-list{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-sec .contact-info .info-list li a{
    display: flex;
    align-items: center;
    font-family: var(--font2);
    color: var(--white);
    font-size: 16px;
    gap: 20px;
  }
  .contact-sec .contact-info .info-list li span i{
    color: var(--white);
    font-size: 19px;
    transition:  all ease-in-out 0.3s;
  }
  .contact-info .bottom-flex{
    padding-top: 20px;
  }

  .contact-sec .contact-info .info-list li:hover i{
    color: var(--red);
  }
  .contact-sec .contact-form {
      padding-left: 30px;
      /* box-shadow: rgb(196 18 12) 0px 5px 15px; */
      box-shadow: rgb(196 18 12 / 46%) 8px 11px 15px;
      background-color: var(--black);
      padding: 40px;
      border-radius: 30px;
      border: 1px solid #ff352680;
  }
  .contact-sec .contact-form label{
    color: var(--white);
    font-family: var(--font2);
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact-sec .contact-form input, .contact-sec .contact-form textarea{
    width: 100%;
    padding: 12px 10px;
    border: none;
    outline: none;
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font2);
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .contact-sec .contact-form button{
    letter-spacing: 0.3px;
    font-size: 16px;
    font-weight: 400;
  }
  /* CONTACT SECTION END */


  /* SERVICE INNER SECTINO START */
  .service-inner-sec{
    padding-block: 90px;
  }.service-box .serv-con{
    height: 100px;
    overflow: auto;
    margin-bottom: 20px;
    padding-right: 6px;
  }
  /* .service-inner-sec .service-box .serv-con{
    height: 180px;
    overflow: auto;
    margin-bottom: 20px;
    padding-right: 6px;
  } */
  /* SERVICE INNER SECTINO END */


  /* INNER PORTFOLIO SECTION START */
  .inner-portfolio-sec{
    padding-block: 90px;
  }
  .inner-portfolio-sec .portfolio-tabs{
    margin-top: 50px;
  }
  .inner-portfolio-sec .portfolio-tabs{
    border: none !important;
  }
  .inner-portfolio-sec .portfolio-tabs button{
    color: var(--white);
    font-family: var(--font2);
    font-size: 15px;
    border-radius: 7px;
  }
  .inner-portfolio-sec .portfolio-tabs button.active{
    font-weight: 700;
    color: var(--black);
  }
  .inner-portfolio-sec .portfolio-tabs{
    justify-content: center;
    gap: 20px;
  }
  .inner-portfolio-sec .tab-content .tab-pane .portfolio{
    margin-top: 40px !important;
  }
  /* INNER PORTFOLIO SECTION END */

  .red-heading{
    color: var(--red) !important;
  }

  .about-inner .about-cont p{
    width: 100%;
  }
  .inner-pack{
    margin-top: 40px;
    --bs-gutter-y: 1.5rem;
  }

  .package-box ul {
      height: 100px;
      padding-right: 6px;
      overflow-y: auto;
  }
  .package-box ul::-webkit-scrollbar{
    background-color: var(--white);
    width: 9px;
    padding-right: 4px;
  }
  .package-box ul::-webkit-scrollbar-thumb{
    background-color: var(--red);
  }

  /* BLOG SECTION START */
  .blog-sec{
    padding-block: 80px;
    border-top: 1px solid var(--red);
  }
  .blog-sec .blog-con{
    margin-top: 40px;
  }
  .blog-sec .blog-con .blog-box{
    background-color: #1D1D1D;
    border-radius: 20px;
    padding: 30px 20px;
  }
  .blog-sec .blog-con .blog-box img{
    width: 100%;
    border-radius: 20px;
  }
  .blog-sec .blog-con .blog-box h3{
    margin-block: 28px 25px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--white);
    font-family: var(--font2);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .blog-sec .blog-con .blog-box p{
    margin-bottom: 18px;
    color: var(--white);
    font-size: 15px;
  }
  .blog-sec .blog-con {
        --bs-gutter-y: 1.5rem;
  }
  /* BLOG SECTION END */


  /* BLOG DETAILS START */
  .blog-detail-sec{
    padding-block: 90px;
  }
  .blog-detail-sec .blog-img{
    width: 100%;
    border-radius: 20px;
    margin-bottom: 36px;
  }
  .blog-detail-sec h3{
    font-size: 30px;
    font-family: var(--font2);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.4px;
    margin-bottom: 15px;
  }
  .blog-detail-sec p{
    font-size: 17px;
    line-height: 30px;
    margin-top: 8px;
  }.blog-detail-sec h2, .blog-detail-sec h3, .blog-detail-sec h4, .blog-detail-sec h5, .blog-detail-sec h6{
    margin-top: 20px;
  }

  .blog-detail-sec ul {
    padding-bottom: 25px;
}


.blog-detail-sec ul li p {
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
}

  span.red-blg {
    color: #c4120c;
    font-size: 22px;
    font-weight: 600;
}
  .blog-detail-sec ul li{
    list-style-type: disc;
    margin-left: 20px;
  }
  .blog-detail-sec ul li::marker{
    color: var(--white);
  }
  /* BLOG DETAILS END */

  .about-cont ul{
    margin-top: 24px;
  }
  .about-cont ul li p{
    padding: 2px 0px;
  }

  .service-box{
    background-color: #1D1D1D;
    border-radius: 20px;
    padding: 30px 24px;
    z-index: 9;
    position: relative;
  }
  .service-sec .row{
    --bs-gutter-y: 1.5rem;
  }
  .service-box .ser-top{
    background-color: #1D1D1D !important;
  }

  .special-sec{
    padding-bottom: 70px;
  }
  .special-sec h2{
    margin-bottom: 40px;
  }
  .special-sec .special-box{
    background-color: #1D1D1D;
    border-radius: 15px;
    padding: 24px 20px;
    transition: all ease-in-out 0.3s;
    height: 160px;
    z-index: 9;
    position: relative;
  }
  /* .special-sec .special-box:hover{
    box-shadow: rgba(255, 0, 0, 0.534) 0px 4px 12px;
  } */
  .special-sec .special-box i{
    background-color: var(--red);
    color: var(--white);
    font-size: 20px;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .special-sec .special-box h4{
    font-size: 18px;
    color: var(--white);
    font-family: var(--font2);
    font-weight: 700;
    margin-top: 20px;
  }
  .special-sec .row{
    --bs-gutter-y: 1.5rem;
  }


  /* POPUP START */
  .popup-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }



  .blog-detail-sec h4 {
    font-size: 20px;
    font-family: var(--font2);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.4px;
}
  .popup h2 {
    text-align: center;
    font-family: var(--font-family-2);
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
    padding-inline: 50px;
  }

  .popup p {
    text-align: center;
    padding-inline: 50px;
    margin-bottom: 12px;
    color: #fff;
  }

  .popup h2 span {
    color: var(--red);
  }

  .popup p span {
    color: var(--red);
    font-weight: 500;
    animation: blink 5s infinite linear;
  }

  @keyframes blink {
    0% {
      color: var(--red);
    }

    50% {
      color: var(--white);
    }

    100% {
      color: var(--red);
    }
  }

  .popup {
    background-color: var(--black);
    padding: 40px 30px;
    border-radius: 18px;
    position: relative;
    min-width: 300px;
    border: 1.3px solid var(--red);
    max-width: 560px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }

  .popup-overlay.active .popup {
    transform: scale(1);
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    line-height: 0;
    text-align: center;
  }

  .popup .popup-form {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .popup .popup-form input,
  .popup .popup-form textarea,
  .popup .popup-form select {
    outline: none;
    border: none;
    border-bottom: 1px solid #CACACA;
    padding: 24px 0px;
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: 18px;
    background-color: transparent;
    color: #fff;
  }
  .popup .popup-form select option{
    color: #000;
        font-size: 14px;
  }
  .popup .popup-form input,
  .popup .popup-form select {
    width: 48%;
  }

  .popup .popup-form textarea {
    width: 100%;
  }

  .popup-form button {
    margin-top: 20px;
  }

  button#showPopup {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }

  /* POPUP END */



  .blog-sec .blog-con .blog-box img {
      height: 180px;
      object-fit: cover;
  }


  /* project */

  section.project-sec .row {
      align-items: center;
  }

  .project-img img {
      width: 95%;
      height: 374px;
      object-fit: cover;
      border-radius: 10px;
  }

  section.project-sec {
      padding: 80px 0 20px 0;
  }

  .project-detail {
      background: #1D1D1D;
      padding: 50px 40px;
      border-radius: 10px;
          border: 1px solid #ff352680;
  }

  .project-detail h4 {
      color: #ffffff;
  }

  .project-detail p {
      color: #ffffff;
      font-weight: 300;
      font-size: 14px;
  }

  .client {
      margin-bottom: 30px;
      line-height: 22px;
  }


  .top-class {
      padding: 40px 0px;
  }

  .lst-line {padding-top: 30px;}
  .proj-inner-content h2 {
      color: #ff3526;
      font-size: 32px;
      font-weight: 500;
      padding-bottom: 10px;
  }



  /* service-detail */


  .project-img img {
  position: relative;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* upar kitna jana hai */
  }
  100% {
    transform: translateY(0);
  }
}


.row.middle {
    padding-top: 70px;
}
  .serve.last-cont {
      padding: 60px 0;
  }
  .service-detail-cnt {
    padding: 0 60px 0 0px;
}

  .service-detail-cnt h2 {
      color: #ff3526;
      font-size: 32px;
      font-weight: 500;
      padding-bottom: 10px;
  }

  ul.serv-list {
      padding-top: 20px;
  }

  ul.serv-list h3 {
      color: #ff3526;
      font-size: 26px;
      padding-bottom: 5px;
  }

  .row.middle {
      padding: 40px 0 0 0;
  }
  .serv-det-img img {
      width: 100%;
  }




  .help h4 {
      font-size: 40px;
  }

  .info-dtl {
      padding: 40px 0;
  }

  .info-dtl a {
      color: #ffff;
  }


  .info-dtl h4 {
      font-size: 28px;
  }

  .info-dtl p {
      letter-spacing: 0.8px;
      padding-top: 5px;
  }

  .serv-dtl-btn a {
      background: #ff3526;
      color: #fff;
      padding: 10px 30px;
  }

  .serv-main-dtl {
      padding: 84px 40px;
  }


  ul.serv-list {
      padding-bottom: 40px;
  }

  ul.serv-list li {
      color: #ffff;
      line-height: 30px;
  }

  ul.serv-list i {
      padding: 0 10px 0 0px;
  }



  /* Card-css */

      .custom-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
      }
      .custom-card:hover {
        transform: translateY(-5px);
      }
      .custom-card img {
        height: 220px;
        object-fit: cover;
        width: 100%;
      }
      .card-body {
        padding: 20px;
      }
      .card-title {
        font-weight: 600;
        font-size: 1.1rem;
      }
      .card-text {
        color: #6c757d;
      }




  .about-inner-content h2 {
      text-align: center;
      font-size: 50px;
      color: #ff3526;
      font-family: var(--font2);
      font-weight: 800;
      padding: 40px 0 40px 0;
  }

  .inner {
      padding-right: 60px;
  }


  p.p1 {
    padding: 0px 0px 20px 0px;
}

h4.med-heading {
    color: var(--red);
    font-size: 26px;
    font-weight: 200;
    padding: 0px 0 6px 0;
}

.about-cont.inner {
    margin-top: 40px;
}

.testmonial-box {
    height: 210px;
}




/* profile */

/* Web Development portfolio images */
/* Container fix karein */
#profile .portfolio a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 450px; /* apni design ke hisaab se fix height */
}

/* Image setup */
#profile .portfolio a img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 6s linear; /* hover duration */
}

/* Hover par scroll effect */
#profile .portfolio a:hover img {
  transform: translateY(-36%); /* jitna neeche scroll karwana ho utna % adjust karo */
}
