* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.footer {
    background: rgba(4, 1, 114, 1);
    color: #ffffff;
    padding-top: 60px;
    border-radius: 40px 40px 0 0;
}

.footer-container {
    max-width: 100%;
    margin: auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 18px;
}

.logo-box {
    margin-top: -20px;
    margin-bottom: 5px;
}

.logo-box svg {
    width: 100px;
    height: 100px;
}

.footer-text {
    width: 350px;
    height: auto;
    font-size: 16px;
    line-height: 1.6;
}

.follow-title {
    margin-top: 25px;
    font-size: 18px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons img {
    width: 45px;
    height: 45px;
}

.social-icons a:hover {
    background: #ffffff;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 20px;
}

.footer ul li a {
    text-decoration: none;
    color: #dcdcff;
    font-size: 16px;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #ffffff;
}

.footer .icon {
    width: 28px;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-box {
    display: flex;
    border: 1px solid #ffffff;
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #ffffff;
}

.newsletter-box input::placeholder {
    color: #cccccc;
    font-size: 16px;
}

.newsletter-box button {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0 18px;
    cursor: pointer;
    font-size: 18px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 50px;
        gap: 30px;
    }

    .footer-text {
        width: 100%;
    }
}

@media (max-width: 992px) {
  .logo-box svg {
    width: 70px;
    height: 70px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-text {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: center;
  }

  .footer ul {
    padding: 0;
  }

  .footer ul li {
    text-align: center;
  }

  .newsletter-box {
    margin: 0 auto;
  }

  .newsletter-box input {
    text-align: center;
  }
}
@media (max-width: 768px) {
    .logo-box svg {
        width: 70px;
        height: 70px;
    }
    .footer {
        padding-top: 40px;
        border-radius: 30px 30px 0 0;
    }

    .footer-col {
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 30px;
        gap: 35px;
    }

    .footer-text {
        width: 100%;
        height: auto;
    }

    .follow-title {
        margin-top: 20px;
    }

    .social-icons img {
        width: 45px;
        height: 45px;
    }

    .footer ul li {
        margin-bottom: 14px;
    }

    .newsletter-box {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .logo-box svg {
        width: 55px;
        height: 55px;
    }
    .footer {
        padding-top: 30px;
        border-radius: 24px 24px 0 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-col h3 {
        font-size: 17px;
    }

    .footer-text,
    .newsletter p {
        font-size: 15px;
    }

    .follow-title {
        font-size: 16px;
    }

    .newsletter-box input::placeholder {
        font-size: 14px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}
@media (max-width: 360px) {
    .logo-box svg {
        width: 45px;
        height: 45px;
    }
    .footer-container {
        padding: 0 16px;
    }

    .newsletter-box {
        flex-direction: column;
        border-radius: 16px;
    }

    .newsletter-box button {
        padding: 10px;
        border-top: 1px solid rgba(255,255,255,0.3);
    }
}
