/* -------header------- */
#header {
  padding: 18px;
  position: fixed;
  background-color: transparent;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: top 0.6s ease;
}
#header .logo a {
  color: #ff305b;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 25px;
  font-weight: 600;
}
.links {
  transition: all 0.5s;
}
.links a {
  color: white;
  padding: 0 8px;
  font-weight: 400;
}
.links a:hover {
  color: #ff305b;
}
a.selected {
  color: #ff305b;
}

/* -------home------- */
#home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/hero img.jpeg");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.home-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  max-width: 600px;
  width: 100%;
  color: white;
  text-align: center;
}
.home-content h1 {
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  line-height: 77px;
  font-weight: 600;
  color: #ff305b;
  margin: 10px 0;
}
.home-content h4 {
  font-weight: 300;
  text-align: center;
}
.home-content h4::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 30px;
  background: #fff;
  transform: translateY(5px);
  margin-left: 10px;
}

/* -------about------- */
.about-area {
  padding: 100px 0 125px;
}
.about-image {
  width: 30%;
}
.about-content {
  width: 60%;
}
.about-box {
  border-radius: 5px;
  box-shadow: 0 0 0 8px #555 inset;
  display: block;
  margin: 0;
  position: relative;
}
.porfile-photo {
  position: relative;
  transform: translate(24px, 24px);
}
.porfile-overly {
  background: rgba(0, 0, 0, 0.57);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.porfile-photo > img {
  border-radius: 5px;
}
.social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-area .social-icon li {
  display: inline-block;
}
.about-area .social-icon li a {
  display: block;
  font-size: 20px;
  height: 20px;
  width: 32px;
  color: #fff;
}
.about-area .social-icon li a:hover {
  color: #ff305b;
}
.porfile-photo:hover .porfile-overly {
  border-radius: 5px;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.profile-desc {
  padding-left: 70px;
}
.profile-about ul {
  display: table;
}
.profile-about ul li {
  color: #555;
  font-weight: 400;
  margin-bottom: 25px;
}
.profile-about li a {
  color: #7e7e7e;
}
.profile-desc h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 25px;
  padding-left: 13px;
  position: relative;
  text-transform: uppercase;
}
.profile-desc h2:after {
  background: #ff305b;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}
.profile-desc > p {
  border-bottom: 1px dashed #999;
  margin-bottom: 25px;
  padding-bottom: 25px;
  line-height: 25px;
}
.profile-about ul li:nth-child(2n + 1) {
  width: 40%;
}
.profile-about ul li:nth-child(2n) {
  width: 60%;
}
.profile-about span {
  color: #333;
  font-weight: 500;
}
.download-cv-btn > a {
  background: #ff305b;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
  padding: 10px 24px;
  transition: all 0.3s ease-in-out;
}
.download-cv-btn > a:hover {
  background: #ec2403;
}
.download-cv-btn > a i {
  margin-left: 5px;
}

/* -------services------- */
.service-section {
  padding: 100px 0 54px;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  position: relative;
  text-transform: capitalize;
}
.section-title h2:before {
  border-color: #ff305b;
  border-style: solid;
  border-width: 1px 0;
  bottom: 0;
  padding: 4px 0 5px;
  width: 70px;
}
.section-title h2:after,
.section-title h2:before {
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
}
.section-title h2:after {
  background-color: #ff305b;
  bottom: 5px;
  height: 1px;
  width: 160px;
}
.single-service {
  text-align: center;
  width: 25%;
}
.single-service-inner {
  padding: 40px 15px;
  transition: all 0.3s ease-in-out;
}
.single-service i {
  color: #ff305b;
  display: block;
  font-size: 36px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.single-service-inner > h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.single-service-inner > p {
  margin: 0;
}
.single-service:hover .single-service-inner i {
  transform: scale(1.2);
}
.single-service:hover .single-service-inner {
  background: #fff;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

/* -------portfolio------- */
.portfolio-area {
  padding: 100px 0 70px;
}
.portfolio-menu {
  margin-bottom: 50px;
}
.portfolio-menu button {
  background: transparent;
  border: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 3px 12px;
  position: relative;
  text-transform: uppercase;
}
.portfolio-menu button:focus {
  outline: none;
}
.portfolio-menu button.active {
  background: transparent;
  border: none;
  color: #ff305b;
}
.card {
  width: 33.3333%;
  padding-left: 50px;
}
.portfolio {
  position: relative;
  margin-bottom: 30px;
}
.portfolio a {
  display: block;
  position: relative;
}
.portfolio a:after {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.4s ease;
}
.portfolio a:hover:after {
  opacity: 0.5;
  visibility: visible;
}
.portfolio-view {
  display: inline-block;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
}
.portfolio a:hover .portfolio-view {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.portfolio-view {
  bottom: 15px;
  color: #ff305b;
  font-size: 20px;
  position: absolute;
  right: 15px;
}
.modal-header > h2 {
  color: #ff305b;
  font-size: 24px;
  margin: 0;
}
.modal-body > img {
  width: 100%;
  display: block;
}
.modal-body > p {
  margin: 20px 0 10px;
}
.project-details > li {
  font-size: 14px;
  line-height: 25px;
}
.project-details > li i {
  font-size: 14px;
  color: #ff305b;
  margin-right: 10px;
}
.project-details > li a {
  color: #ff305b;
}
.project-details > li a:hover {
  text-decoration: underline;
}
.title > h3 {
  font-size: 20px;
  margin: 15px 0 10px;
}
.share-btn > a {
  color: #555555;
  margin-right: 10px;
  font-size: 16px;
}
.share-btn > a:hover {
  color: #ff305b;
}

/* -------fun-facts------- */
.fun-facts-area {
  padding: 100px 0;
}
.single-fun-facts {
  text-align: center;
}

.facts {
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row;
  gap: 134px;
}

.facts-icon i {
  color: #ff305b;
  font-size: 26px;
  margin-bottom: 15px;
}

.single-counter h3 {
  font-size: 26px;
  font-weight: 800;
}
.single-counter h5 {
  color: #555555;
  font-size: 16px;
  margin: 0;
}
/* testimonel */
.testimonel-area {
  overflow: hidden;
  padding: 100px 0;
}

.testimonel-area .container {
  width: 52%;
}
.testimonel-item {
  background: #f1f1f1 none repeat scroll 0 0;
  border-radius: 5px;
  overflow: hidden;
  padding: 40px;
  position: relative;
}
.testimonel-item:after {
  border-color: #ff305b rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 120px;
  content: "";
  height: 72px;
  left: -199px;
  position: absolute;
  top: 0;
  transform: translateX(0%);
  width: 77px;
  z-index: 1;
}
.testimonel-cont {
  padding-left: 130px;
}
.testimonel-cont a {
  color: #777777;
  font-size: 15px;
}
.testimonel-img {
  border-radius: 50%;
  float: left;
  margin: 12px auto;
  overflow: hidden;
  position: relative;
  width: 110px;
  z-index: 2;
}
.testimonel-item h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.review-reating {
  color: #f1c30d;
  margin-bottom: 12px;
}
.testimonel-cont > p {
  font-size: 16px;
  font-style: italic;
}
.testimonel-carousel .owl-dots {
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}
.testimonel-carousel .owl-dot {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #ff305b;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 0 3px;
  width: 10px;
}
.testimonel-carousel .owl-dot.active {
  background: #ff305b none repeat scroll 0 0;
  border-radius: 10px;
  padding: 4px 12px;
}

/* blog */

.blog-area {
  padding: 100px 0 70px;
}
.single-blog {
  margin-bottom: 30px;
  padding: 20px;
}
.post-content {
  padding: 20px;
  background: #ffffff;
}
.post-meta {
  margin-bottom: 10px;
}
.post-content > h3 {
  margin-bottom: 15px;
}
.post-content h3 a,
.post-read > a {
  color: #333333;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-content p {
  line-height: 25px;
  margin-bottom: 10px;
}
.post-content h3 a:hover,
.post-read > a:hover {
  color: #ff305b;
}

.w-33 {
  width: 33.3333%;
}

/* contact */
/* Container and Section */
.contact-section {
  padding: 60px 20px;
  background: #ffffff;
}

/* Form Styling */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s;
  margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff305b;
  outline: none;
}

/* Submit Button */
.submit-btn {
  background-color: #ff305b;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #ec2403;
}

/* footer */
.footer-area {
  background: #333333 none repeat scroll 0 0;
  padding: 50px 0;
  text-align: center;
}
.copy-right {
  color: #ffffff;
  margin: 0;
}
.copy-right a {
  color: #ff305b;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.copy-right a:hover {
  text-decoration: underline;
}
.footer-social-icon li {
  display: inline-block;
}
.footer-social-icon li a {
  color: #ffffff;
  display: block;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  padding: 0 10px;
}
.footer-social-icon li a:hover {
  color: #ff305b;
}

/* ---------- */
.parent-menu-hamburger {
  float: right;
}

.menu-hamburger span,
.menu-hamburger::after,
.menu-hamburger::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background-color: white;
  margin-bottom: 4px;
  border-radius: 15px;
  transition: background-color 0.4s 0s;
  cursor: pointer;
}

.parent-menu-hamburger:hover {
  .menu-hamburger span,
  .menu-hamburger::after,
  .menu-hamburger::before {
    background-color: #007bff;
  }
}
