
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.head {
  background-color: #f7f9fa;;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: cyan;
}

/* Hamburger Icon */
.hamburger {
  width: 30px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  background: black;
  height: 3px;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger Animation - Turn into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    padding-left: 20px;
    width: 100%;
    display: none;
    padding: 20px 10px;
    animation: slideDown 0.4s ease forwards;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* plans */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #222;
}

.header {
  text-align: center;
   padding: 40px 20px; 
  /* background: linear-gradient(to right, #0077ff, #00c6ff); */
  color: #222;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 20px;
}

.plan-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  animation: slideUp 1s ease forwards;
  opacity: 0;
  cursor: pointer;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

.plan-card h2 {
  margin-top: 0;
  color: #333;
}

.plan-card .rate {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
}

.plan-card p {
    padding-top: 40px;
}

.plan-card .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.plan-card .btn:hover {
  background: #0056b3;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}

/* footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px 30px;

     @media screen and (max-width: 780px){
       padding: 50px 15px;
}
    }

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;

}

.footer-logo img {
    width: 150px;
}

.footer-links {
    display: flex;
    gap: 60px;

    @media screen and (max-width: 780px){
    gap: 20px;
}
}

.footer-column {
    min-width: 150px;
} 

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;

}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}


.footer-column ul li a {
color: #cccccc;
text-decoration: none;
font-size: 14px;
margin-left: 30px;

@media screen and (max-width: 450px) {
    padding-right: 30px;
}
}

.footer-column ul li a:hover {
    color: #00c2cb;
}

.footer-buttom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    text-align: center;
}

.footer-buttom p {
    font-size: 14px;
    color: #aaaaaa;
}

.footer-socials a img {
    width: 24px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
}

