/* footer css starts here */
.customfooter-row{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.whitefooterlogo{
  height: 50px;
}

.customfooter {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.customfooter-logo {
    margin-bottom: 20px;
}

.customfooter-logo span {
    color: #ff3333;
}

.customfooter-philosophy {
    margin-bottom: 30px;
    font-size: 14px;
    max-width: 380px;
}

.customfooter-heading {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.customfooter-address {
    font-size: 13px;
    margin-bottom: 20px;
    width: 41%;
}

.customfooter-contact {
    font-size: 13px;
    margin-bottom: 20px;
}

.customfooter-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.customfooter-social a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.customfooter-social a:hover {
    color: #ff3333;
}

.customfooter-copyright {
    font-size: 12px;
    padding-top: 20px;
    /* border-top: 1px solid #333; */
    margin-top: 30px;
}

.customfooter-mission {
    margin-bottom: 40px;
}

.customfooter-mission h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.customfooter-mission h2 span {
    color: #ff3333;
    font-weight: bold;
}

/* Circle visual styles */
.customfooter-visual-container {
    position: relative;
    width: 500px;
    height: 300px;
    margin: 0 auto;
}

.customfooter-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 5px solid #000;
}

.customfooter-semicircle {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.customfooter-semicircle:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 100px;
    background: #ff3333;
    bottom: 0;
    border-radius: 0 0 100px 100px;
}

.customfooter-image-small {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    z-index: 3;
}

.customfooter-image-small:nth-child(1) {
    top: 15%;
    left: 16%;
}

.customfooter-image-small:nth-child(2) {
    top: 13%;
    right: 15%;
}

.customfooter-image-small:nth-child(3) {
    bottom: 1%;
    right: 17%;
}

.customfooter-image-small:nth-child(4) {
  bottom: 4%;
  left: 14%;
}

.customfooter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customfooter2 {
  background-color: black;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-family: Arial, sans-serif;
}

/* Divider Container */
.iconssection-divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  /* Left and Right Divider */
  .iconssection-divider {
    flex: 1;
    height: 1px;
    background-color: white;
    opacity: 0.5;
  }
  
  /* Social Icons */
  .iconssection-social-icons {
    display: flex;
    gap: 15px;
    padding: 0 10px;
  }
  
  .iconssection-social-icons a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .iconssection-social-icons a:hover {
    color: gray;
  }
/* Copyright Text */
.customfooter-copyright {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
  }
  @media (max-width:1024px) {
    .customfooter-address {
        font-size: 13px;
        margin-bottom: 20px;
        width: 100% !important;
    }
    
  }
  
@media (max-width: 992px) {
    .customfooter-visual-container {
        width: 240px;
        height: 240px;
        margin-top: 30px;
    }
    
    .customfooter-circle {
        width: 140px;
        height: 140px;
    }
    
    .customfooter-semicircle {
        width: 160px;
        height: 160px;
    }
    
    .customfooter-semicircle:before {
        width: 160px;
        height: 80px;
        border-radius: 0 0 80px 80px;
    }
    
    .customfooter-image-small {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .customfooter-address, 
    .customfooter-contact {
        margin-top: 30px;
    }
    
    .customfooter-visual-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}
@media (max-width:425px) {
    .customfooter-row{
        display: unset !important;
    }
    .customfooter-container{
        padding: 10px !important;
    }
    .customfooter-col-lg-4.d-flex {
        display: unset !important;
    }
    .svg-inline--fa{
        height: 10px !important;
      }
}