/* --- HERO SECTION --- */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  margin-left: 5%;
}
.h-img-container {
  width: 700px;
  height: 700px;
  overflow: hidden;
  position: absolute;
  margin-left: 50px;
  border-radius: 150px 300px;
}
.h-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.5);
}
.h-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h-text {
  position: relative;
  left: 30%;
  bottom: 10%;
  background-color: transparent;
  text-align: end;
}
.h-text h1 {
  font-size: 6.4rem;
  font-family: "Playfair Display", Georgia, serif;
  background-color: transparent;
  color: #1d5c4a;
}
.h-text p {
  font-size: 1.2em;
  background-color: transparent;
}
#p1 {
  padding: 20px 0;
}
.h-buttons {
  position: relative;
  top: 30px;
  background-color: transparent;
}
.h-buttons button {
  padding: 15px 30px;
  border-radius: 20px;
  border: none;
  font-size: 1.025rem;
}
#btn1 {
  background-color: #1d5c4a;
  color: #fff;
}
#btn2 {
  background-color: #a8d5c5;
}
.icons {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 50px;
  bottom: 175px;
  background-color: transparent;
}
.icons img {
  height: 100%;
  width: 100%;
  padding: 10px 0;
  background-color: #a8d5c5;
  border-radius: 50px;
  padding: 10px;
}

@media (max-width: 1250px) {
  .hero {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding: 20px;
  }
  .h-img-container {
    position: relative;
    margin-left: 0;
    width: 90vw;
    height: 90vw;
    max-width: 700px;
    max-height: 700px;
    margin-top: -75px;
  }
  .h-text {
    position: relative;
    left: 0;
    bottom: 0;
    text-align: center;
    padding-bottom: 30px;
  }
  .h-text h1 {
    margin-top: 100px;
    font-size: clamp(2.5rem, 6vw, 5rem);
  }
  .icons {
    position: absolute;
    right: 25px;
    bottom: 175px;
    gap: 15px;
    padding: 20px 0;
  }
}
@media (max-width: 765px) {
  .h-img-container {
    max-width: 500px;
    max-height: 500px;
    border-radius: 100px 200px;
    margin-top: -25px;
  }
}
/* --- ABOUT ME SECTION --- */
.about-me {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-container {
  background-color: #ede8e3;
  width: 90%;
  height: 90%;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 550px 1fr;
  box-shadow: inset 0 0 55px rgba(0, 0, 0, 0.1);
}
.img-wrapper {
  height: 100%;
  max-width: 550px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  background-color: transparent;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-wrapper {
  background-color: transparent;
  margin: 120px 0 0 50px;
}
h2 {
  font-size: 4rem;
  padding: 40px 0;
  font-family: "Playfair Display", Georgia, serif;
}
.about-container p {
  font-size: 1.3rem;
  padding-right: 50px;
  max-width: 600px;
}
#p2 {
  font-size: 1.625rem;
  color: #1d5c4a;
  font-weight: 900;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .about-container {
    display: flex;
    flex-direction: column-reverse;
  }
  .img-wrapper {
    width: 100%;
    max-height: 500px;
    max-width: 100%;
    border-radius: 0 0 20px 20px;
  }
  #h2-1 {
    padding-top: 0;
  }
}

/* --- SERVICES SECTION --- */
.my-services {
  display: flex;
  margin-top: 100px;
  justify-content: center;
  gap: 200px;
}

.services-left {
  display: grid;
  gap: 10px;
  grid-template-columns: 250px 250px;
  grid-template-areas:
    "h h"
    "c1 c1"
    "c2 c3";
}
.container {
  background-color: #ede8e3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
#c1 {
  grid-area: c1;
  border-radius: 70px 70px 25px 25px;
}
#c2 {
  grid-area: c2;
  border-radius: 25px 70px 20px 70px;
}
#c3 {
  grid-area: c3;
  border-radius: 70px 25px 70px 20px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background-color: transparent;
  justify-content: center;
}
.tags p {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.925rem;
  color: #000;
}

#h2-2 {
  padding: 0;
  grid-area: h;
  justify-self: center;
}
.services-right {
  display: grid;
  grid-template-areas:
    "img1 img2 img3"
    "img4 img2 img5"
    "img4 img6 img6";
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, calc(500px / 3));
  width: 500px;
  height: 500px;
}
#s-img1 {
  grid-area: img1;
}
#s-img2 {
  grid-area: img2;
}
#s-img3 {
  grid-area: img3;
}
#s-img4 {
  grid-area: img4;
}
#s-img5 {
  grid-area: img5;
}
#s-img6 {
  grid-area: img6;
}
.services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

@media (max-width: 1024px) {
  .my-services {
    gap: 50px;
    padding: 20px;
  }
  .services-right {
    grid-template-areas:
      "img1 img2"
      "img3 img2"
      "img4 img4"
      "img5 img6";
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    height: 80vh;
    max-height: 500px;
    overflow: hidden;
  }
  .services-image {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .my-services {
    flex-direction: column;
    align-items: center;
  }
  .services-right {
    grid-template-areas:
      "img1 img2 img3"
      "img4 img2 img5"
      "img4 img6 img6";
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, calc(500px / 3));
  }
  .services-left {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- BRANDS SECTION --- */
.brands-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.brands-header{
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: center;
}
.brands-header svg{
  margin-bottom: -10px;
}
.brand-logos {
  width: 70%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.brand-logos img{
  height: 100px;
  width: 150px;
  flex-shrink: 0;
  object-fit: contain;
}
#h2-6{
  font-size: clamp(3rem, 7vw, 5rem);
}
@media(max-width:1024px){
  .brands-header svg{
    padding: 0 20px;
  }
  .brands-header{
    gap: 0;
  }
}
@media(max-width:768px){
  .brands-header svg{
    display: none;
  }
  .brand-logos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-logos img{
    width: 70%;
  }
}
/* --- PORTFOLIO SECTION --- */
.portfolio-section {
  display: flex;
  margin-top: 100px;
  flex-direction: column;
}
.phone-set {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
  width: 100%;
  margin: 0 auto;
  max-width: 1500px;
}
.phone-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19;
}
.screen-content {
  position: absolute;
  top: 2%;
  left: 4%;
  width: 92%;
  height: 96%;
  object-fit: cover;
  border-radius: 30px;
  z-index: 0;
}
.phone-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-color: transparent;
}
.phone-camera {
  position: absolute;
  z-index: 3;
}
.ps-h2 {
  margin-top: 100px;
  align-self: center;
}
#h2-3{
  font-size: clamp(3rem, 7vw, 5rem);
}
@media (max-width: 1024px) {
  .phone-set {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
    max-width: 500px;
  }
}

/* --- STATS SECTION ---*/
.stats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 30px;
  margin-top: 200px;
}
#h2-5 {
  font-size: clamp(3rem, 7vw, 5rem);
  padding: 0;
}
.ss-img-container {
  height: 40vh;
  width: 90%;
  z-index: 1;
  background-color: transparent;
}
#ss-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50px;
}
.ss-top {
  align-self: flex-start;
  margin-left: 100px;
  max-width: 1000px;
  width: 80%;
}

.change-background {
  height: 100%;
  width: 100%;
  background-color: #061a15;
  margin-top: -210px;
  z-index: 0;
}
.change-background p {
  color: #fff;
}
.stats-wrapper {
  margin-top: 300px;
  background-color: transparent;
  display: grid;
  grid-template-areas:
    "s-c1 s-c1"
    "s-c2 s-c3";
  grid-template-columns: 400px 400px;
  gap: 20px;
  justify-content: center;
}
.stats-c1 {
  display: flex;
  gap: 15px;
  grid-area: s-c1;
  background-color: transparent;
  padding: 0;
}
.stats-c2 {
  grid-area: s-c2;
  border-radius: 10px;
  padding: 30px;
  height: 210px;
}
.stats-c3 {
  grid-area: s-c3;
  border-radius: 10px;
  padding: 30px;
  height: 210px;
}
.single-wrapper {
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  height: 210px;
  box-sizing: border-box;
}
.single-wrapper,
.stats-c2,
.stats-c3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 0;
  background-color: #1d5c4ab5;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.6);
}
.stat-label {
  font-size: 1.5em;
  font-weight: 300;
}
.stat-number {
  font-size: 4em;
}
.stat-sub {
  font-size: 1.8em;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .stats-wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 50px;
  }
}
@media (max-width: 765px) {
  .ss-top {
    margin-left: 50px;
  }
  .stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1.5em);
    font-weight: 300;
  }
  .stat-number {
    font-size: clamp(1.8rem, 6vw, 4em);
  }
  .stat-sub {
    font-size: clamp(1rem, 3vw, 1.8em);
    font-weight: 700;
  }
}
/* --- CONTACT SECTION --- */
.contact-section {
  min-height: 60vh;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #061a15;
  padding: 300px 0 100px 0;
}
.contact-section p,
.contact-section h3,
.form-sentence {
  position: relative;
  padding: 0 20%;
  padding-right: 10%;
  background-color: #061a15;
}
.contact-title p {
  font-size: 1.4em;
  color: #fff;
}
.contact-title h3 {
  font-size: 3em;
  padding-top: 20px;
  font-family: "Playfair Display", Georgia, serif;
  color: #fff;
}
.form-sentence {
  font-size: 2em;
  position: relative;
  padding-top: 5%;
  line-height: 2em;
  color: #fff;
}
.contact-section input,
.contact-section #formDropdown {
  border: none;
  background-color: #061a15;
  border-bottom: 1px solid #fff;
  padding-left: 20px;
  font-size: inherit;
  color: #fff;
}
.contact-section input::placeholder {
  text-align: center;
  color: #fff;
}
.contact-section input:focus {
  outline: none;
}
.custom-select {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.select-selected {
  border-bottom: 1px solid #1d5c4a;
  padding: 5px 0;
  cursor: pointer;
  color: #a8d5c5;
  text-align: center;
}
.select-selected.has-value {
  color: #061a15;
}
.select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ede8e3;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
  border-radius: 6px;
  font-size: 0.8em;
}
.select-options.open {
  display: block;
}
.select-options li {
  cursor: pointer;
  color: #061a15;
  text-align: center;
  min-width: 300px;
}
.select-options li:hover {
  background: #a8d5c5;
}
.contact-bottom {
  display: flex;
  padding-left: 20%;
  background-color: #061a15;
}
.contact-section button {
  width: 200px;
  height: 50px;
  border: none;
  background-color: #1d5c4a;
  border-radius: 6px;
  color: #fff;
  margin-top: 25px;
  font-weight: 700;
  cursor: pointer;
}
.arrow {
  color: #fff;
  margin-left: 25px;
  font-size: 1.4em;
  background-color: transparent;
}
#wam {
  position: relative;
  padding: 40px;
  margin-left: 30%;
  font-size: 1.2em;
  z-index: 9;
  color: #061a15;
}
#wam a {
  text-decoration: underline;
  color: #a8d5c5;
}
@media (max-width: 768px) {
  .contact-section {
    height: calc(100% + 100px);
  }
  .contact-section p,
  .contact-section h3,
  .form-sentence {
    padding: 5%;
  }
  .contact-bottom {
    padding-left: 5%;
  }
  .contact-section input {
    width: 90%;
  }
}
