/* ==========================================================================
   BASE & GLOBAL STYLES
   ========================================================================== */
body {
    font-family: Arial, sans-serif;
    background: #f4f8fb;
    margin: 0;
    padding: 0;
}
/* ==========================================================================
   Hero Banner (.dxb)
   ========================================================================== */
   

  /* Text Content Container */
  .hero-content {
    max-width: 650px;
    z-index: 1; /* Keeps text above the gradient overlay */
  }

  .hero-content h1 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .hero-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
  }

  /* Call to Action Button */
  .cta-button {
    background-color: #ff8c00; /* Vibrant Orange */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cta-button:hover {
    background-color: #e07b00; /* Darker orange on hover */
  }
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .hero-banner {
      background-position: 70% center; /* Adjust image position for mobile */
      padding: 0 5%;
      background: linear-gradient(none,none);
    }
    
    .hero-content h1 {
      font-size: 32px;
    }
    .hero-content p {
      font-size: 18px;
    }
  }
/* ==========================================================================
    CSS: HERO PILLS & UNIVERSITY RANKINGS
   ========================================================================== */

/* Hero Banner Pills (Tags) */
.aus-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.aus-hero-pills span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e0eeff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* University Rankings Section */
.uni-section-unique {
    padding: 60px 20px;
    background: #f8fbff;
}

.uni-container-unique {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.uni-header-unique h2 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.uni-grid-unique {
    display: grid;
    /* 'auto-fit' automatically adjusts columns for Laptop, Tablet, and Mobile */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.uni-card-unique {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uni-card-unique:hover {
    transform: translateY(-8px);
}

.uni-card-unique img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.uni-card-unique h4 {
    font-size: 18px;
    color: #1a4ed8;
    margin-bottom: 10px;
    text-align: center;
}

.uni-location-unique, .uni-tag-unique, .uni-rank-unique, .uni-fee-unique {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
}

.uni-btn-unique {
    display: inline-block;
    margin-top: auto;
    padding: 10px 20px;
    background: #00b4ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.uni-btn-unique:hover {
    background: #1a4ed8;
}

/* ==========================================================================
   ENHANCED RESPONSIVE MEDIA QUERIES (Mobile, Tablet, Laptop)
   ========================================================================== */

/* 💻 LAPTOP & TABLET (Max-width: 992px) */
@media (max-width: 992px) {
    .hero-banner {
        padding: 0 5%;
        text-align: center; /* Centers text on smaller screens */
    }
    
    .hero-content {
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .aus-hero-pills {
        justify-content: center; /* Centers the pills */
    }
    
    .dxb-wrapper-box {
        width: 95%; /* Gives more breathing room on tablets */
    }
}

/* 📱 MOBILE (Max-width: 768px) */
@media (max-width: 768px) {
    .hero-banner {
        height: auto;
        padding: 100px 20px;
        background: linear-gradient(none,none);
    }
    
    .modern-banner-content h1 {
        font-size: 28px; /* Prevents giant text from overflowing the screen */
    }
    
    .aus-hero-pills span {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .uni-header-unique h2 {
        font-size: 26px;
    }
    
    .uni-grid-unique {
        grid-template-columns: 1fr; /* Stacks the university cards perfectly on mobile */
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   TABBED NAVIGATION SECTION (.dxb)
   ========================================================================== */
   
.dxb-title-main {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 80px 0 50px;
}

.dxb-wrapper-box {
    width: 70%;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dxb-tabs-bar {
    display: flex;
    background: #2bb3f5;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dxb-tab-item {
    flex: 1;
    min-width: 140px;
    padding: 15px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.dxb-tab-item:hover,
.dxb-tab-item.active {
    background: #1748aa;
}

.dxb-content-flex {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.dxb-left-img {
    flex: 1;
}

.dxb-left-img img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.dxb-right-info {
    flex: 1;
}

.dxb-right-info h2 {
    font-size: 20px;
    color: #1e5bd7;
    margin-bottom: 15px;
}

.dxb-right-info ul {
    padding-left: 18px;
}

.dxb-right-info li {
    margin-bottom: 10px;
    font-size: 16px;
}

.dxb-tab-content {
    display: none;
}

.dxb-tab-content.active {
    display: block;
}

/* ==========================================================================
   UNIVERSITY RANKINGS SECTION (.dubai)
   ========================================================================== */
.dubai-course-section {
    padding: 60px 15px;
}

.dubai-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.dubai-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dubai-subtitle {
    font-size: 15px;
    color: #666;
    margin: 10px auto 40px;
    max-width: 600px;
}

.dubai-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dubai-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dubai-card:hover {
    transform: translateY(-6px);
}

.dubai-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.dubai-card h3 {
    font-size: 17px;
    color: #1a2b6d;
    margin-bottom: 10px;
}

.dubai-card ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.dubai-card ul li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.dubai-info {
    font-size: 12px;
    color: #0077ff;
    margin-bottom: 15px;
}

.dubai-btn {
    width: 100%;
    background: #18aff0;
    color: #fff;
    border: none;
    padding: 11px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.dubai-btn:hover {
    background: #0555a5d3;
}

/* ==========================================================================
   SCHOLARSHIPS SECTION (.dubaiL)
   ========================================================================== */
.dubaiL-scholar-wrap {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbff, #eef3ff);
}

.dubaiL-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.dubaiL-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #0077ff, #00c6ff, #6a11cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dubaiL-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.dubaiL-card {
    perspective: 1000px;
    animation: floatLight 5s ease-in-out infinite;
}

.dubaiL-inner {
    position: relative;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    transform-style: preserve-3d;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.dubaiL-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #0077ff, #00c6ff, #6a11cb);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.dubaiL-inner::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,119,255,0.25), transparent);
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s;
}

.dubaiL-inner:hover::after {
    opacity: 1;
}

.dubaiL-card:hover .dubaiL-inner {
    transform: rotateX(5deg) rotateY(-5deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 119, 255, 0.2);
}

@keyframes floatLight {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.dubaiL-inner h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a2b6d;
}

.dubaiL-inner p {
    color: #0077ff;
    font-size: 13px;
    margin-bottom: 8px;
}

.dubaiL-inner ul {
    padding-left: 18px;
}

.dubaiL-inner ul li {
    font-size: 13px;
    margin-bottom: 6px;
    color: #555;
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL (.zentra)
   ========================================================================== */
.zentra-wrapper {
    padding: 60px 20px;
    text-align: center;
}

.zentra-title {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.zentra-carousel {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.zentra-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.zentra-slide {
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.zentra-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.zentra-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -40px;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.zentra-stars {
    margin: 10px 0;
}

.zentra-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.zentra-name {
    margin-top: 10px;
    font-weight: 600;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zentra-controls {
    margin-top: 20px;
}

.zentra-btn {
    border: none;
    background: #1e5bd7;
    color: #fff;
    padding: 10px 16px;
    margin: 5px;
    border-radius: 50px;
    cursor: pointer;
}

/* ==========================================================================
   FAQ SECTION (.neo-faq)
   ========================================================================== */
.neo-faq-section {
    padding: 80px 20px;
    background: #f6f9ff;
    font-family: 'Poppins', sans-serif;
}

.neo-faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
}

.neo-faq-wrap {
    max-width: 900px;
    margin: auto;
}

.neo-faq-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid transparent;
}

.neo-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.neo-faq-left {
    font-size: 26px;
    font-weight: 700;
    color: #1e5bd7;
    min-width: 50px;
}

.neo-faq-right {
    flex: 1;
    position: relative;
}

.neo-faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1e5bd7;
    position: relative;
    padding-right: 30px;
}

.neo-faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
    transition: 0.3s;
}

.neo-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    font-size: 15px;
    color: #555;
}

.neo-faq-item.active {
    border: 1px solid #1e5bd7;
    background: linear-gradient(135deg, #ffffff, #eef3ff);
}

.neo-faq-item.active .neo-faq-question::after {
    content: "×";
    transform: rotate(180deg);
}

.neo-faq-answer p {
    padding-top: 10px;
}

/* ==========================================================================
   SEO FEATURES SECTION (.edv-seo)
   ========================================================================== */
.edv-seo-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef2ff, #f9fbff);
    font-family: 'Poppins', sans-serif;
}

.edv-seo-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.edv-seo-title {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

.edv-seo-title span {
    color: #1e5bd7;
}

.edv-seo-sub {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.edv-seo-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.edv-seo-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid transparent;
}

.edv-seo-card span {
    font-size: 18px;
    color: #1e5bd7;
    margin-top: 2px;
}

.edv-seo-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.edv-seo-card:hover {
    transform: translateY(-6px);
    border: 1px solid #1e5bd7;
    box-shadow: 0 15px 35px rgba(30,91,215,0.2);
}

/* ==========================================================================
   CALL-TO-ACTION BANNER (.pro-cta)
   ========================================================================== */
.pro-cta-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 70, 0.65);
    top: 0;
    left: 0;
}

.pro-cta-box {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: 0.4s ease;
    margin-top: 20px;
}

.pro-cta-box:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.pro-cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
}

.pro-cta-title span {
    color: #ffd166;
    transition: 0.3s;
}

.pro-cta-title span:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,209,102,0.9);
}

.pro-cta-points {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pro-cta-item {
    background: rgba(255,255,255,0.15);
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.pro-cta-item:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.pro-cta-action p {
    margin-bottom: 20px;
    font-size: 16px;
}

.pro-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffd166;
    color: #0f2b7a;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.pro-cta-btn:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.4);
}

.pro-cta-btn:active {
    transform: scale(0.95);
}

/* ==========================================================================
   TIMELINE / WHY STUDY SECTION (.dx)
   ========================================================================== */
.dx-dubai-why {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f3f7ff, #eef3ff);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.dx-title {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(90deg, #1a4ed8, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dx-sub {
    max-width: 700px;
    margin: 15px auto 50px;
    color: #555;
    line-height: 1.6;
}

.dx-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.dx-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(#1e5bd7, #6ea8ff);
    transform: translateX(-50%);
}

.dx-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.dx-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.dx-icon {
    width: 60px;
    height: 60px;
    background: #05c0f4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(30,91,215,0.4);
    transition: 0.3s;
}

.dx-content {
    width: 40%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 15px;
    color: #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.dx-item:hover .dx-icon {
    transform: scale(1.15) rotate(5deg);
}

.dx-item:hover .dx-content {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(30,91,215,0.2);
}


/* ==========================================================================
   UNIFIED RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* 💻 LAPTOPS & SMALL DESKTOPS (Max-width: 1200px) */
@media (max-width: 1200px) {
    .dxb-wrapper-box {
        width: 80%;
    }
}

/* 📋 LARGE TABLETS / LANDSCAPE (Max-width: 1024px) */
@media (max-width: 1024px) {
    .dxb-wrapper-box {
        width: 85%;
    }
    .dxb-title-main {
        font-size: 32px;
    }
    .dubai-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dubai-title, .dubaiL-title, .zentra-title, .neo-faq-title, .edv-seo-title, .dx-title {
        font-size: 30px;
    }
}

/* 📑 PORTRAIT TABLETS (Max-width: 768px) */
@media (max-width: 768px) {
    .dxb-content-flex {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
    .dxb-left-img, .dxb-right-info {
        width: 100%;
    }
    .dxb-title-main {
        font-size: 26px;
        margin: 50px 0 30px;
    }
    .dxb-right-info h2 {
        font-size: 18px;
    }
    .dubaiL-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .neo-faq-item {
        padding: 15px;
        gap: 15px;
    }
    .neo-faq-left {
        font-size: 22px;
        min-width: 35px;
    }
    .edv-seo-container {
        grid-template-columns: 1fr;
    }
    .dx-timeline::before {
        left: 30px;
        transform: none;
    }
    .dx-item {
        flex-direction: row !important; /* Force layout order consistency */
        justify-content: flex-start;
        gap: 20px;
    }
    .dx-content {
        width: calc(100% - 80px);
    }
    .dx-icon {
        flex-shrink: 0;
    }

    /* --- Tablet: show 2 reviews per row, wrapping --- */
    .zentra-carousel {
        overflow: visible;
    }
    .zentra-track {
        display: flex;
        flex-wrap: wrap;
        transform: none !important;
        transition: none;
    }
    .zentra-slide {
        min-width: 0;
        width: calc(50% - 0px);
        flex: 0 0 calc(50%);
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    .zentra-avatar {
        margin-top: 10px; /* Remove negative top margin that relies on carousel overlap */
    }
}

/* 📱 SMARTPHONES & MOBILE (Max-width: 600px) */
@media (max-width: 600px) {
    .dubai-card-grid {
        grid-template-columns: 1fr;
    }
    .dubai-subtitle {
        font-size: 13px;
    }
    .dubai-card {
        padding: 12px;
    }
    .dubai-card-img {
        height: 160px;
    }
     .dx-timeline::before {
        left: 25px;
        transform: none;
    .pro-cta-title {
        font-size: 24px;
    }
    .pro-cta-points {
        grid-template-columns: 1fr;
    }
    .pro-cta-box {
        padding: 40px 20px;
    }

    /* --- Mobile: show 1 review per row, stacked --- */
    .zentra-carousel {
        overflow: visible;
    }
    .zentra-track {
        display: flex;
        flex-wrap: wrap;
        transform: none !important;
        transition: none;
    }
    .zentra-slide {
        min-width: 0;
        width: 100%;
        flex: 0 0 100%;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    .zentra-avatar {
        margin-top: 10px;
    }
}

/* 📲 SMALL MOBILE DEVICES (Max-width: 480px) */
@media (max-width: 480px) {
    .dxb-wrapper-box {
        width: 92%;
    }
    .dxb-tab-item {
        font-size: 14px;
        padding: 12px;
        min-width: 120px;
    }
    .dubai-title, .dubaiL-title, .zentra-title, .neo-faq-title, .edv-seo-title, .dx-title {
        font-size: 22px;
    }
    .edv-seo-right {
        grid-template-columns: 1fr;
    }
    .neo-faq-question {
        font-size: 15px;
    }
    .dx-content {
        width: calc(100% - 70px);
        font-size: 14px;
        padding: 12px;
    }
    .dx-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}