body {
    height: 100vh;
    margin: 0;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    /* font-weight: 400 !important; */
    line-height: 1.5 !important;
    background-color: #0e1b25;
    color: white;
}

.header{
    background-color: #0e1b25;
}

li{
    font-size: 12px;
}

p{
    margin-bottom: 10px;
}

.page-container{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gradient-text {
    background: linear-gradient(90deg, #0733c5, #cbee0c, #2dc16c, #0733c5); /* Looping colors */
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: moveGradient 5s ease infinite;
}

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

.content{
    height: 400px;
    display: flex;
    justify-content: center;
    align-items:center;
    text-align: center;
    flex-direction: column;
}

.content h1{
    font-size: 43px;
    /* font-family: sans-serif; */
}

.footer{
    margin-top: auto;
    font-size: 15px;
    padding:20px;
}


.form-container{
    margin-left: 13%;
    margin-right: 13%;
    padding: 20px;
}

.row .col-3 {
    margin-bottom: 20px;
}

.card-img-top{
    width: 60%;
    height: auto;
}

.custom-card {
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-card:hover .card-title {
    background: linear-gradient(90deg, #0733c5, #cbee0c, #2dc16c, #0733c5);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: moveGradient 7s ease infinite;
}

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

.card-text {
    font-size: 12px;
}


.about-img{
    width: 50%;
}


.pricing-table .card {
    background-color: #e8ffe8;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.price {
    font-size: 36px;
    color: #4caf50;
}
.features li::before {
    content: "✔";
    color: #4caf50;
    margin-right: 8px;
}
.btn-custom {
    background-color: #4caf50;
    color: #fff;
    border-radius: 5px;
}
.btn-custom:hover {
    background-color: #45a049;
}
.nav-item .nav-link.active {
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.nav-item .nav-link {
    color: #4caf50;
}
.custom-nav-link {
    color: white !important;
    transition: color 0.3s;
}
.custom-nav-link:hover, .custom-nav-link.active {
    color: green !important;
}

.nav-pills .nav-link {
    background-color: #1b2b34;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: #e8ffe8;
    color: #000;
    border-radius: 25px;
    font-weight: bold;
}

.nav-pills .nav-link:hover {
    background-color: #4caf50;
    color: #fff;
}

#pills-tab {
    background-color: #0e1b25;
    padding: 5px;
    border-radius: 30px;
}

.contact-email{
    color: #e8ffe8;
}

.contact-email:hover{
    color: #4caf50;
}

.accordion-button:not(.collapsed) {
    background-color: #0e1b25 ;
    color: white ;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  }

  .accordion-item {
     background-color:  white;
    color: black;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  }

  .accordion-button {
    color: white;
    background-color: #0e1b25;
  }

  .navbar-text{
    color:white;
  }


  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 11.354a.5.5 0 0 1 .708 0L8 5.707l5.646 5.647a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1-.708 0l-6 6a.5.5 0 0 1 0 .708z'/%3e%3c/svg%3e");
}

.green{
    color: #4caf50;
}

.language-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ddd;
    cursor: pointer;
}

.lang-icon:hover {
    transform: scale(1.2);
}

.credit-links{
    font-size: 10px;
    text-decoration: none;
}

.credit-links:hover{
    color: #4caf50;
}



@media only screen and (max-width: 1025px) {
    .content h1 {
        font-size: 30px;
      }

      .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28155, 155, 155, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Optional: Change icon color on hover */
    .navbar-toggler:hover .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .about-img{
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    body{
      font-size:12px
    }
    .content h1 {
        font-size: 20px;
    }
    .form-container {
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
      }
}