*{
  padding: 0;
  margin: 0;
  font-family: Sans-Serif;
}
body{
  background: linear-gradient(#111, #222);
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body::after{
  content: '';
  width: 100%;
  height: 100%;
  background: red;
  position: absolute;
  z-index: -1;
  clip-path: circle(40% at right 70%);
}
.container{
  width: 80%;
  height: 80%;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
  padding: 20px 0;
  position: relative;
}
nav .logo{
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}
nav ul{
  display: flex;
  list-style: none;
}
nav ul li{
  display: inline-block;
  margin: 0 6px;
}
nav ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}
nav ul li a:hover{
  color: #e80202;
}

.menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 20px;
  width: 30px;
  height: 21px;
  z-index: 100;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-btn span {
  top: 9px;
}

.menu-btn span::before {
  content: '';
  top: -9px;
}

.menu-btn span::after {
  content: '';
  top: 9px;
}

.content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 80%;
  margin: auto;
}
.content .text{
  color: #fff;
  width: 40%;
}
.content .text h2{
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}
.content .text p{
  font-size: 18px;
  line-height: 25px;
  margin: 10px 0;
  letter-spacing: 1px;
}
.content .image{
  width: 40%;
}
.content .image img{
  width: 400px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.popup:target {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  width: 80%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.popup:target .popup-content {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #e80202;
  text-decoration: none;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #111;
}

.popup h3 {
  color: #111;
  font-size: 24px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 80px;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.social-icon span {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

.whatsapp .icon {
  background-color: #25D366;
}

.whatsapp .icon:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"/></svg>') no-repeat center center;
}

.facebook .icon {
  background-color: #1877F2;
}

.facebook .icon:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"/></svg>') no-repeat center center;
}

.tiktok .icon {
  background-color: #000000;
}

.tiktok .icon:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z"/></svg>') no-repeat center center;
}

.twitter .icon {
  background-color: #1DA1F2;
}

.twitter .icon:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>') no-repeat center center;
}

@media (min-width:950px) and (max-width:1150px){
  .content .image img{
    width: 330px;
  }
}

@media (max-width:950px){
  .content, nav{
    flex-direction: column;
    justify-content: center;
  }
  
  .content .image, .content .text{
    width: 80%;
  }
  
  body::after{
    clip-path: circle(50% at bottom);
  }
  
  .social-links {
    gap: 15px;
  }
  
  .social-icon {
    width: 70px;
  }
  
  .social-icon .icon {
    width: 50px;
    height: 50px;
  }
  
  .menu-btn {
    display: block;
    position: absolute;
    right: 0;
    top: 20px; 
    }
  
  nav .logo {
    margin: 0;
    text-align: left;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 40%;
    height: 100vh;
    opacity: 9.9;
    background: linear-gradient(135deg, #25fcfcf9 20%, #6b11cbf9 100%);
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 90;
    padding: 90px 0; 
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5); 
  }
  
  nav ul li {
    margin: 15px 0; 
    display: block;
    width: 80%; 
    text-align: center;
  }
  
  nav ul li a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    color: white;
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 20px; 
    transition: all 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2); 
    transform: translateX(-5px); 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 
  }
 
  .menu-toggle:checked ~ ul {
    right: 0; 
  }
  
  .menu-toggle:checked ~ .menu-btn span {
    background-color: transparent;
  }
  
  .menu-toggle:checked ~ .menu-btn span::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .menu-toggle:checked ~ .menu-btn span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  
  nav ul li a {
    background-color: rgba(37, 117, 252, 0.2);
  }
  
  nav ul li a:hover {
    background-color: rgba(37, 117, 252, 0.4);
  }
  
  nav ul li a.contact-btn {
    background-color: rgba(37, 117, 252, 0.2);
    color: white;
  }
  
  nav ul li a.contact-btn:hover {
    background-color: rgba(37, 117, 252, 0.4);
  }
}

@media (max-width:576px){
  .container {
    width: 90%;
    height: 85%;
  }
  
  nav {
    width: 90%;
  }
  
  nav .logo {
    font-size: 24px;
  }
  
  .content {
    width: 90%;
  }
  
  .content .text h2 {
    font-size: 28px;
  }
  
  .content .text p {
    font-size: 16px;
  }
  
  .content .image img {
    width: 100%;
    max-width: 300px;
  }
  
  nav ul {
    width: 60%;
  }
  
  nav ul li {
    width: 65%;
  }
  
  nav ul li a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (max-width:375px){
  .container {
    width: 95%;
  }
  
  nav .logo {
    font-size: 20px;
  }
  
  .content .text h2 {
    font-size: 24px;
  }
  
  .content .text p {
    font-size: 14px;
  }
  
  .popup-content {
    padding: 20px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-icon {
    width: 60px;
  }
  
  .social-icon .icon {
    width: 40px;
    height: 40px;
  }
  
  nav ul {
    width: 65%;
  }
  
  nav ul li {
    width: 60%;
  }
  
  nav ul li a {
    font-size: 13px;
    padding: 7px 10px;
  }
}

@media (max-width: 320px) {
  .container {
    width: 98%;
    height: 90%;
  }
  
  nav {
    width: 95%;
    padding: 15px 0;
  }
  
  nav .logo {
    font-size: 18px;
    letter-spacing: 1px;
  }
  
  .menu-btn {
    top: 15px;
    width: 25px;
    height: 18px;
  }
  
  .content {
    width: 95%;
  }
  
  .content .text h2 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .content .text p {
    font-size: 12px;
    line-height: 20px;
  }
  
  .content .image img {
    max-width: 250px;
  }
  
  nav ul {
    width: 60%;
    padding: 40px 0;
  }
  
  nav ul li {
    width: 65%;
    margin: 10px 0;
  }
  
  nav ul li a {
    font-size: 12px;
    padding: 6px 8px;
  }
  
  .popup-content {
    padding: 15px;
    width: 90%;
  }
  
  .popup h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .social-links {
    gap: 8px;
  }
  
  .social-icon {
    width: 50px;
  }
  
  .social-icon .icon {
    width: 35px;
    height: 35px;
  }
  
  .social-icon span {
    font-size: 12px;
  }
}

@media (max-height: 500px) {
  .container {
    height: 95%;
  }
  
  nav {
    padding: 10px 0;
  }
  
  .content {
    flex-direction: row;
    align-items: center;
  }
  
  .content .text {
    width: 50%;
  }
  
  .content .text h2 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  
  .content .text p {
    font-size: 12px;
    line-height: 18px;
    margin: 5px 0;
  }
  
  .content .image {
    width: 45%;
  }
  
  .content .image img {
    max-width: 200px;
  }
  
  nav ul {
    padding: 20px 0;
    overflow-y: auto;
    justify-content: flex-start;
  }
  
  nav ul li {
    margin: 8px 0;
  }
  
  nav ul li a {
    padding: 5px 10px;
  }
  
  .popup-content {
    max-height: 80vh;
    overflow-y: auto;
  }
}

@media (max-height: 400px) {
  .container {
    height: 98%;
  }
  
  nav {
    padding: 5px 0;
  }
  
  .menu-btn {
    top: 15px;
  }
  
  .content .text h2 {
    font-size: 18px;
  }
  
  .content .text p {
    font-size: 11px;
    line-height: 16px;
  }
  
  .content .image img {
    max-width: 150px;
  }
  
  nav ul {
    padding: 10px 0;
    max-height: 90vh;
  }
  
  nav ul li {
    margin: 5px 0;
  }
  
  nav ul li a {
    font-size: 12px;
    padding: 4px 8px;
  }
  
  .social-icon .icon {
    width: 30px;
    height: 30px;
  }
  
  .social-icon span {
    font-size: 10px;
  }
}

@media (max-width: 280px) {
  .container {
    width: 99%;
  }
  
  nav .logo {
    font-size: 16px;
  }
  
  .menu-btn {
    width: 22px;
    height: 16px;
    top: 15px;
  }
  
  .content .text h2 {
    font-size: 18px;
  }
  
  .content .text p {
    font-size: 11px;
  }
  
  nav ul {
    width: 65%;
  }
  
  nav ul li a {
    font-size: 11px;
    padding: 5px 7px;
  }
}

@media (max-height: 450px) and (min-width: 600px) {
  .container {
    height: 95%;
  }
  
  .content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .content .text {
    width: 45%;
  }
  
  .content .image {
    width: 45%;
  }
  
  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    max-height: 80vh;
    width: 60%;
    padding: 15px;
  }
  
  nav ul li {
    width: auto;
    margin: 5px;
  }
  
  .popup-content {
    display: flex;
    flex-direction: column;
    max-height: 85vh;
  }
  
  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
