 /* General Styles */
 body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 20px 0;
    text-align: center;

}

.header h1 {
    font-size: 2.5rem;
    animation: fadeInDown 1.2s ease;
}


.btn1{
    border: 1px solid blue;
    transition: all 0.4s ease-out;
}
.btn1:hover {
    border: 1px solid white;
    transform: scale(1.02);
}
.register-btn1 {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
    animation: bounceIn 1.5s;
}


.roadmap-section {
    padding: 50px 0;
    background-color: #f9f9f9;
  
}

.roadmap-section h2 {
    font-weight: 700;
    color: #6a11cb;
    margin-bottom: 40px;
    animation: fadeIn 1.2s;
}

.roadmap-card {
    border: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-radius: 20px;
   
}

.roadmap-card:hover {
    transform: translateY(-10px);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--kappel);
}
  
.nav__logo div {
    width: 60px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    font-size: 35px;
    line-height: 1rem;
    color: blue;
    background-color: white;
    border-radius: 100%;
}

.number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2575fc;
}

.number div {
    width: 30px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    font-size: 25px;
    line-height: 1rem;
    color: white;
    background-color: #2575fc;
    border-radius: 100%;
}




.roadmap-card .card-title {
    color: #2575fc;
    font-weight: bold;
}


/* ===== PRICING START ===== */
.price-tabs {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
    box-shadow: 0 5px 20px 0 rgba(39, 39, 39, 0.1);
    display: inline-block;
    padding: 7px;
    border-radius: 40px;
    border: 1px solid #2575fc;
    margin-bottom: 45px;
    
  }
 
  
  @media (min-width: 768px) {
    .price-tabs {
      margin-bottom: 60px;
    }
  }
  
  .price-tabs .nav-link {
    color: #2575fc;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 12px 35px;
    display: inline-block;
    text-transform: capitalize;
    border-radius: 40px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease-out;
  }
  .price-tabs .nav-link:hover {
    transform: scale(1.05);
  }
  
  
  @media (min-width: 768px) {
    .price-tabs .nav-link {
      padding: 12px 40px;
    }
  }
  
  .price-tabs .nav-link.active {
    background-color: #2575fc;
    color: #fff;
  }

  
  .price-item {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
            box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease-out;
  }
  .price-item:hover {
    transform: scale(1.02);
  }
  
  @media (min-width: 768px) {
    .price-item {
      margin: 0 20px;
      padding-top: 20px;
      margin-top: 10px;
    }
  }
  @media (min-width: 412px){
    .price-item {
      margin-top: 15px;
    }
  }




  .price-item .price-top {
    -webkit-box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
            box-shadow: 0 5px 30px 0 rgba(39, 39, 39, 0.15);
    padding: 50px 0 25px;
    background-color: #2575fc;
    border-radius: 10px;
    position: relative;
    z-index: 0;
    margin-bottom: 33px;
  }
  
  @media (min-width: 768px) {
    .price-item .price-top {
      margin: 0 -20px;
      border-radius: 20px;
    }
  }
  
  .price-item .price-top:after {
    height: 50px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background-color: #2575fc;
    position: absolute;
    content: '';
    left: 0;
    bottom: -17px;
    z-index: -1;
    -webkit-transform: skewY(5deg);
            transform: skewY(5deg);
    -webkit-box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
            box-shadow: 0 5px 10px 0 rgba(113, 113, 113, 0.15);
  }
  
  @media (min-width: 768px) {
    .price-item .price-top:after {
      border-radius: 0 0 20px 20px;
    }
  }
  
  .price-item .price-top * {
    color: #fff;
  }
  
  .price-item .price-top h2 {
    font-weight: 700;
  }
  
  .price-item .price-top h2 sup {
    top: 13px;
    left: -5px;
    font-size: 0.55em;
    font-weight: 500;
    vertical-align: top;
  }
  
  .price-item .price-content {
    padding: 30px;
    padding-bottom: 40px;
  }
  
  .price-item .price-content li {
    position: relative;
    margin-bottom: 15px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
  }
  
  @media (min-width: 992px) {
    .price-item .price-content li {
      padding-left: 28px;
      text-align: left;
    }
  }
  
  @media (min-width: 992px) {
    .price-item .price-content li i {
      position: absolute;
      left: 0;
      top: 3px;
    }
  }
  
  .price-item .price-content .zmdi-check {
    color: #28a745;
  }
  
  .price-item .price-content .zmdi-close {
    color: #f00;
  }
  
  .popular {
    background-color: #2575fc;
  }
  
  .popular .price-top {
    background-color: #fff;
  }
  
  .popular .price-top:after {
    background-color: #fff;
  }
  
  .popular .price-top h4 {
    color: #101f41;
  }
  
  .popular .price-top h2, .popular .price-top span, .popular .price-top sup {
    color: #2575fc;
  }
  
  .popular .price-content ul *,
  .popular .price-content ul .zmdi-close, .popular .price-content ul .zmdi-check {
    color: #fff !important;
  }
.btn{
    background-color: #2575fc;
    color: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #2575fc;
    transition: all 0.4s ease-out;
}
.btn:hover{
    background-color: white;
    transform: scale(1.05);
}
.btn-light{
    background-color: white;
    color:#101010;
}
.btn-light:hover{
    background-color: #2575fc;
    color:white;
}

/* ===== PRICING  END ===== */




.footer {
    padding: 5px;
    background-color: #101010;
    color: white;
}
footer {
	background: #101010;
	padding-bottom: 20px ;
    padding-top: 10px;
}
.container1{
   
    padding: 60px 70px 0px 60px;
}
.single-box {
    background-color: #101010;
}
.single-box p {
	color: #fff;
	line-height: 1.9;
}
.single-box h3 {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
}


.single-box .card-area i {
	color: #ffffff;
	font-size: 30px;
	margin-right: 10px;
}
.single-box ul {
	list-style: none;
	padding: 0;
}
.single-box ul li a {
	text-decoration: none;
	color: whitesmoke;
	line-height: 2.5;
	font-weight: 30;
    font-size: 15px;
    transition: all 0.3s ease-out;
 
}
.single-box ul li a:hover {
    color: #2575fc;
    transform: scale(1.25);
}

.single-box h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
    width: max-content;
    position: relative;
    cursor: pointer;
}
.single-box h2::after {
    content: " ";
    position: absolute;
    bottom: -5px;
    height: 2px;
    width: 70%;
    left: 0;
    background-color: #2575fc;
}
#basic-addon2 {
	background: #2575fc;
	color: #fff;
}
.socials a i {
	font-size: 20px;
	margin-right: 15px;
    color: #fff;
    transition: all 0.3s ease-out;
}
.socials a i:hover{
    color: #2575fc;
    transform: scale(1.15);
}








@media (max-width: 767px) {
	.single-box {
		margin-bottom: 50px;
	}
    .container1{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
	.single-box {
		margin-bottom: 50px;
	}
}




.button {
    appearance: none;
    border: none;
    outline: none;

    display: inline-block;
    background-color: transparent;
    color: #FFF;
    font-size: 20px;
    padding: 10px 15px;
    border: 1px solid;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: 0px 15px;
    transition: all 0.3s ease-out;
}

.button:hover {
    transform: scale(1.08);
    background-color: #536e8c;
}

.button.large {
    font-size: 24px;
    padding: 15px 30px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.popup.is-active {
    opacity: 1;
    pointer-events: all;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    max-height: 70vh; 
    overflow-y: auto; 
    padding: 50px 30px;
    background-color: transparent;
    border: 2px solid;
    border-radius: 16px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.popup h2 {
    color: whitesmoke;
    font-size: 28px;
    font-weight: 600;
}

.popup h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.popup p {
    color: wheat;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.popup p a {
    text-decoration: none;
}

.popup p:last-of-type {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer .credit {
        text-align: right;
    }
    
    .footer .copyright {
        text-align: left;
    }
}


@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    .register-btn1 {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
