/*WHATSAPP CSS*/

.whatsapp-chat {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-chat .whatsapp-img {
  width: 35px;
  height: 35px;
}  

/* ===============================
   AMAZON ADS SECTION
================================= */

.amazon-ads-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.amazon-ads-wrapper {
    max-width: 1120px;
    margin: 0 auto;
}

.amazon-ads-box {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

/* HEADING */
.amazon-ads-heading {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #111;
    margin-top: 16px;
}

/* GRID */
.amazon-ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ITEM */
.amazon-ads-item {
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.amazon-ads-item:hover {
    background: #fafafa;
    transform: translateY(-4px);
}

/* ICON + TITLE ROW */
.amazon-ads-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* ICON */
.amazon-ads-icon {
    width: 45px;
    height: 45px;
    background: #f1f1f1;
    background: linear-gradient(45deg, #9a8cb0, #d3a6a2);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amazon-ads-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* TITLE */
.amazon-ads-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

/* TEXT */
.amazon-ads-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .amazon-ads-grid {
        grid-template-columns: 1fr;
    }

    .amazon-ads-box {
        padding: 40px 25px;
    }

    .amazon-ads-heading {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .amazon-ads-section {
        padding: 60px 15px;
    }

    .amazon-ads-heading {
        font-size: 22px;
    }

    .amazon-ads-title {
        font-size: 18px;
    }

    .amazon-ads-text {
        font-size: 15px;
    }
}


.adorbix-why-section {
    padding: 70px 0;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--SEO-Marketing-Text-Color, #374151); 
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
}

.section-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.adorbix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.adorbix-card {
    background: #f5f5fe;
    border: 2px solid #f2f3f6;
    border-radius: 12px;
    padding: 30px;
    transition: 0.3s ease-in-out;
}

.adorbix-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.adorbix-card p {
    font-size: 15px;
    color: #555;
}

.adorbix-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-box {
    margin-top: 50px;
}

.adorbix-btn {
    display: inline-block;
    background: #ff4d15;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.adorbix-btn:hover {
    background: #e63e0f;
}

.card-wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .card-wide {
        grid-column: span 1;
    }
}


.adorbix-ads-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.adorbix-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.adorbix-header p {
    max-width: 750px;
    margin: 0 auto 60px;
    color: #555;
    line-height: 1.7;
}

.adorbix-ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.adorbix-ads-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px;
    transition: 0.3s ease;
}

.adorbix-ads-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.adorbix-ads-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.adorbix-ads-card ul {
    padding-left: 18px;
    margin: 0;
}

.adorbix-ads-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.adorbix-ads-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.adorbix-ads-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.adorbix-ads-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.adorbix-ads-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: bold;
    color: #f25d35;
}


