/* Footer Base */
.rasan-footer {
    background: #ffffff;
    background-image: url(/background-img/feature-bg-10.png);
    background-size: cover;
    color: #ffffff;
    padding: 8% 40px 10px;
    font-family: Arial, sans-serif;
    position: relative;
}
/* NEWSLETTER BOX */
.rasan-footer .newsletter-box {
    position: absolute;
    width: 90%;
    top: -37px;
    justify-self: center;
    background-color: var(--bg-color);
    background-image: url(/background-img/cta-bg-3.png);
    background-repeat: no-repeat;
    color: white;
    padding: 20px 40px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
    border-radius: 15px;
    transform: translateY(-40px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 10px 10px 26px rgba(0, 0, 0, 0.2);
    border: 1px solid white;
}
.newsletter-box h2{
  width: 60%;
  text-align: left;
  font-size: 36px;
  margin: 10px;
  color: white;
}
.newsletter-box .newsletter-input {
    height: 50px;
    display: flex;
    background: #378177;
    border-radius: 10px;
    overflow: hidden;
    justify-content: space-between;
    box-shadow: 10px 10px 26px rgba(0, 0, 0, 0.2);
}

.newsletter-input input {
    flex: 1;
    border: none;
    background: #378177;
    color: white;
    padding: 15px;
    font-size: 16px;
}

.newsletter-input button {
    width: 50px;
    border-radius: 5px;
    border: none;
    background: white;
    color: var(--bg-color);
    font-size: 20px;
    cursor: pointer;
    margin: 5px;
}

/* Grid */
.rasan-footer .footer-container {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 5px;
    padding: 0% 5%;
}
.footer-container .footer-col{
    width: 250px;
}
/* Column Title */
.footer-container .footer-col h3 {
    margin-bottom: 3rem;
    font-size: 20px;
    position: relative;
}

/* Line Under Title */
.footer-container .footer-col h3::after {
    content: "";
    width: 100px;
    height: 3px;
    border-radius: 5px;
    background: #ffffff82;
    position: absolute;
    left: 0;
    bottom: -8px;
}
.footer-container .footer-col h3::before {
    content: "";
    width: 39px;
    height: 3px;
    border-radius: 5px;
    background: #ff8800;
    position: absolute;
    left: 30px;
    bottom: -8px;
}

/* About Section */
 .footer-container .about p {
    line-height: 1.6;
}

.footer-col .logo img {
    height: 40px;
    vertical-align: middle;
}

/* Contact Section */
.footer-col .contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}
.footer-col .contact-info p i{
    width: 30px;
    background: white;
    color: var(--bg-color);
    padding: 3px;
    margin-right: 10px;
    font-size: 18px;
    border-radius: 5px;
}

/* List Styling */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 10px 0;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #f89b2c;
}

.footer-col ul li i{
  font-size: 12px;
  color: #f89b2c;
  margin-right: 10px;
}
/* Newsletter Input */
.newsletter input {
    background: #253344;
    border: 1px solid #ffffff9e;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    margin: 15px 0px;
    font-size: 15px;
}

.subscribe-btn {
    background: #ffffff;
    color: var(--bg-color);
    width: 100%;
    border: none;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p{
   margin: 10px;
}
.footer-bottom span {
    color: #f89b2c;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i{
    width: 30px;
    background: white;
    color: var(--bg-color);
    padding: 3px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rasan-footer {
        padding: 1%;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-container .footer-col {
    width: 100%;
    }
    .rasan-footer .newsletter-box{
        position: static;
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
@media (max-width: 320px){
    
    .newsletter-input input{
        width: 50%;

}
}