: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;

}
  
#desktop-content {
      display: none;
    }
#mobile-message {
  display: flex;
  height: 100vh; 
  width: 100%;
  background: #00b6d6;

  color: rgb(0, 0, 0);
  font-family: 'Instrument Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  animation: fadeIn 1.5s ease forwards;
}

#mobile-message h1 {
  font-size: 32px;
  margin-top: 17vw;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  transform: scale(0.8);
  animation: popUp 1.2s ease forwards 0.5s;
}

#mobile-message p {
  font-size: 18px;
  opacity: 0;
  animation: fadeText 1.5s ease forwards 1.5s;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


* {
  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-light {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
}
.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-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: 1200px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@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:hover {
    color: var(--color-primary);
  }
    .main-nav a.active{
    color: var(--color-text-dark);
  }

@media (max-width: 2200px) {
  .main-nav {
    display: flex;
    gap: 1.5vw;
    margin-left: 16vw;
    margin-right: 23vw;
  }
}


@media (max-width:1440px) {
  
.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;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--color-primary);
}
.main-nav a.active{
    color: var(--color-text-dark);
  }
  
}


  /*
@media (max-width: 768px) {
    .main-nav {
        display: none; 
    }
    .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: 33.43vw;
    font-size: 1.575vw;
    font-weight: 500;
}
.all-works-text sPAN{
    color: #6c7179;
}
.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: 94.29vw;
  height: 11.79vw;
  background-color: #000000;
  border-radius: 36px;
  margin: 7.14vw auto;
  justify-content: center;
  align-items: center;
}
.designs-header {
  font-size: 5vw;
  font-weight: 400;
  color: #ffffff;
  
}

/* Responsive layout
@media (max-width: 600px) {
  .project-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
}
  */
.youtube-thumbnails{
  max-width: 1320px;
  margin: 100px auto;
}
.thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.thumbnails img {
  width: 100%;          
  aspect-ratio: 1320/743;    
  border-radius: 36px;
  object-fit: cover;
  transition: all 0.4s ease;
}
.thumbnails:hover img {
transform: scale(1.015);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.footer-section {
  background-color: var(--color-background-dark);
  color: var(--color-text-light);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.footer-bg-image {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 720px;
  z-index: 0;
  opacity: 0.5;
}
.footer-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px 28px 0 0;
}
.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);
}
@media (max-width:1440px) {
    .all-works-text{
        max-width:40.43vw;
    }
    .youtube-thumbnails{
       max-width: 94.29vw;
    }

    
}
 




