body {
    background: white;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.logo-area {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Hamburger Menu  */
.burger-menu {
    background: rgb(141,119,210) !important;
    border-radius: 8px;
    padding: 8px !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgb(141,119,210);
    display: none;
}   

.burger-menu svg path {
    stroke: #fff !important;
}

.burger-menu svg  {
    width: 31px;
    height: 30px;
}

.burger-menu:hover {
    background: rgb(141,119,210) !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}

.menu-bar {
    border-radius: 25px;
    border: 1px solid #e4e4e4;
    height: fit-content;
    display: inline-flex;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    align-items: center;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
}

.menu-bar li {
    list-style: none;
    color: #fff;
    font-family: sans-serif;
    padding: 12px 44px;
    margin: 0 8px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 25px;
}

.menu-bar a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.menu-bar li::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: .2s;
    border-radius: 25px;
}

.menu-bar li:hover::before {
    background: linear-gradient(to bottom, #e8edec, #d2d1d3);
    box-shadow: 0 3px 20px 0 black;
    transform: scale(1.1);
}

.menu-bar li:hover,
.menu-bar li:hover a {
    color: #000;
}

/* decorative */
.decorative-image {
    position: fixed;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.decorative-image.top-left {
    top: 0;
    left: 0;
}

.decorative-image.bottom-right {
    bottom: 0;
    right: 0;
}

.decorative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

svg {
    height: 23rem;
    margin-right: 4rem;
    flex-shrink: 0;
}

#envelope {
    animation: float 2s ease-in-out infinite;
}

#star1, #star2, #star3, #star4, #star5, #star6 {
    animation: blink 1s ease-in-out infinite;
}
#star2 { animation-delay: 100ms; }
#star3 { animation-delay: 500ms; }
#star4 { animation-delay: 700ms; }
#star5 { animation-delay: 300ms; }
#star6 { animation-delay: 200ms; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: .5; }
    100% { opacity: 1; }
}

.form-section {
    min-width: 25rem;
    flex: 1;
}

.title {
    font-family: 'Pacifico', cursive;
    color: #212529;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.visual .title {
    margin-bottom: 1rem;
}

#typed-hero {
    display: inline-block;
}

.typed-cursor {
    font-family: 'Pacifico', cursive;
    color: #212529;
}

.form-control {
    background-color: #f2f6f8;
    border-radius: 2rem;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
    font-family: 'Quicksand', sans-serif;
    color: #212529;
    font-size: 1.1rem;
}

.form-control.thick {
    height: 3.3rem;
    padding: .5rem 3.5rem;
}

.form-control:focus {
    background-color: #f2f6f8;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
}

.message .form-control {
    padding: .5rem 1.8rem;
}

::placeholder {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #838788;
}

.icon {
    color: #57565c;
    height: 1.3rem;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
}

.btn.btn-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    height: 2.5rem;
    line-height: 2.5rem;
    padding: 0 3rem;
    border: 0;
    border-radius: 3rem;
    background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
    background-size: 300% 100%;
    transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
    box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
    background-size: 100% 100%;
    transform: translateY(-0.15em);
}

.social-links {
    margin-top: 2rem;
    text-align: center;
}

.social-links h5 {
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: linear-gradient(45deg, #3b5998, #4c70ba);
    color: white;
}

.social-icon.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #e4405f, #fd1d1d, #fcb045);
    color: white;
}

.social-icon.linkedin {
    background: linear-gradient(45deg, #0077b5, #005885);
    color: white;
}

.social-icon.github {
    background: linear-gradient(45deg, #333, #000);
    color: white;
}

.social-icon.youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
}

@media (max-width: 768px) {
    .contact-wrapper {
        margin-top: 100%;
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    svg {
        height: 15rem;
        margin-right: 0;
    }

   .social-icon {
       width: 45px;
       height: 40px;
    }
    
    .nav-wrap {
        backdrop-filter:none;
        background: transparent;
    }

    .form-section {
        min-width: auto;
        width: 100%;
    }
}

/* Smartphones */
@media screen and (max-width: 767px) {
    .logo-area{
       left: 50%;
       right: auto;
       transform: translateX(-50%);
    }

    .burger-menu {
      display: block;
      position: fixed;
      top: 18px;
      left: 25px;
      z-index: 1300;
    }
  
    nav {
      left: 0;
      right: auto;
      transform: translateX(-100%);
      position: fixed; 
      top: 0;
      width: 80%; 
      height: 100vh; 
      background-color: rgba(17, 24, 39, 0.9); 
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); 
      z-index: 1000; 
      transition: transform 0.3s ease-in-out;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    nav.active {
      transform: translateX(0); 
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
  
    nav ul {
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }
  
    nav ul li a {
      font-size: 1.2rem;
      padding: 10px;
      color: #fff !important;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }
     
    nav ul li a:hover {
        color: #FFC448 !important;
        transform: translateX(5px);
    }
    
    nav ul li {
        list-style: none;
        margin: 10px 0;
    }

    .menu-bar {
      background-color: transparent !important;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      border: 0;
    }
  
    .menu-bar li {
      font-size: 3.2rem; 
      padding: 16px 24px; 
    }
  
    .menu-bar li::before,
    .menu-bar li:hover::before {
      background: none;
      box-shadow: none;
      transform: none;
    }
  
    .menu-bar li:hover,
    .menu-bar li:hover a {
      color: #fff ; 
    }

}
@media only screen and (min-width: 768px) and (max-width: 1088px) {

    .menu-bar li {
    padding: 12px 12px;
}
  .logo img {
    width: 110px;
    height: auto;
  }



}

