body {
    background: url('../img/BG.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, Helvetica, sans-seriff;
    color: #3a2d1d;
}
.banner {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
    height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../img/inner-banner-bg-1-1.jpg) !important;
}
.content{
    width: 70% !important;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 98%;
    transform: translate(-50%, -50%);
    background: #541c0f; 
    padding: 15px 40px;
    color: white;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    /* white-space: nowrap; */
}
.content {
    padding: 50px;
}
.sec{
  margin: 0;
  color: #000000;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1em;
  border-top: 2px solid #4c0d04;
  padding-top: 7px;
  display: inline-block;
  font-family: "Raleway";
}
.cos{
color: #302e2f;
font-size: 32px;
line-height: 40px;
letter-spacing: 1px;
}
.text-ed{
  font-size: 1em;
  line-height: 1.8em;
}
.btn-custom {
    background-color: #5b1b1b;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20PX;
}
.btn-custom:hover {
    background-color: #3a1212;
}
.image-container {
    position: relative;
    text-align: center;
}
.image-container img {
    max-width: 80%;
    border-radius: 5px;
    MARGIN-RIGHT: 65PX;
}
.overlay-image {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 50%;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.section-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.icon-main:hover .icon{
    top: -15px;
    /* background-color: #4c0d04; */
    left: -15px;
    padding: 10px;
    border-radius: 10px;
    transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;

    
}
.icon-main:hover .icon .img-icon {
    color: #fff;
    transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;

}
.icon-main:hover .icon {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);    

}
.icon-box {
    width: 300px;
    height: 90px;
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.icon{
    top: 0px;
    background-color: #fff;
    left: 0px;
    padding: 10px;
    border-radius: 10px;
    
}

.icon .img-icon {
    height: 70px;
    width: 70px;   
}
.icon-box a {
    display: block;
    margin-top: 10px;
    margin-left: 50px ;
    font-weight: bolder;
    font-size: larger;
    text-decoration: none;
    color: #3a2d1d;
}
.icon-box a:hover {
    color: #5b1b1b;
}
.icon-box img {
    width: 80px;
    height: 80px;
}

.icon-box img:hover {
    transform: scale(1.1); /* Slightly enlarges the image */
    opacity: 0.8; /* Slight fade effect */
}
/* Preloader container */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff; /* or use background-image here */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Simple animated loader (circle) */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animation for loader */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


