
/* Hero Section */

.hero-para{
  color: white;
  margin: 10px;
  font-size: 24px;
  font-weight: 700;
}

.background-video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6); 
}

@media (min-aspect-ratio: 16/9) {
  .background-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 4/3) {
  .background-video {
    width: auto;
    height: 100%;
  }
}

.content1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.content1 h1 {
  font-size: 50px;
  /* font-weight: 600; */
  -webkit-text-stroke: 2px white;
  color: transparent;
  transition: all 0.5s ease;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  border-radius: 5px;
  background: transparent;
  overflow: hidden;
  transition: all 0.3s ease-in;
}

.btn:hover {
  transform: translateY(5px);
}

.light::before {
  content: "";
  position: absolute;
  background-image: conic-gradient(
    transparent 10deg,
   black,
    90deg,
    transparent 170deg
  );
  width: 200%;
  height: 500%;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.light:after {
  content: "Contact Us";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  color: #fff;
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  border-radius: 5px;
}


@media (max-width: 450px) {
  .btn {
    width: 130px;
  }

  .light:after {
    width: 120px;
  }
}



/* Service  */

.layout_padding{
  padding-bottom: 0px;
}

  /* p,a,h1,h2,h3,h4,h5,h6,ul,li {
	margin: 0;
	padding: 0;
} */

.section-services {
	color: #202020;
	padding-top: 15px;
    /* padding-bottom: 120px; */
}

.service{
      padding: 10px 35px;
    outline: none;
display: flex;
    border: none;
    border-radius: 30px;
    color: #fff;
    background: #c91e1e;
    margin: auto;
    margin-top: 15px;
    font-size: 15px;
    font-size:18px;
}

.section-services .header-section {
	margin-bottom: -21px;
    margin-top: 17px;
}

.section-services .header-section .title {
	position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
	font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background-color: #c91e1e;
    border-radius: 3px;
}

.section-services .header-section .title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
    transform: translateX(30px);
	width: 10px;
	height: 3px;
	background-color: black;
    border-radius: 3px;
}

.section-services .header-section .description {
	font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
    border:2px solid black;
    box-shadow: 1px 1px 1px 1px wheat;
}

.section-services .single-service .content {
	position: relative;
	z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #c91e1e;
    border: 6px solid black;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .6s;
}

.section-services .single-service:hover .circle-before {
	width: 100%;
	height: 100%;
	transform: none;
	border: 0;
	border-radius: 0;
	opacity: 1;
}

.section-services .single-service .icon {
	display: inline-block;
	margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #c91e1e;
    border-radius: 10px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
	background-color: #fff;
	color: #c91e1e;
}

.section-services .single-service .title {
    margin-bottom: 18px;
	font-weight: 700;
    font-size: 23px;
    transition: color .3s;
}

.section-services .single-service:hover .title {
	color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
	color: #fff;
}

.section-services .single-service a {
	position: relative;
	font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
}

.section-services .single-service:hover a {
	color: #fff;
}

.section-services .single-service a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	/* background-color: #c91e1e; */
	transition: background-color .3s;
}

 /* Happy client */

        .column1 {
  float: left;
  width: 33%;
  padding: 1.5%;
}

/* Responsive column1s */
@media screen and (max-width: 600px) {
  .column1 {
    width: 33%;
    display: block;
    margin-bottom: 10px;
  }
}

/* Style the counter card1s */
.card1 {
  box-shadow: 1px 1px 1px 2px black;
  border-radius: 10px;
  padding: 46px;
  text-align: center;
  background: linear-gradient(to right, #000000 3%, #c91e1e 100%);
  color: white;
  font-size: 20px;
}


/* Client Review*/


        .container {
            width: 100%;
            max-width: 1200px;
        }

        .header {
            text-align: center;
            margin-bottom: 70px;
        }

        .header h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(to right, #60a5fa, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .header p {
            font-size: 18px;
            color: #9ca3af;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        /* Responsive grid */
        @media (min-width: 768px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Scroll Wrapper */
        .scroll-box {
            overflow: hidden;
            height: 640px;
            border-radius: 28px;
            position: relative;
        }

        /* Mask gradient effect */
        .scroll-box.mask-bottom {
            -webkit-mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
            mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
        }

        .scroll-box.mask-top {
            -webkit-mask-image: linear-gradient(to top, transparent, white 20%, white 80%, transparent);
            mask-image: linear-gradient(to top, transparent, white 20%, white 80%, transparent);
        }

        .scroll-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .review-card {
            background: black;
            border: 1px solid #1f2937;
            padding: 22px;
            border-radius: 20px;
            box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: scale(1.05);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .emoji {
            font-size: 30px;
        }

        .review-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: white;
        }

        .review-header span {
            display: block;
            font-size: 13px;
            color: white;
        }

        .stars {
            color: #facc15;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .review-text {
            color: #d1d5db;
            font-style: italic;
            line-height: 1.6;
            font-size: 15px;
        }

        /* Animations */
        @keyframes scroll-top-to-bottom {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes scroll-bottom-to-top {
            0% {
                transform: translateY(-50%);
            }

            100% {
                transform: translateY(0);
            }
        }

        .animate-t2b {
            animation: scroll-top-to-bottom 60s linear infinite;
        }

        .animate-b2t {
            animation: scroll-bottom-to-top 60s linear infinite;
        }

        /* Pause on hover */
        .scroll-box:hover .scroll-content {
            animation-play-state: paused;
        }

        /* Hide 2nd column on mobile */
        .hide-md {
            display: none;
        }

        @media (min-width: 768px) {
            .hide-md {
                display: block;
            }
        }

        /* Hide 3rd column on smaller screens */
        .hide-lg {
            display: none;
        }

        @media (min-width: 1024px) {
            .hide-lg {
                display: block;
            }
        }


/* Faq */
:root {
      --light-grayish-blue: hsl(240, 5%, 91%);
    }

    .container1 {
      width: 90vw;
      max-width: 1000px;
      margin: auto;
    }

    article {
      display: grid;
      margin-top: 20px;
    }

    @media (min-width: 912px) {
      article {
        grid-template-columns: 360px 1fr;
      }
    }

    .img-container1 {
      grid-row: 1 / span 2;
      grid-column: 1;
      z-index: 1;
      /*border: 2px solid black;*/
      height: min(15rem, 60vw);
      width: 100%;
      background-image: url('../images/faq1.png');
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }

    @media (min-width: 912px) {
      .img-container1 {
        grid-row: 1;
        grid-column: 1;
        height: 100%;
        background-color: white;
        border-radius: 20px 0 0 20px;
      }
    }
    
    @media (max-width: 767px) {
      .img-container1 {
        display: none !important;
      }
    }

    .faq {
      grid-row: 2 / span 2;
      grid-column: 1;
      padding: min(7.5rem, 30vw) 1.5rem 2.5rem;
      background: black;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    @media (min-width: 912px) {
      .faq {
        grid-row: 1;
        grid-column: 2;
        padding: 3.5rem 4rem;
        border-radius: 0 20px 20px 0;
      }
    }
    
    @media (max-width: 767px) {
      .faq {
        grid-row: 1;
        grid-column: 2;
        padding: 2.5rem 2rem;
        border-radius: 20px 20px 20px 20px;
      }
    }

    .faq h2 {
      color: white;
      text-align: center;
      margin: 1.2em 0;
      font-size: 28px;
      font-weight: bold;
    }

    @media (min-width: 912px) {
      .faq h2 {
        text-align: left;
        margin: 0 0 1.65em 0;
      }
    }

    .faq .q-a {
      font-size: 0.95rem;
      border-bottom: 1.5px solid var(--light-grayish-blue);
      padding-bottom: 18px;
      margin-top: 18px;
    }

    .faq .q-wrapper {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      cursor: pointer;
    }

    .faq h3 {
      grid-column: 1;
      color: white;
      font-size: 18px;
      margin: 0;
      user-select: none;
    }

    .faq h3.h3-active {
      font-weight: 700;
      color: white;
    }

    .faq svg {
      grid-column: 2;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .faq svg.svg-animation {
      transform: rotate(180deg);
    }

    .faq p {
      color: white;
      margin-top: 15px;
      font-size: 15px;
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq p.p-visible {
      max-height: 200px;
    }


/* Blog */

 
.wrapper {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-top: 7%;
  margin-bottom: 7%;

}

.card {
  width: 280px;
  height: 360px;
  border-radius: 15px;
  padding: 1.5rem;
  background: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}
.card:hover {
  transform: translateY(20px);
}
.card:hover:before {
  opacity: 1;
}
.card:hover .info {
  opacity: 1;
  transform: translateY(0px);
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}
.card .info {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}
.card .info h1 {
  margin: 0px;
}
.card .info p {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 8px;
}
.card .info button {
  padding: 0.6rem;
  outline: none;
  border: none;
  border-radius: 3px;
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
}
.card .info button:hover {
  background: black;
  color: white;
}


