:root {
  --color-primary: #008197;
  --color-text-dark: #161616;
  --color-text-light: #ffffff;
  --color-text-secondary: #808080;
  --color-text-subtle: #1f1f1f;
  --color-background-light: #ffffff;
  --color-background-dark: #161616;
  --color-background-grey: #f6f6f6;
  --color-background-grey-light: #ebebeb;
  --color-accent-green: #00c047;
  --font-main: 'Instrument Sans', sans-serif;
  --font-display: 'Sora', sans-serif;
}
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--color-background-light);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.letsconnect{
display: flex;
position: absolute;
right :0px ;
margin: 2% ;
}

.btn-dark {
  background-color: var(--color-text-dark);
  color: var(--color-text-light);
  box-shadow: 16px 16px 22.6px -1px rgba(0, 0, 0, 0.2), 6.3px 6.3px 8.9px -0.8px rgba(0, 0, 0, 0.11);
}
.btn-light {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 18px 18px 25px -1px rgba(0, 0, 0, 0.25), 7px 7px 10px -0.8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 40px;
  padding-bottom: 100px;
}
.header-container {
  max-width: 2100px;
  display: flex;
  margin: 0;
  justify-content: space-between;
  align-items: center;
  
}
.brand-logo{
  position: relative;
  font-family: var(--font-main);
  left: 0%;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text-dark);
  text-decoration: none;
  z-index: 1;
  
}
.main-nav {
  display: flex;
  gap: 1.5vw;
  margin-left: 10.8vw;
  margin-right: 18vw;
}
  .main-nav a {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 15px;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
  }

.main-nav a.active {
  color: #000000; 
}
 .main-nav a:hover {
    color: var(--color-primary);
  }
@media (max-width: 2200px) {
  .main-nav {
    display: flex;
    gap: 1.5vw;
    margin-left: 16vw;
    margin-right: 23vw;
  }
}


@media (max-width:1540px) {
  
.main-nav {
  display: flex;
  gap: 1.5vw;
  margin-left: 10.8vw;
  margin-right: 18vw;
}

.main-nav a {
  font-size: 1.0416vw;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--color-primary);
}

  
}



@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide nav on mobile for simplicity */
    }
    .site-header {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
  .All-works{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:  0  auto;
    margin-top: 11.29vw;
  }
.all-works-text{
    max-width: 41.43vw;
    font-size: 1.575vw;
    font-weight: 500;
}
.tag-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 16px;
    background-color: var(--color-background-grey);
    color: var(--color-text-subtle);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    margin-right: 0%;
  
}
.tag-link svg{
transition: all 0.4s ease;
}
.tag-link:hover{
  background-color: #111111;
  color: #ffffff;
  fill: #ffffff;
}
.tag-link:hover svg{
  fill: #ffffff;
}

.designs-header{
  display: flex;
  width: 93vw;
  height: 11.79vw;
  background-color: #000000;
  border-radius: 36px;
  margin: 7.14vw auto;
  justify-content: center;
  align-items: center;
}
.designs-header p{
  font-size: 5vw;
  font-weight: 400;
  color: #ffffff;
  
}

.project {
  max-width: 1190px;
  height: auto;
  margin: 100px 5.71vw;
  padding: 0 20px;
}

.project-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 32px;
}
.project-content{
  margin-top: 5vw;
}
.project-row{
  display: grid;
  grid-template-columns: 150px 1fr;
  margin-bottom: 20px;
  column-gap: 40px;
  align-items: baseline;
}

.label {
  color: #7a7a7a;
  font-size: 20px;
  font-weight: 500;
}

.content {
  color: #111111;
  font-size: 20px;
  line-height: 1.7;
}

@media (max-width: 992px) {

  .designs-header p {
    font-size: 6vw;
  }

  .project {
    margin: 70px auto;
    padding: 0 6vw;
  }

  .project-title {
    font-size: 2rem;
  }

  .project-row {
    grid-template-columns: 120px 1fr;
    column-gap: 24px;
  }

  .label, .content {
    font-size: 1rem;
  }
}

.app-store {
  max-width: 1320px;
  margin: 60px auto;
  display: flex;
  justify-content: center;
}

.app-store img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 36px;
  object-fit: contain;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-store img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.footer-section {
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 458px 1fr;
  gap: 80px;
  align-items: flex-start;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.footer-cta h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.08px;
  color: var(--color-text-secondary);
  margin: 0 0 20px 0;
}
.footer-cta h2 .text-light {
  color: var(--color-text-light);
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 20px;
}
.contact-item img {
  width: 27px;
  height: 27px;
}
.message-cta p {
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.6px;
  margin: 0 0 20px 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group.small {
  flex: 0 1 172px;
}
.form-group label {
  font-size: 20px;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background-color: #2b2b2b;
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--color-text-light);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
/* --- Custom Dropdown --- */
.custom-select-group {
  position: relative;
}

.custom-select {
  position: relative;
  background-color: #2b2b2b;
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--color-text-light);
  font-family: var(--font-main);
  font-size: 16px;
  cursor: pointer;
  user-select: none;
}

.custom-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.custom-select.open {
  border-radius: 16px 16px 0 0;
}

.custom-select-trigger {
  display: block;
}

.custom-options {
  position: absolute;
  top: calc(100%);
  left: 0;
  right: 0;
  background-color: #2b2b2b;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  overflow-y:auto ;
  max-height: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 10;
}
.custom-options::-webkit-scrollbar{
  display: none;
}

.custom-select.open .custom-options {
  max-height: 240px;
  opacity: 1;
  visibility: visible;
}

.custom-option {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  color: var(--color-text-light);
  transition: all 0.2s ease;
}

.custom-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.custom-option.selected {
  background-color: rgba(255, 255, 255, 0.15);
}





