:root {
  /* define color scheme   */
  --prim-yellow: #fcd044;
  --white-yellow: #f4d458;
  --brown: #826302;
  --prim-green: #9cb474;
  --white-green: #c4d4a4;
  --grey: #bcbcbc;
  --black: #000;
  --white: #fff;

  --dark-grey: #7d7d7d;
  /*Define font family */
  --casual-font: "Cinzel Decorative", cursive;
  --light-font: "Julius Sans One", sans-serif;
  --main-font: "Rubik", sans-serif;
}

#main {
  scroll-behavior: smooth;
}

#about-main {
  color: white;
  width: calc(100% - 60px);
  height: 100%;
  margin: 0 auto;
  border-radius: 50px;
  /* background-color: var(--black); */
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px;
  align-items: center;
}
#about-main .img {
  width: 400px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  margin-left: 50px;
  position: relative;
}

.img:hover img {
  transform: scale(1.3);
}

.img img {
  width: 100%;
  height: 100%;
  transition: all ease 0.5s;
  object-fit: cover;
}
.img .name {
  position: absolute;
  bottom: 30px;
  width: 100%;

  display: flex;
  justify-content: center;
}
.img .name h3 {
  width: fit-content;
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid var(--brown);
  transition: all ease 0.5s;
  color: white;
}

.img:hover .name h3 {
  background-color: var(--brown);
  color: var(--black);
}

.about-info {
  padding: 30px;
  padding-right: 50px;

  width: 60%;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.about-info h3 {
  font-size: 30px;
}
.about-info p {
  color: var(--grey);
}

.about-second {
  padding: 0 30px;
  margin: 50px 0;
  width: 100%;
  height: auto;
  /* background-color: red; */
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.about-second > div {
  /* min-width: 600px; */
  width: 48%;
  height: 100%;

  border-radius: 30px;
}
.about-second > div:nth-child(1) {
  background-color: var(--brown);
  padding: 30px;
}
.about-second > div:nth-child(2) {
  background-color: var(--grey);
  padding: 30px;
}
.small-heading {
  padding: 10px 20px;
  font-size: 30px;
  border: 2.5px solid var(--black);
  width: fit-content;
  border-radius: 30px;
}
.address {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}
.address a {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
}

.group {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.group h1 {
  display: flex;
  font-size: 80px;
}
.team-container {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.our-team p {
  padding: 10px 50px;
}

.team-card .img {
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 30px;
  object-fit: cover;
  overflow: hidden;
  position: relative;
}
.team-card .connect-links {
  padding: 10px 5px;
  justify-content: center;
}
.our-studio-container {
  margin-bottom: 200px;
}

.our-studio-container > div {
  display: flex;
}
.our-studio-container div:nth-child(1) img {
  width: 600px;
  margin-top: 200px;
}

.our-studio-container div:nth-child(1) video {
  width: 500px;
  margin-left: 200px;
}
.our-studio-container div:nth-child(2) img {
  width: 600px;
  margin-left: 200px;
}

.our-studio-container div:nth-child(2) video {
  width: 500px;
  margin-top: 300px;
}

@media screen and (max-width: 1350px) {
  #about-main .about-info {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #about-main .about-info p {
    padding: 0 50px;
    text-align: center;
  }
}

@media screen and (max-width: 900px) {
  #about-main .img {
    width: 74%;
    margin-left: 0;
  }

  .about-second {
    flex-direction: column;
    gap: 50px;
  }
  .about-second > div {
    width: 99%;
    margin: 0;
  }
  .our-studio-container > div {
    gap: 100px;
    flex-wrap: wrap;
  }
  .our-studio-container div:nth-child(1) img {
    width: 100vw;
    margin-top: 100px;
  }

  .our-studio-container div:nth-child(1) video {
    width: 100vw;
    margin-left: 0;
  }
  .our-studio-container div:nth-child(2) {
    margin-top: 100px;
  }
  .our-studio-container div:nth-child(2) img {
    width: 100vw;
    margin-left: 0;
  }

  .our-studio-container div:nth-child(2) video {
    width: 500px;
    margin-top: 0;
  }
}

@media screen and (max-width: 600px) {
  #about-main {
    width: 100%;
    border-radius: 0;
    gap: 50px;
    align-items: center;
  }
  #about-main .img {
    width: 70%;
    height: 300px;
    margin-left: 0;
  }
  #about-main .about-info {
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #about-main .about-info {
    padding: 0;
  }
  #about-main .about-info p {
    padding: 0 10px;
    font-size: 16px;
  }
  .about-second {
    flex-direction: column;
    gap: 50px;
  }
  .about-second > div {
    width: 99%;
  }
  .our-studio-container div:nth-child(1) img {
    width: 100vw;
    margin-top: 100px;
  }

  .our-studio-container div:nth-child(1) video {
    width: 100vw;
    margin-left: 0;
  }
  .our-studio-container div:nth-child(2) {
    margin-top: 100px;
  }
  .our-studio-container div:nth-child(2) img {
    width: 100vw;
    margin-left: 0;
  }

  .our-studio-container div:nth-child(2) video {
    width: 100vw;
    margin-top: 0;
  }
}

.about-section {
  padding: 80px 20px;
}
.about-section .container {
  max-width: 1200px;
  margin: auto;
}
.about-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.description  {
  padding: 100px 0;
  text-align: center;
}

/* Content Column */
.content-column {
  flex: 1 1 50%;
}
.about-section .inner-column {
  padding: 20px;
}
.sec-title {
  margin-bottom: 30px;
}
.sec-title .title {
  font-size: 18px;
  font-weight: 500;
  color: mediumblue; /* Mehndi brown */
  margin-bottom: 10px;
}
.sec-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-bottom: 10px;
}
.sec-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: mediumblue;
}
.about-section .text {
  font-size: 16px;
  line-height: 26px;
  color: #373636;
  margin-bottom: 15px;
}

/* Button */
.btn-style-one {
  display: inline-block;
  color: #000;
  padding: 12px 30px;
  font-weight: bold;
  border: 1px solid #000;
  transition: background 0.3s;
}
.btn-style-one:hover {
  background: #000;
  color: #fff;
}

/* Social Links */
.connect-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.connect-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid mediumblue;
  border-radius: 50%;
  color: mediumblue;
  font-size: 16px;
  transition: all 0.3s;
}
.connect-links a:hover {
  background: mediumblue;
  color: #fff;
}

/* Image Column */
.image-column {
  flex: 1 1 40%;
  position: relative;
}
.image-column .inner-column {
  position: relative;
}
.image-column .author-desc {
  padding: 10px;
  border-radius: 50px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  text-align: center;
  z-index: 1;
}
.image-column .author-desc h2 {
  font-size: 30px;
  color: #fff;
}
.image-column .author-desc span {
  font-size: 14px;
  color: #fff;
  letter-spacing: 2px;
}
.image-column img {
  width: 100%;
  border-radius: 0 50px 0 50px;
  min-height: 500px;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column;
  }
  .content-column,
  .image-column {
    flex: 1 1 100%;
  }
}

.connect-links a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: mediumblue;
  border-radius: 50%;
  z-index: -1;
  bottom: -100%;
  left: -100%;
  transition: 0.3s ease;
}

.highlight {
  padding: 2px 4px;
  font-weight: 500;
  color: rgb(28, 18, 210);
  border-bottom: 1px solid rgb(28, 18, 210);
}

.features-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.features-list li {
  background: #f9f9f9;
  padding: 10px 15px;
  border-left: 5px solid #f1c40f;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 16px;
}

.features-list li::before {
  content: "✔";
  color: #27ae60;
  margin-right: 8px;
  font-weight: bold;
}

#counter {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
}

#counter .item {
  background: #e6542e;
  width: 300px;
  padding: 35px 40px;
  margin: 10px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}

#counter .item .count {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 42px;
}

#counter .item h3 {
  color: #000;
  text-transform: capitalize;
}




