/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Courgette&amp;family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");

:root {
  --primary-color: #fed600;
  --black-color: #000;
  --white-color: #fff;
  --light-bakground-color: #fffae1;
  /* --font-family: "Montserrat", sans-serif; */
  --font-family: "Plus Jakarta Sans", sans-serif;
  --font-optical-sizing: auto;
  --section-padding: 80px 0px;
}

/* Global Styling Here */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-size: 3.5rem;
  font-family: var(--font-family);
  font-display: swap;
  font-weight: 700;
  line-height: 1.3;
}
h2,
h3 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3 !important;
}
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  font-display: swap;
  line-height: 1.2;
}
p {
  font-family: var(--font-family);
  font-display: swap;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}
.site-button {
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-family);
  font-display: swap;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.6s ease;
  line-height: 1;
}
.primary-button {
  background-color: var(--primary-color);
  color: var(--black-color);
}
.secondary-button {
  background-color: var(--black-color);
  color: var(--primary-color);
}
.site-button:active {
  transform: scale(1.1);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--black-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--light-bakground-color);
}
::-webkit-scrollbar-button {
  display: none;
}

/* Hero Section Here */
.hero-section {
  width: 100%;
  background-image: url("images/hero_image.webp");
  background-color: var(--black-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: white;
  display: grid;
  place-items: center;
  height: 85svh;
}
.hero-content {
  max-width: 900px;
}
.hero-content p {
  margin: 20px 0 40px 0;
  font-size: 1.5rem;
}

/* Trusted By Styling Here */
.trusted-by-section {
  height: 15svh;
  display: flex;
}
.trusted-logo {
  align-items: center;
  transition-timing-function: linear;
}
.trusted-logo img {
  width: 150px;
  height: 100%;
  user-select: none;
}

/* About Section Styling Here */
.about-section {
  padding: 80px 0 0 0;
  background-color: var(--light-bakground-color);
}
.about-section p {
  margin-top: 10px;
}
.about-section img {
  width: 100%;
  border-radius: 15px;
}

/* Our Achivment Styling Here */
.our-achivment-card {
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  margin-top: 80px;
  margin-bottom: -75px;
}
.our-achivment-card div {
  text-align: center;
}
.our-achivment-card div p {
  line-height: 1;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.our-achivment-card div span {
  font-family: var(--font-family);
  font-display: swap;
  line-height: 1;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Featured work Styling Section Here */
.feature-work-section {
  background-color: var(--black-color);
  padding: 140px 0 80px 0;
  color: var(--white-color);
}
.featured-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.featured-projects .featured-project {
  border-radius: 15px;
  border: 1px solid var(--white-color);
  overflow: hidden;
}
.featured-projects .featured-project video {
  width: 100%;
  height: auto;
}
.featured-projects .featured-project div {
  padding: 25px;
}
.featured-projects .featured-project div h4 {
  font-size: 1.65rem;
  margin: 0;
  font-weight: 700;
  color: var(--primary-color);
}
.featured-projects .featured-project div p {
  margin-bottom: 0;
  margin-top: 10px;
  color: #aeaeae;
}

/* Our Services Section Styling Here */
.our-services-section {
  background-color: var(--light-bakground-color);
  padding: var(--section-padding);
}
.services-card h4 {
  font-size: 2rem;
  font-weight: 700;
}
.services-card p {
  margin-top: 10px;
  margin-bottom: 0;
}
.services-card img {
  width: 100%;
  border-radius: 15px;
}
.services-card .related-services {
  margin-top: 20px;
}
.services-card .related-services p {
  background-color: var(--primary-color);
  border-radius: 30px;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  text-wrap: nowrap;
  line-height: 1;
}
.services-card .related-services {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}

/* Casestudies styling here */
.case-studies-section {
  padding: var(--section-padding);
  background-color: var(--primary-color);
}
.casestudy-card {
  border: 1px solid var(--black-color);
  border-radius: 15px;
  padding: 50px 0px 50px 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 30px;
  background-color: var(--light-bakground-color);
  min-height: 500px;
}
.case-content h4 {
  font-weight: 700;
  font-size: 1.8rem;
}
.case-content h5 {
  font-weight: 600;
  font-size: 1.2rem;
}
.case-content p {
  font-size: 1rem;
}
.case-image {
  position: relative;
  height: 100%;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}
.case-image img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  z-index: 2;
}
.case-image img:last-child {
  position: absolute;
  left: 5%;
  bottom: 5%;
  width: 90px;
  height: 60px;
  object-fit: contain;
  z-index: 3;
}

/* Why section Styling Here */
.why-section {
  padding: var(--section-padding);
  background-color: var(--black-color);
}
.why-content h3 {
  color: var(--white-color);
  line-height: 1.3;
}
.why-content p {
  color: var(--white-color);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 0.8rem;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-content: space-between;
  gap: 20px;
  align-items: stretch;
}
.why-cards h4 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-top: 1.25rem;
  transition: all 0.6 ease;
}
.why-section .why-cards p {
  color: #aeaeae;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.why-section .why-cards img {
  width: 50px;
  height: 50px;
}
.why-cards div {
  transition: all 0.6s ease;
  border: 1px solid grey;
  padding: 30px;
  border-radius: 15px;
}
.why-cards div:hover {
  transform: scale(1.1);
}

/* Our Creative Hub Styling Here */
.creative-section {
  padding: var(--section-padding);
}
.creative-section > .container-fluid {
  padding-inline: 0;
  overflow-x: hidden;
}
.creative-shoot-carousel {
  width: 100%;
}
.creative-image {
  max-height: 35rem;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.creative-image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.creative-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.05) 5%,
    var(--black-color) 80%
  );
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 2s linear;
  display: grid;
  align-items: end;
}
.creative-image:hover .creative-overlay {
  height: 100%;
}
.creative-overlay p {
  text-align: center;
  color: var(--white-color);
  font-size: 1rem;
  margin: 40px;
}

/* Testimonial section tyling here */
.swiper-slide {
  height: auto;
}
.testimonial-section {
  padding: var(--section-padding);
  position: relative;
}
.testimonial-cards::before {
  content: "";
  width: 10%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.testimonial-cards::after {
  content: "";
  width: 10%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.testimonial-section .rating,
.corporate-testimonial-section .rating {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
  background-color: var(--primary-color);
  border-radius: 50px;
  padding: 15px;
  gap: 15px;
}
.testimonial-section .rating img,
.corporate-testimonial-section .rating img {
  width: 25px;
  height: 25px;
}
.testimonial-section .rating p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1;
}
.left-testimonial-cards > div,
.right-testimonial-cards > div {
  border: 1px solid var(--black-color);
  border-radius: 15px;
  padding: 30px;
}
.left-testimonial-cards > div .testimonial-quote svg,
.right-testimonial-cards > div .testimonial-quote svg {
  width: 30px;
  height: 30px;
}
.left-testimonial-cards > div > p,
.right-testimonial-cards > div > p {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 0;
}
.client-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  display: none;
}
.client-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.client-name p {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.client-name span {
  font-family: var(--font-family);
  font-display: swap;
  font-size: 0.9rem;
}
.left-testimonial-cards,
.right-testimonial-cards,
.creative-section .swiper > .creative-shoot-carousel {
  transition-timing-function: linear;
}
.right-testimonial-cards {
  margin-top: 20px;
}

/* How it work section styling */
.how-it-work-section {
  background-color: var(--white-color);
  padding: var(--section-padding);
}
.our-process-work {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem;
}
.process-card {
  position: relative;
  text-align: left;
}
.process-card div:first-child {
  background-color: var(--light-bakground-color);
  border-radius: 50%;
  height: 70px;
  width: 70px;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.6s ease;
}
.process-card div:first-child svg {
  width: 35px;
  height: 35px;
}
.process-card h4 {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.3;
}
.process-card p {
  font-size: 1rem;
  margin-bottom: 0;
}
.process-card::before {
  position: absolute;
  content: "";
  border-bottom: 2px dashed var(--black-color);
  width: 100%;
  top: 35px;
  left: 4.5rem;
}
.process-card:last-child::before {
  content: "";
  width: 0%;
  border: none;
}
.process-card:hover div:first-child {
  border: 2px dashed var(--black-color);
  background-color: var(--white-color);
  transform: scale(1.1);
}

/* Here is the FAQ styling */
.faq-section {
  /* background-color: var(--black-color); */
  padding: var(--section-padding);
}
.faq-section h3 {
  color: var(--white-color);
  text-align: center;
  margin-bottom: 0;
}
.faq-questions {
  margin-top: 2rem;
}
.faq .faq-ask {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap;
  column-gap: 2rem;
  color: var(--white-color);
  cursor: pointer;
  user-select: none;
  padding: 15px 0;
}
.faq .faq-ask h5 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}
.faq .faq-ask span svg {
  width: 20px;
  height: 25px;
  transition: 0.6s ease;
}
.faq .faq-answer {
  position: relative;
  height: 0;
  opacity: 0;
  transition: all 0.6s ease;
  overflow: hidden;
}
.faq .faq-answer p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--white-color);
  font-weight: 400;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.faq {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.faq:last-child {
  border: none;
}
.faq.active .faq-answer {
  opacity: 1;
}
.faq.active .faq-ask span svg {
  transform: rotate(-45deg);
}
.faq .faq-ask:hover span svg path {
  transition: 0.6s ease;
  fill: var(--primary-color);
}
.faq .faq-ask:hover h5 {
  transition: 0.6s ease;
  color: var(--primary-color);
}

/* Using for lenis */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* Contact form section styling here */
.contact-form-section {
  padding: var(--section-padding);
  background-image: url("images/contact-form-background.html");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 90% 80%;
}
.contact-form .contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-form {
  width: 100%;
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  /* margin: 0 auto; */
}
.contact-form input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
  background-color: transparent;
  font-size: 1rem;
  font-family: var(--font-family);
  font-display: swap;
  padding: 15px 0;
  font-weight: 500;
}
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
  background-color: transparent;
  padding: 15px 0;
  height: 150px;
  resize: vertical;
  font-weight: 500;
  font-family: var(--font-family);
  font-display: swap;
}
#form-submit {
  border: none;
  background-color: var(--black-color);
  color: white;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 25px;
  transition: 0.6s ease;
}
#form-submit:hover {
  background-color: var(--white-color);
  color: var(--black-color);
}
#form-submit:active {
  scale: 0.95;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom: 1.5px solid var(--black-color);
}

/*================================== Here is corporate video solution page stying ====================================*/
.coporate-video-hero-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
}
.coporate-video-hero-section p {
  font-size: 1.5rem;
  margin: 20px 0 40px 0;
}

/* More services section styling here */
.more-services-section {
  padding: var(--section-padding);
  background-color: var(--black-color);
  color: var(--white-color);
}
.more-services-section h1 {
  font-size: 3rem;
}

.more-services-section video {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.more-services-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-block-end: 0.5rem;
}

.more-services-section p {
  font-size: 1rem;
}

.more-services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  justify-content: space-between;
  gap: 20px;
}

.more-service-card {
  border: 1px solid var(--white-color);
  border-radius: 15px;
  padding-block: 1.75rem;
  padding-inline: 1.75rem;
  font-size: 0.95rem;
}

#profilespacing {
  letter-spacing: 1px;
}

/* Corporate information section styling here */
.corporate-information-section {
  padding: var(--section-padding);
}
.information-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 650px;
  margin: 0 auto;
  padding-inline-start: 2rem;
}
.corporate-information-image img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
}
.corporate-information-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
}
.information-heading {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 20px;
}
.information-heading h4 {
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1.3rem;
}
.information-heading span {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
}
.information-heading span svg {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.information-basetext {
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: height 0.6s ease, visibility 0.6s ease;
}
.information-basetext p {
  font-size: 1rem;
  font-weight: 500;
  padding-right: 70px;
}

/* Corporate video process section styling here */
.corporate-video-process {
  background-color: var(--light-bakground-color);
  padding: var(--section-padding);
}
.corporate-video-process .process-card div:first-child {
  background-color: var(--primary-color);
}
.corporate-video-process .process-card:hover div:first-child {
  background-color: var(--white-color);
  border: none;
}

/* USP Section styling here */
.usp-section {
  background-color: var(--light-bakground-color);
  padding: var(--section-padding);
}
.usp-section h3 {
  color: var(--black-color);
}
.usp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usp-cards .usp-card h4 {
  color: var(--black-color);
  font-size: 1.3rem;
}

.usp-cards .usp-card p {
  font-size: 1rem;
}

.usp-card {
  border: 1px solid var(--black-color);
  border-radius: 15px;
  padding: 30px;
  transition: 0.6s ease;
}
.usp-card:hover {
  transform: scale(1.07);
}
.usp-cards .usp-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

/* professional corporate video section styling here*/
.professional-corporate-video-section {
  background-color: var(--white-color);
  padding: var(--section-padding);
}
.professional-corporate-video-section h3 {
  color: var(--black-color);
}
.professional-corporate-video-section h4 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black-color);
}
.professional-corporate-video-section p {
  color: var(--black-color);
  margin-top: 10px;
}
.professional-corporate-video-section img {
  width: 100%;
  height: 350px;

  object-fit: contain;
}
.fixed-height {
  height: 450px;
}

/* Corporate testimonial section */
.corporate-testimonial-section {
  padding: var(--section-padding);
  background-color: var(--black-color);
  position: relative;
}
.corporate-testimonial-section h3 {
  color: var(--white-color);
}
.corporate-testimonial-section .rating {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}
.corporate-testimonial-section .rating p {
  color: var(--white-color);
}
.corporate-testimonial-section .left-testimonial-cards > div,
.corporate-testimonial-section .right-testimonial-cards > div {
  border: 1px solid var(--white-color);
  color: var(--white-color);
}
.corporate-testimonial-section
  .left-testimonial-cards
  > div
  .testimonial-quote
  svg
  path,
.corporate-testimonial-section
  .right-testimonial-cards
  > div
  .testimonial-quote
  svg
  path {
  fill: var(--white-color);
}
.corporate-testimonial-section .testimonial-cards::before {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.corporate-testimonial-section .testimonial-cards::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Blog section styling here */
.blog-section {
  background-color: var(--light-bakground-color);
  padding: var(--section-padding);
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background-color: var(--white-color);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.6s ease;
}
.blog-card:hover {
  transform: scale(1.06);
}
.blog-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}
.blog-content {
  padding: 1.5rem 2rem;
}
.blog-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.5rem;
  color: var(--black-color);
}

/* Corporate FAQ section styling here */
.corporate-faq-section {
  padding: var(--section-padding);
  background-color: var(--light-bakground-color);
}
.corporate-faq-section h3 {
  text-align: center;
}
.corporate-faq-section .faq .faq-ask {
  color: var(--black-color);
}
.corporate-faq-section .faq .faq-answer p {
  color: var(--black-color);
}
.corporate-faq-section .faq .faq-ask span svg path {
  fill: var(--black-color);
}
.corporate-faq-section .faq {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.corporate-faq-section .faq .faq-ask:hover h5 {
  color: rgba(0, 0, 0, 0.7);
}
.corporate-faq-section .faq:last-child {
  border: none;
}

/*================================== Here is the Contact page styling ====================================*/
.contact-hero-section {
  background-color: var(--black-color);
  padding: 150px 30px 150px 30px;
  color: var(--white-color);
}
.contact-hero-section p {
  font-size: 1.5rem;
  margin-top: 20px;
}
.contact-page-form-section > .container {
  background-color: #fff7cc;
  border-radius: 15px;
  margin-top: -100px;
  overflow: hidden;
  padding: 0;
}
.contact-page-form-section .contact-page-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.contact-page-image {
  width: 100%;
}
.contact-page-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.main-form {
  padding: 2.5rem;
  background-color: var(--primary-color);
}
.main-form > .contact-form {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  max-width: 450px;
}
.main-form .contact-form .contact-form-title {
  margin-bottom: 0.5rem;
}
.main-form .contact-form p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.main-form .contact-form input,
.main-form .contact-form textarea {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.main-form .social-contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.main-form .social-contact-icons span svg {
  width: 25px;
  height: 25px;
}
.additional-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0 60px 0;
}
.additional-contact-cards .additional-contact-card {
  background-color: #fff7cc;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
}
.additional-contact-card span svg {
  width: 40px;
  height: 40px;
}
.additional-contact-card h5 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 1.3rem;
  margin-bottom: 0.2rem;
}
.additional-contact-card div {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
}
.additional-contact-card .site-button {
  width: 100%;
  margin: 1rem 0 0 0;
}
.additional-contact-card a {
  color: var(--black-color);
}
.additional-contact-card:last-child {
  grid-column: 1 / span 3;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.additional-contact-card:last-child p {
  font-size: 1.2rem;
  color: var(--black-color);
}

/*================================== Here is the about page styling ====================================*/

.about-hero-sections {
  color: var(--white-color);
  padding: 140px 0px 80px 0px;
  min-height: 85svh;
  background-image: url("images/about-hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: grid;
  align-items: end;
}
.about-hero-sections h1 {
  font-size: 3rem;
}
.about-hero-sections p {
  font-size: 1.5rem;
  font-weight: 400;
  margin-block-end: calc((75px - 80px) + 50px);
}

/* Our achivement cards styling here */
.about-achivment-card {
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  color: var(--black-color);
  margin-block-start: -75px;
  margin-block-end: 80px;
}
.about-achivment-card div {
  text-align: center;
}
.about-achivment-card div p {
  line-height: 1;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.about-achivment-card div span {
  font-family: var(--font-family);
  line-height: 1;
  font-weight: 700;
  font-size: 1.2rem;
}

/* vision Section styling here */
.vision-Section {
  background-color: var(--light-bakground-color);
  padding: 0 0 80px 0;
}
.vision-Section img {
  width: 100%;
  border-radius: 15px;
}
.vision-Section h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* About action section styling here  */
.about-action-section {
  padding: var(--section-padding);
}
.about-action-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.about-action-section img {
  width: 100%;
  height: auto;
}

/*===================================================== Our work section styling here =====================================================*/
/* Hero Section Here */
.our-work-hero {
  position: relative;
  height: 100svh;
}

.our-work-showreel video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -2;
  height: 100svh;
  min-width: 100vw;
  object-fit: cover;
}

@media (max-aspect-ratio: 16/9) {
  .our-work-showreel video {
    width: auto;
    height: 100svh;
    object-fit: cover;
  }
}

.video-overlay-background {
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.our-work-post-section {
  padding: var(--section-padding);
  background-color: var(--black-color);
  color: var(--white-color);
}

/* Here is post wrapper stying  */
.workpost-cards-warpper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Showreel Video Styling Here */
.youtube {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  /* cursor: pointer; */
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.youtube img {
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.8;
}
.youtube .play-button {
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 50%;
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 22px 0 22px 33px;
  border-color: transparent transparent transparent var(--primary-color);
}
/*.youtube img,
.youtube */
.play-button {
  cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/*===================================================== Thank you section styling here =====================================================*/
.thanks-section {
  min-height: 100vh;
}
.thanks-success-wrapper {
  min-height: 35vh;
  background-color: #000;
  padding-block-start: 130px;
  padding-block-end: 5rem;
}
.thanks-success-wrapper .success-icon svg {
  width: 5.5rem;
  height: 5.5rem;
  margin-inline: auto;
  display: block;
}
#message-content {
  width: 100%;
  min-height: 65vh;
  background-image: url("images/sucess-erorr-background.html");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-block-end: 80px;
  position: relative;
}
.thanks-content {
  max-width: 35rem;
  background-color: #fff7cc;
  border-radius: 15px;
  padding: 3rem;
  position: absolute;
  left: 50%;
  top: -3.75rem;
  transform: translate(-50%, 0);
}
.thanks-content h1 {
  font-size: 2.5rem;
}
.thanks-content p {
  font-size: 1.3rem;
  margin-block-end: 2.5rem;
}

/* //privacy policy */

.privacy-content {
  padding-top: 100px;
  background-color: black;
}
.privacy-content {
  color: white;
}

.info-section {
  margin-top: 4rem;
}
.info-section h2 {
  font-size: 1.8rem;
  /* color: white; */
}
.info-section p {
  font-size: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 404 Page styling here */
.fourzerofour-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: var(--black-color);
  color: var(--white-color);
  padding-block: 130px;
  padding-inline: 20px;
}

.fourzerofour-page h1 {
  font-size: 12rem;
  line-height: 1;
}

.fourzerofour-page h2 {
  font-size: 3rem;
  line-height: 1.2;
}

.fourzerofour-page p {
  font-size: 1.2rem;
  margin-block-end: 0.75rem;
}
