/* ================================
   ALSO AVAILABLE ON - SECTION CSS
   ================================ */

.available-on-section {
    background: #d4f4ff;
    padding: 80px 0 0px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.available-on-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Section Title */
.available-on-title {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #8b9d1f;
    margin-bottom: 60px;
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logos Container - Flowing Layout */
.available-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 55px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Logo Item */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 85px;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.6s ease-out both;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.15s; }
.logo-item:nth-child(3) { animation-delay: 0.2s; }
.logo-item:nth-child(4) { animation-delay: 0.25s; }
.logo-item:nth-child(5) { animation-delay: 0.3s; }
.logo-item:nth-child(6) { animation-delay: 0.35s; }
.logo-item:nth-child(7) { animation-delay: 0.4s; }
.logo-item:nth-child(8) { animation-delay: 0.45s; }
.logo-item:nth-child(9) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-item:hover {
    transform: translateY(-12px) scale(1.12);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.logo-item:hover img {
    transform: scale(1.18);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* Background Image Section */
.available-bottom-bg {
    background: url('../images/home/bottom-bg.png') center bottom no-repeat;
    background-size: contain;
    background-color: #d4f4ff;
    background-attachment: scroll;
    min-height: 450px;
    width: 100%;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .available-on-section {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .available-on-title {
        font-size: 44px;
        margin-bottom: 50px;
    }
    
    .available-logos {
        gap: 40px 50px;
    }
    
    .logo-item {
        width: 120px;
        height: 75px;
    }
    
    .available-bottom-bg {
        min-height: 250px;
    }
}

@media (max-width: 992px) {
    .available-on-section {
        padding: 50px 0;
        min-height: 450px;
    }
    
    .available-on-title {
        font-size: 38px;
        margin-bottom: 45px;
    }
    
    .available-logos {
        gap: 35px 45px;
    }
    
    .logo-item {
        width: 110px;
        height: 70px;
    }
    
    .available-bottom-bg {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .available-on-section {
        padding: 50px 0;
        min-height: auto;
    }
    
    .available-on-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .available-logos {
        gap: 30px 35px;
    }
    
    .logo-item {
        width: 100px;
        height: 65px;
    }
    
    .available-bottom-bg {
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .available-on-section {
        padding: 40px 0;
    }
    
    .available-on-section::before {
        width: 150px;
        height: 150px;
    }
    
    .available-on-title {
        font-size: 26px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .available-logos {
        gap: 25px 30px;
        padding: 0 15px;
    }
    
    .logo-item {
        width: 85px;
        height: 55px;
    }
    
    .logo-item:hover {
        transform: translateY(-8px) scale(1.1);
    }
    
    .available-bottom-bg {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .available-on-section {
        padding: 30px 0;
    }
    
    .available-on-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .available-logos {
        gap: 20px 25px;
        padding: 0 10px;
    }
    
    .logo-item {
        width: 75px;
        height: 50px;
    }
    
    .logo-item img {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    }
    
    .available-bottom-bg {
        min-height: 100px;
    }
}

@media (max-width: 360px) {
    .available-on-section {
        padding: 25px 0;
    }
    
    .available-on-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .available-logos {
        gap: 15px 20px;
    }
    
    .logo-item {
        width: 70px;
        height: 45px;
    }
    
    .available-bottom-bg {
        min-height: 240px;
    }
}
 /* Box Icon Container */
 .wb-box-icon {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px 20px;
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0 10px 40px rgba(76, 175, 80, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(76, 175, 80, 0.1);
	position: relative;
	overflow: hidden;
}
.wb-box-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}
.wb-box-icon:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(76, 175, 80, 0.15);
}
.wb-box-icon:hover::before {
	transform: scaleX(1);
}
/* Icon Styling */
.wb-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 25px;
	/* background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	position: relative;
}
.wb-icon::after {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	border: 2px dashed rgba(76, 175, 80, 0.3);
	border-radius: 50%;
	animation: rotate 20s linear infinite;
}
@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}
.wb-box-icon:hover .wb-icon {
	transform: scale(1.1);
}
.wb-icon .img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	transition: all 0.4s ease;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
/* Content Styling */
.wb-content {
	position: relative;
	z-index: 1;
}
.wb-content h3 {
	font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2e7d32;
    transition: color 0.3s ease;
}
.wb-content h3 a {
	text-decoration: none;
	color: inherit;
	position: relative;
}
.wb-content h3 a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #4CAF50, #8BC34A);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}
.wb-content h3 a:hover::after {
	width: 100%;
}
.wb-content p {
	font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    letter-spacing: 1px;
}
/* Responsive Adjustments */
@media (max-width: 991px) {
	.wb-box-icon {
		padding: 30px 20px;
	}        
	.wb-icon {
		width: 80px;
		height: 80px;
	}
	.wb-icon::after {
		width: 100px;
		height: 100px;
	}
	.wb-icon .img {
		width: 40px;
		height: 40px;
	}        
	.wb-content h3 {
		font-size: 18px;
	}
}
