* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background: rgb(208, 242, 244); */
    background: #3b3a3a;
    color: #ffff;
}

.txt-img {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.txt-img .img img {
    height: 15vh;
    margin-top: 40px;
    /* width: 30vh; */
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.8s ease-in-out;

}

img:hover {
    transform: scale(1.2) rotate(360deg);

}

.txt h1 {
    /* font-size: 45px; */
    background: linear-gradient(90deg, #0585E1, #E8467F, #6B3F69,#880cd0,#10B981);
    background-size: 300% 300%;
    color: transparent;
    -webkit-background-clip: text;
    animation: colorMove 3s infinite alternate;
}

@keyframes colorMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.main-container {
    display: grid;
    grid-template-areas:
        "box1 box1 box1"
        "box2 box3 ."
        "box4 box5 box6";
    justify-content: center;
    justify-items: center;
    gap: 20px;

}

.box {
    width: 350px;
    min-height: 600px;
    border: 2px solid red;
    border-radius: 10px;
    margin: 10px;
}

/* Assign each box to its area */
.box:nth-child(1) {
    grid-area: box1;
}

.box:nth-child(2) {
    grid-area: box2;
}

.box:nth-child(3) {
    grid-area: box3;
}

.box:nth-child(4) {
    grid-area: box4;
}

.box:nth-child(5) {
    grid-area: box5;
}

.box:nth-child(6) {
    grid-area: box6;
}

.price-info i {
    font-size: 28px;
    margin: 0 0 0 5px;
    cursor: pointer;
    transition: transform 0.5s ease-in;
}

.price-info i:hover {
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 0 8px currentColor)  
}

/* Individual icon colors */
/* ------------------------ */

.box:nth-child(1) i {
    /* Starter */
    color: #10B981;
}

.box:nth-child(2) i {
    /* Advanced */
    color: #3B82F6;
    margin: 9px;
}


.box:nth-child(3) i {
    /* Business */
    color: #8B5CF6;
}


.box:nth-child(4) i {
    /* Pro */
    color: #F59E0B;
}


.box:nth-child(5) i {
    /* Developer */
    color: #FACC15;
}


.box:nth-child(6) i {
    /* Enterprise */
    color: #EF4444;
}
/* price-info */
.price-info span{
    font-size: 40px;

}
.price-info {
    /* text-align: center; */
    position: relative;
}
.price-info h4{
    position: relative;
    top: -10px;
    font-size: 22px;
    vertical-align: super;
    margin: 0  0 0 5px;
    /* margin-right: 4px; */
}
.price-info span{
    font-size: 40px;
    font-weight: bold;
}
.price-info span , h4{
    display: inline-block;
}
.price-info h2{
    margin: 0 2px 0 10px;
}
/* ======= btns ========= */
.btn{  
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px ;   
    /* border:2px solid red;   */
    /* background-color: cadetblue; */
    border-radius: 15px; 
      transition: all 0.3s ease; 
      /* cursor: pointer; */
}
.btn button{
     border: none;
    outline:none;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    background: transparent;   
     transition: all 0.3s ease;
     cursor: pointer;
}

/* Individual button colors */
.box:nth-child(1) .btn {
     background: #10B981; 
}
.box:nth-child(2) .btn {
     background: #3B82F6; 
}
.box:nth-child(3) .btn {
     background: #8B5CF6; 
}
.box:nth-child(4) .btn {
     background: #F59E0B; 
}
.box:nth-child(5) .btn {
     background: #FACC15; color: #333; 
}
.box:nth-child(6) .btn {
     background: #EF4444; 
}

/* Hover effects */
.btn:hover { 
  transform: scale(1.05);
  box-shadow: 0 0 10px currentColor;
  opacity: 0.9;
}

/* Success Popup  */
.popup{
    position: fixed;
    top:20px;
    right: -300px;
    background: #0abf30;
  color: white;
  padding:14px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap:10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
transition: right 0.6s  ease;
font-size: 18px;
z-index: 1000;
}
.popup.show{
    right : 20px;
}
.popup i{
    font-size: 22px;
}
.popup-content{
    display: flex;
    align-items: center;
    gap: 10px;
}
.popup-content p {
    margin: 0;             /* remove extra margin */
    font-weight: bold;
}

/* ========content-info===== */
.content-info i{
    font-size: 25px;
    margin:  4px 10px ;
}

.content-info p:hover{
    color:cyan;
    cursor: pointer;
}

/* =====.social-links ==== */

.social-links {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

.social-links p {
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: bold;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  background-color: #f3f3f3;
  transition: all 0.3s ease;
  font-size: 1em;
}

.link img {
  width: 20px;
  height: 20px;
}

.link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.portfolio {
  background-color: #cce7ff;
}

.facebook {
  background-color: #e8f4ff;
  color: #1877f2;
}

.github {
  background-color: #f5f5f5;
  color: #333;
}

.instagram {
  background-color: #fde2e4;
  color: #c32aa3;
}


 .links  a {
    color: #0066cc;
  }

.copyright {
  text-align: center;
  padding: 20px 15px;
  margin-top: 40px;
  font-size: 1em;
  background: linear-gradient(to right, #dbeeff, #f0f8ff);
  border-top: 1px solid #ccc;
  color: #2c3e50;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}

.copyright p {
  margin: 0;
  line-height: 1.6;
}

.copyright a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.copyright a:hover {
  color: #003366;
  text-shadow: 0 0 3px rgba(0, 102, 204, 0.4);
}

