* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background:linear-gradient(135deg,#1f2228,#2b2f36);
  color:#fff;

}
/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #5c3aff;
}

.logo i {
  margin-right: 0.5rem;
  font-size: 1.6rem;
}

nav a {
  margin: 0 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #5c3aff;
}

.btn {
  background: #111;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #5c3aff;
}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.contact-section{
  padding:80px 0;
}

.contact-wrapper{
  display:flex;
  gap:50px;
  align-items:center;
}

.contact-left{
  flex:1;
}

.contact-left h2{
  font-size:40px;
  margin-bottom:20px;
}

.contact-left p{
  color:#bbb;
  line-height:1.7;
  margin-bottom:30px;
}

.info-box{
  margin-bottom:20px;
}

.info-box h4{
  color:#ff7a00;
  margin-bottom:5px;
}

.contact-right{
  flex:1;
  background:#fff;
  border-radius:25px;
  padding:50px;
  color:#000;
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

.contact-right h3{
  margin-bottom:25px;
  font-size:24px;
}

form{
  display:flex;
  flex-direction:column;
}

input, select, textarea{
  padding:14px 18px;
  margin-bottom:18px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:14px;
  outline:none;
}

textarea{
  resize:none;
  min-height:120px;
}

button{
  background:#ff7a00;
  color:#fff;
  padding:14px;
  border:none;
  border-radius:25px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

button:hover{
  background:#e66d00;
  transform:translateY(-3px);
}

/* Popup */

.popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  opacity:0;
  transition:0.4s;
}

.popup.active{
  visibility:visible;
  opacity:1;
}

.popup-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  text-align:center;
  width:90%;
  max-width:400px;
  animation:pop 0.4s ease;
}

.popup-box h3{
  color:#28a745;
  margin-bottom:15px;
}

.popup-box p{
  color:#555;
  margin-bottom:20px;
}

.popup-box button{
  background:#ff7a00;
  color:#fff;
  padding:10px 20px;
  border:none;
  border-radius:20px;
  cursor:pointer;
}

@keyframes pop{
  from{transform:scale(0.7);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

@media(max-width:992px){
  .contact-wrapper{
    flex-direction:column;
  }

  .contact-right{
    padding:35px;
  }
}
footer {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
  margin-top: 100px;
}

/* Logo Section */
.footer-logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.footer-logo span {
  background: #fff;
  height: 14px;
  width: 18px;
  border-radius: 2px;
  display: inline-block;
}

/* Top Nav */
.footer-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  opacity: 0.85;
}

.footer-top a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.footer-top a:hover {
  color: #aaa;
}

/* Middle Nav */
.footer-mid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 1rem;
  margin-bottom: 25px;
}

.footer-mid a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-mid a:hover {
  color: #aaa;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: #444;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

/* Bottom Links */
.footer-bottom {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 10px;
}

.footer-bottom a {
  color: #aaa;
  margin: 0 10px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}