@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0e27;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --main_color: #2563eb;
  --main_color_light: #3b82f6;
  --main_color_dark: #1e40af;
  --accent_color: #60a5fa;
  --p_color: #94a3b8;
  --bg_color: #1e293b;
  --bg_dark: #0f172a;
  --white_color: #fff;
  --black_color: #020617;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(145, 175, 235, 0.2);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(4, 9, 20, 0.1);
}

nav.scrolled {
  padding: 0.7rem 5%;
  box-shadow: 0 4px 30px rgba(37, 99, 235, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: var(--accent_color);
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
  z-index: 1001;
}

.close_menu,
.open_menu {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent_color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent_color);
}

.icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icons a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.icons a:hover {
  color: var(--accent_color);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5% 2rem;
  /* background: linear-gradient(135deg, #000108 0%, #1e293b 50%, #040a19 100%); */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 114, 219, 0.3), transparent);
  border-radius: 50%;
  top: -300px;
  right: -200px;
  animation: float 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1), transparent);
  border-radius: 50%;
  bottom: -300px;
  left: -300px;
  animation: float 2s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.div_text {
  text-align: left;
}

.div_text h3 {
  font-size: 1.5rem;
  color: var(--p_color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.div_text h1 {
  font-size: 4.5rem;
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
  position: relative;
}

.div_text h1::after {
  content: '';
  position: absolute;
  top: 160px;
  left: 0;
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent_color), transparent);
  border-radius: 2px;
}

.div_text h2 {
  font-size: 2rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.div_text p {
  font-size: 1.1rem;
  color: var(--p_color);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 600px;
}

.btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--main_color) 0%, var(--main_color_dark) 100%);
  color: var(--white_color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(135deg, var(--main_color_light) 0%, var(--main_color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.btn_d {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--accent_color);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--accent_color);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn_d:hover {
  background: var(--accent_color);
  color: var(--black_color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
}

.div_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  position: relative;
  width: 400px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.1));
  border-radius: 20px;
  transform: rotate(-5deg);
  z-index: 1;
}

.person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  border: 3px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.4);
  animation: float 6s ease-in-out infinite;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  mix-blend-mode: normal;
}


.links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 15px;

}

.links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.links a:hover {
  color: var(--accent_color);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}




/* Services Section */
.section {
  padding: 5rem 5%;
  background: var(--bg_dark);
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(30, 41, 59, 0.5);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent_color);
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent_color);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
}

.service-card p {
  color: var(--p_color);
  line-height: 1.8;
}

/* Projects Section */
.projects-section {
  background: var(--bg_color);
}

.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent_color);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.project-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--accent_color);
  position: relative;
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(96, 165, 250, 0.1), transparent);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
}

.project-content p {
  color: var(--p_color);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.4rem 1rem;
  background: rgba(37, 99, 235, 0.2);
  color: var(--accent_color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.project-link {
  color: var(--accent_color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.project-link:hover {
  color: var(--main_color_light);
  transform: translateX(5px);
}

/* Contact Section */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  background: rgba(30, 41, 59, 0.5);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent_color);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
  background: rgba(30, 41, 59, 0.8);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.social-links {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
  padding-left: 30px;
}

.social-links a {
  color: #94a3b8;
  font-size: 1.5rem;
  transition: all 0.3s ease-in;
  display: inline-block;
  text-decoration: none;
}

.social-links i {
  margin-right: 20px;
  padding-right: 10px;
}

.social-links a:hover {
  color: var(--accent_color);
  transform: translateX(40px) scale(1.1);
  filter: drop-shadow(0 5px 15px rgba(96, 165, 250, 0.5));
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 5%;
  background: rgba(2, 6, 23, 0.95);
  color: #64748b;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
}


#up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

#up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#up:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

#up:active {
    transform: translateY(-2px) scale(1.05);
}

/* Responsive Media Queries */
@media (max-width: 850px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    height: 100vh;
    width: 300px;
    padding: 100px 50px;
    background-color: #0a0e27;
    transition: left 0.5s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .close_menu {
    display: block;
    font-size: 28px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: var(--accent_color);
    transition: all 0.3s ease;
  }

  .close_menu:hover {
    color: var(--main_color_light);
    transform: rotate(90deg);
  }

  .open_menu {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: var(--accent_color);
    z-index: 1001;
  }

  .icons {
    gap: 0.8rem;
  }

  .icons .social-icon {
    display: none;
  }

  .logo {
    z-index: 1001;
  }

  .nav-container {
    position: relative;
  }
  
  .div_text h1::after{
    position: absolute;
    top: 68px;
    margin-left: -100px;
  }

  /* Hero Section Mobile */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .div_text {
    text-align: center;
  }

  .div_text h1 {
    font-size: 3rem;
  }

  .div_text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .div_text h2 {
    font-size: 1.5rem;
  }

  .div_text p {
    margin-left: auto;
    margin-right: auto;
  }

  .btns {
    justify-content: center;
  }

  .nav-links {
    gap: 2rem;
    font-size: 1.2rem;
  }

  .person {
    max-width: 350px;
    height: 450px;
  }

  .image-frame {
    width: 350px;
    height: 450px;
  }

  /* Contact Section Mobile */
  .contact-content {
    flex-direction: column;
  }

  .contact-form {
    flex: 0 0 100%;
    width: 100%;
  }

  .social-links {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 0;
    padding-top: 1rem;
  }
}

@media (max-width: 1200px) {
.links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 15px;
  margin-left: 40%;

}

.links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.7rem;
  transition: all 0.3s ease;
}

.links a:hover {
  color: var(--accent_color);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}


  .contact-content {
    flex-direction: column;
  }

  .contact-form {
    flex: 0 0 100%;
    width: 100%;
  }

  .social-links {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 0;
    padding-top: 1rem;
  }
    .div_text h1::after{
    position: absolute;
    top: 56px;
  }
  .links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 15px;
  margin-left: 0;

}

.links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.links a:hover {
  color: var(--accent_color);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

#contact{
  padding: 1rem ,1rem;
}


}

@media (max-width: 768px) {
.links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 15px;
  margin-left: 38%;

}

.links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.links a:hover {
  color: var(--accent_color);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}


  .social-links {
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .social-links a {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .div_text h1 {
    font-size: 2.5rem;
  }

  .div_text h2 {
    font-size: 1.3rem;
  }

  .div_text h3 {
    font-size: 1.2rem;
  }

  .btn,
  .btn_d {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
  }

  .links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 15px;
  margin-left: 35%;

}

.links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.links a:hover {
  color: var(--accent_color);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}


  .section-title {
    font-size: 2rem;
  }

  .person {
    max-width: 280px;
    height: 350px;
  }

  .image-frame {
    width: 280px;
    height: 350px;
  }
  .div_text h1::after{
    
    position: absolute;
    top: 50px;
    left: 200px;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent_color), transparent);
    border-radius: 2px;
  }
}


/* lightMode */

.theme-toggle {
  background: transparent;
  border: 2px solid var(--accent_color);
  color: var(--accent_color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.theme-toggle:hover {
  background: var(--accent_color);
  color: var(--black_color);
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

/* Light Mode Colors */
body.light-mode {
  background: #f8fafc;
  color: #0f172a;
}

body.light-mode nav {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .logo {
  color: var(--main_color);
  text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

body.light-mode .nav-links a {
  color: #334155;
}

body.light-mode .nav-links a:hover {
  color: var(--main_color);
}

body.light-mode .icons a,
body.light-mode .open_menu {
  color: #334155;
}

body.light-mode .icons a:hover {
  color: var(--main_color);
}

body.light-mode .hero {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
}

body.light-mode .hero::before {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
}

body.light-mode .hero::after {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.05), transparent);
}

body.light-mode .div_text h1 {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .div_text h2 {
  color: #334155;
}

body.light-mode .div_text h3 {
  color: #64748b;
}

body.light-mode .div_text p {
  color: #475569;
}

body.light-mode .person {
  border: 3px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body.light-mode .section {
  background: #ffffff;
}

body.light-mode .section::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

body.light-mode .service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

body.light-mode .service-card:hover {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-mode .service-card h3 {
  color: #0f172a;
}

body.light-mode .service-card p {
  color: #475569;
}

body.light-mode .projects-section {
  background: #f8fafc;
}

body.light-mode .project-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

body.light-mode .project-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-mode .project-content h3 {
  color: #0f172a;
}

body.light-mode .project-content p {
  color: #475569;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

body.light-mode .form-group label {
  color: #0f172a;
}

body.light-mode .social-links a {
  color: #475569;
}

body.light-mode .social-links a:hover {
  color: var(--main_color);
}

body.light-mode footer {
  background: #ffffff;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

body.light-mode .nav-links {
  background-color: #ffffff;
}

body.light-mode .close_menu {
  color: var(--main_color);
}

body.light-mode .theme-toggle {
  border-color: var(--main_color);
  color: var(--main_color);
}

body.light-mode .theme-toggle:hover {
  background: var(--main_color);
  color: white;
}

@media (max-width: 850px) {
  body.light-mode .nav-links {
    background-color: #f8fafc;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  }
}
