/* Custom styles for Moms Leaf homepage redesign */

.search-field-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.search-field-section .inner-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.10);
    padding: 32px 40px;
    border: 1px solid #eef0f2;
}
.search-field-section .tab-btns {
    border: none;
    gap: 18px;
}
.search-field-section .tab-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #888;
    border-radius: 10px;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.2s;
}
.search-field-section .tab-btn.active-btn {
    border: 2px solid #fbb84d;
    color: #fbb84d;
    box-shadow: 0 2px 8px rgba(251,184,77,0.08);
}
.search-field-section .form-group {
    margin-bottom: 0;
}
.search-field-section label {
    font-size: 13px;
    color: #6b7280; /* slate-500 */
    margin-bottom: 8px;
    font-weight: 600;
}
.search-field-section .field-input {
    position: relative;
}
.search-field-section .field-input i {
    color: #fbb84d;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.search-field-section input[type="search"] {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px 12px 46px;
    font-size: 15px;
    width: 100%;
}
.search-field-section input[type="search"]:focus {
    outline: none;
    border-color: #fbb84d;
    box-shadow: 0 0 0 3px rgba(251,184,77,0.12);
}
.search-field-section .select-box {
    position: relative;
}
.search-field-section .select-box i {
    color: #fbb84d;
    position: absolute;
    left: 16px;
    top: 17px;
    z-index: 9;
    /* transform: translateY(-50%); */
}
.search-field-section select.wide {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding-left: 44px;
    font-size: 15px;
    width: 100%;
    height: 48px;
}
.search-field-section select.wide:focus {
    outline: none;
    border-color: #fbb84d;
    box-shadow: 0 0 0 3px rgba(251,184,77,0.12);
}
.search-field-section .select-box .nice-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding-left: 44px;
    height: 48px;
    line-height: 46px;
    width: 100%;
}
.search-field-section .select-box .nice-select:focus,
.search-field-section .select-box .nice-select.open,
.search-field-section .select-box .nice-select:hover {
    border-color: #fbb84d;
    box-shadow: 0 0 0 3px rgba(251,184,77,0.12);
}
.search-field-section button[type="submit"] {
    background: #fbb84d;
    border: none;
    color: #fff;
    border-radius: 12px;
    padding: 12px 0;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(255,90,95,0.10);
}
.search-field-section button[type="submit"]:hover {
    background: #f2ac3a;
    box-shadow: 0 4px 16px rgba(251,184,77,0.18);
}

/* Helpers for search mode toggle */
.search-field-section .is-hidden {
    display: none !important;
}

/* Optional: adjust spacing for the new mode select */
.search-field-section #search-mode.wide {
    height: 48px;
}

/* Hide any Nice Select wrappers accidentally created for template selects */
.search-field-section .template-select + .nice-select {
    display: none !important;
}

/* Layout tweaks and responsiveness */
.search-field-section .row.align-items-end {
    row-gap: 16px;
}

@media (max-width: 991.98px) {
    .search-field-section .inner-container {
        padding: 24px;
        border-radius: 14px;
    }
    .search-field-section button[type="submit"] {
        margin-top: 8px;
    }
}

@media (max-width: 575.98px) {
    .search-field-section .inner-container {
        padding: 18px;
    }
}

/* ========================================
   Banner Section Styles
   ======================================== */
/* Banner Modern - Purple to Blue Gradient with Slider */
.banner-style-modern {
    position: relative;
    /*padding: 80px 0 120px;*/
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    animation: fadeInDown 1s ease-out;
}

.banner-style-modern .gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
    z-index: 9;
    animation: pulse 8s ease-in-out infinite;
}

.banner-style-modern .auto-container {
    position: relative;
    z-index: 10;
}

.banner-style-modern .banner-slider {
    position: relative;
    z-index: 1;

}

.banner-style-modern .banner-slide {
    outline: none;
    padding: 120px 0 160px;
    position: relative;
}

.banner-style-modern .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Banner Slider Navigation */
.banner-style-modern .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.banner-style-modern .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.banner-style-modern .owl-nav button.owl-prev {
    left: 20px;
}

.banner-style-modern .owl-nav button.owl-next {
    right: 20px;
}

.banner-style-modern .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
}

.banner-style-modern .owl-nav button span {
    font-size: 30px;
    color: #ffffff;
    line-height: 1;
}

/* Banner Dots */
.banner-style-modern .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.banner-style-modern .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-style-modern .owl-dots .owl-dot.active {
    background: #ffffff;
    width: 40px;
    border-radius: 10px;
}

.banner-style-modern .owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.banner-style-modern .content-box {
    padding-top: 40px;
    animation: fadeInLeft 1s ease-out 0.3s both;
    position: relative;
    z-index: 99;
    text-align: center;
}

.banner-style-modern .banner-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.banner-style-modern .banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.banner-style-modern .banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
    justify-content: center;
}

.banner-style-modern .theme-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.banner-style-modern .btn-style-one {
    background: #ffffff;
    color: #fbb84d;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.banner-style-modern .btn-style-one:hover {
    background: #f5f3ff;
    color: #fbb84d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.banner-style-modern .btn-style-two {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.banner-style-modern .btn-style-two:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.banner-style-modern .banner-image-box {
    text-align: right;
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.banner-style-modern .agent-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

/* ========================================
   Property Categories Section
   ======================================== */
.property-categories-section {
    padding: 60px 0;
    background: #fff;
}

.property-categories-section a {
    text-decoration: none;
}

.property-categories-section .category-item {
    padding: 25px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.property-categories-section .category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.property-categories-section .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #fff3f4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-categories-section .icon-box i {
    font-size: 32px;
    color: #fbb84d;
}

.property-categories-section h6 {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* ========================================
   Buy/Sell/Rent Section
   ======================================== */
.buy-sell-rent-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.buy-sell-rent-section .action-box {
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.buy-sell-rent-section .action-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.buy-sell-rent-section .icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.buy-sell-rent-section .icon-wrapper > div {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.buy-sell-rent-section .icon-wrapper i.icon-24,
.buy-sell-rent-section .icon-wrapper i.icon-25,
.buy-sell-rent-section .icon-wrapper i.icon-26 {
    font-size: 42px;
    color: #fbb84d;
}

.buy-sell-rent-section .icon-wrapper span {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-sell-rent-section .action-block:nth-child(1) .icon-wrapper span {
    background: #fbb84d;
}

.buy-sell-rent-section .action-block:nth-child(2) .icon-wrapper span {
    background: #4CAF50;
}

.buy-sell-rent-section .action-block:nth-child(3) .icon-wrapper span {
    background: #2196F3;
}

.buy-sell-rent-section .icon-wrapper span i {
    font-size: 14px;
    color: #fff;
}

.buy-sell-rent-section h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.buy-sell-rent-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.buy-sell-rent-section a {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    border: 2px solid #fbb84d;
    color: #fbb84d;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.buy-sell-rent-section a:hover {
    background: #fbb84d;
    color: #fff;
}

/* ========================================
   Featured Properties Section
   ======================================== */
.feature-style-two {
    background: #fff;
    padding: 80px 0;
}

.feature-style-two .sec-title {
    margin-bottom: 50px;
}

.feature-style-two .sec-title h5 {
    color: #fbb84d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-style-two .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}
.feature-style-two .three-item-carousel{
    padding: 20px;
    overflow: hidden;
}
.feature-style-two .owl-nav{
    position: relative;
    bottom: -16px;
    right: 0px;
    text-align: center;
    top: inherit;
}
/*.feature-style-two .owl-dots{*/
/*    position: relative;*/
/*    display: block;*/
/*    text-align: center;*/
/*    margin-top: 42px;*/
/*}*/
.feature-style-two .feature-block-one a {
    text-decoration: none;
}

.feature-style-two .inner-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
    transition: all 0.3s ease;
}

.feature-style-two .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-style-two .image-box {
    position: relative;
    overflow: hidden;
}

.feature-style-two .image-box figure {
    margin: 0;
    overflow: hidden;
    height: 260px;
}

.feature-style-two .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-style-two .inner-box:hover .image-box img {
    transform: scale(1.05);
}

.feature-style-two .batch {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fbb84d;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.feature-style-two .price-tag {
    position: absolute;
    bottom: 40px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    color: #222;
}

.feature-style-two .lower-content {
    padding: 25px;
}

.feature-style-two .author-info {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-style-two .author {
    display: flex;
    align-items: center;
}

.feature-style-two .author-thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 10px 0 0;
}

.feature-style-two .author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-style-two .author h6 {
    margin: 0;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.feature-style-two .buy-btn span {
    background: #e8f5e9;
    color: #4CAF50;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.feature-style-two .title-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.feature-style-two .more-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.feature-style-two .more-details li {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
}

.feature-style-two .more-details li i {
    margin-right: 5px;
    color: #fbb84d;
}

/* ========================================
   Best Deals Section
   ======================================== */
.deals-style-two {
    background: #f8f9fa;
    padding: 80px 0;
}

.deals-style-two .sec-title {
    margin-bottom: 50px;
}

.deals-style-two .sec-title h5 {
    color: #fbb84d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.deals-style-two .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}
.deals-style-two .deals-carousel{
    overflow: hidden;
}
.deals-style-two .single-item a {
    text-decoration: none;
}

.deals-style-two .deals-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.deals-style-two .deals-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.deals-style-two .deals-card .row {
    margin: 0;
}

.deals-style-two .deals-card .deals-block {
    padding: 0;
}

.deals-style-two .image-box {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.deals-style-two .image-box figure {
    margin: 0;
    height: 100%;
}

.deals-style-two .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deals-style-two .buy-btn {
    position: absolute;
    top: 20px;
    left: 20px;
}

.deals-style-two .buy-btn span {
    background: rgba(255,255,255,0.95);
    color: #4CAF50;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.deals-style-two .image-box > div:last-child {
    position: absolute;
    top: 20px;
    right: 20px;
    /*background: #fbb84d;*/
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.deals-style-two .deals-block-one .inner-box {
    padding: 40px;
}

.deals-style-two .title-text {
    margin-bottom: 20px;
}

.deals-style-two .title-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin: 0;
}

.deals-style-two .price-box {
    margin-bottom: 20px;
}

.deals-style-two .price-info h6 {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
}

.deals-style-two .price-info h4 {
    font-size: 28px;
    font-weight: 700;
    color: #fbb84d;
    margin: 0;
}

.deals-style-two .author-box figure {
    text-align: center;
}

.deals-style-two .author-box img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
}

.deals-style-two .author-box span {
    display: block;
    font-size: 12px;
    color: #666;
}

.deals-style-two .deals-block-one .more-details {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.deals-style-two .deals-block-one .more-details li {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.deals-style-two .deals-block-one .more-details li i {
    margin-right: 8px;
    color: #fbb84d;
}

.deals-style-two .btn-box button {
    background: #fbb84d;
    border: none;
    color: #fff;
    padding: 12px 35px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deals-style-two .btn-box button:hover {
    background: #e2a641;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251,184,77,0.3);
}

/* ========================================
   Testimonial Section
   ======================================== */
.testimonial-style-four {
    background: #fff;
    padding: 80px 0;
}

.testimonial-style-four .sec-title {
    margin-bottom: 50px;
}

.testimonial-style-four .sec-title h5 {
    color: #fbb84d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonial-style-four .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.testimonial-style-four .sec-title p {
    color: #666;
    font-size: 16px;
    margin-top: 15px;
}

.testimonial-style-four .agent-profile {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: left;
    height: 100%;
}

.testimonial-style-four .agent-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-style-four .agent-info {
    padding-left: 20px;
}

.testimonial-style-four .agent-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.testimonial-style-four .agent-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.testimonial-style-four .rating {
    margin: 15px 0;
}

.testimonial-style-four .rating i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-style-four .social-links {
    margin-top: 20px;
}

.testimonial-style-four .social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 8px;
    color: #666;
    transition: all 0.3s ease;
}

.testimonial-style-four .social-links a:hover {
    background: #fbb84d;
    color: #fff;
}

.testimonial-style-four .testimonial-content {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    height: 100%;
    position: relative;
}

.testimonial-style-four .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-style-four .quote-icon i {
    font-size: 60px;
    color: #fbb84d;
    opacity: 0.1;
}

.testimonial-style-four .testimonial-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-style-four .testimonial-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-style-four .author-details {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.testimonial-style-four .author-details h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.testimonial-style-four .author-details span {
    margin-left: auto;
    font-size: 13px;
    color: #999;
}

.testimonial-style-four .testimonial-carousel {
    margin-top: 50px;
    max-width: 1200px;
    padding: 15px;
    overflow: hidden;
}

.testimonial-style-four .testimonial-block-three .inner-box {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-style-four .testimonial-block-three .inner-box:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.testimonial-style-four .testimonial-block-three .icon-box {
    margin-bottom: 20px;
}

.testimonial-style-four .testimonial-block-three .icon-box i {
    font-size: 32px;
    color: #fbb84d;
}

.testimonial-style-four .testimonial-block-three h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.testimonial-style-four .testimonial-block-three p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-style-four .testimonial-block-three h5 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* ========================================
   Custom Ads Section
   ======================================== */
.custom-ads-section {
    padding: 50px 0;
    background: #fff;
}

.custom-ads-section .ads-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.custom-ads-section .ad-item {
    position: fixed;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    width: 250px;
    top: 120px;
    z-index: 9;

}
.custom-ads-section .ad-item.left-ad {
    left: 50px;
}
.custom-ads-section .ad-item.right-ad {
    right: 50px;
}

.custom-ads-section .ad-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.custom-ads-section .ad-item a {
    display: block;
    text-decoration: none;
}

.custom-ads-section .ad-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.custom-ads-section .ad-item:hover .ad-image {
    transform: scale(1.05);
}

/* Responsive adjustments for ads */
@media (max-width: 991.98px) {
    .custom-ads-section {
        padding: 40px 0;
    }
    
    .custom-ads-section .ads-container {
        gap: 20px;
    }
    .custom-ads-section .ad-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    width:100%;
    height: 400px;
    top: inherit;
    z-index: 9;
    }
    .custom-ads-section .ad-item.left-ad{
        left: inherit;
    }
    .custom-ads-section .ad-item.right-ad{
        right: inherit;
    }
}

@media (max-width: 767.98px) {
    .custom-ads-section .ads-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .custom-ads-section .ad-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    width:100%;
    top: inherit;
    z-index: 9;

}
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section .text p {
    color: #fff;
}
