/* ===== GOOGLE ADS SHOWCASE ===== */

.gad-showcase-section {
  padding: 100px 6%;
  background: transparent;
  color: white;
  padding-top:0px;

}

/* HEADER */
.gad-header {
  text-align: center;
  margin-bottom: 60px;
}

.gad-header h2 {
  font-size: 2.5rem;
  margin: 14px 0 8px;
}

.gad-header p {
  color: #b5b5b5;
}

/* BADGE */
.gad-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00;
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 140, 0, 0.3);
}

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

/* CARD */
.gad-card {
  background: #0f0f0f;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.gad-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 40px rgba(66,133,244,0.3),
              0 0 40px rgba(52,168,83,0.2),
              0 0 40px rgba(251,188,5,0.2);
}

/* IMAGE */
.gad-image-wrap {
  position: relative;
  overflow: hidden;
}

.gad-image-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gad-card:hover img {
  transform: scale(1.08);
}

/* HOVER TEXT */
.gad-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 1px;
  opacity: 0;
  transition: 0.4s;
}

.gad-card:hover .gad-hover {
  opacity: 1;
}

/* FOOTER */
.gad-card-footer {
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 200;
}

/* MODAL */
.gad-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}

.gad-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.gad-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

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

  .gad-header h2 {
    font-size: 2.2rem;
  }
}

/* ===== GOOGLE ADS FIXED SECTION ===== */

.gad-section-fixed {
  padding: 90px 6%;
  background: transparent;
  text-align: center;
  
}

/* HEADER FIX */
.gad-header-fixed {
  margin-bottom: 60px;
 
  
}

.gad-badge-fixed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255,140,0,0.12);
  color: #ff8c00;
  border: 1px solid rgba(255,140,0,0.3);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.gad-title-fixed {
  font-size: 2.9rem !important;
  color: #ffffff !important;
  margin: 10px 0 6px !important;
  display: block !important;
  visibility: visible !important;
}

.gad-subtitle-fixed {
  color: #b5b5b5 !important;
  font-size: 1rem;
}

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

/* CARDS */
.gad-card-fixed {
  background: #0f0f0f;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s ease;
  position: relative;
}

.gad-card-fixed img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gad-card-fixed:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 40px rgba(66,133,244,0.25),
    0 0 40px rgba(52,168,83,0.2),
    0 0 40px rgba(251,188,5,0.2);
}

.gad-card-fixed:hover img {
  transform: scale(1.05);
}

.gad-label-fixed {
  padding: 18px;
  font-weight: 600;
  color: white;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* RESPONSIVE FIX */
@media (max-width: 900px) {

  .gad-grid-fixed {
    grid-template-columns: 1fr;
  }

  .gad-title-fixed {
    font-size: 2.2rem !important;
  }
}
/* =======================
   PREMIUM GOOGLE ADS HEADER
======================= */

.gad-header-pro {
  text-align: center;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(30px);
  animation: gadFadeUp 1s ease forwards;
}

/* Title Row with Logo */
.gad-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

/* Google Ads Logo */
.gad-logo-icon {
  width: 38px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(66,133,244,0.3));
  transition: transform 0.4s ease;
}

.gad-title-row:hover .gad-logo-icon {
  transform: rotate(8deg) scale(1.05);
}

/* Main Title */
.gad-main-title {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  position: relative;
}

/* Gradient Underline */
.gad-main-title::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 4px;
  background: linear-gradient(
    90deg,
    #4285F4,
    #34A853,
    #FBBC05
  );
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-radius: 10px;
  animation: gadGlow 3s infinite alternate;
}

/* Subtitle */
.gad-sub-text {
  color: #bdbdbd;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 22px auto 0;
  line-height: 1.6;
}

/* Fade Up Animation */
@keyframes gadFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow Effect */
@keyframes gadGlow {
  from {
    box-shadow: 0 0 8px rgba(66,133,244,0.4);
  }
  to {
    box-shadow: 0 0 16px rgba(52,168,83,0.6);
  }
}

/* =======================
   DASHBOARD CARD UPGRADE
======================= */

.gad-dashboard-card {
  background: rgba(20,20,20,0.8);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Lift Effect */
.gad-dashboard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(66,133,244,0.15);
}

/* Animated Border */
.gad-dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    120deg,
    #4285F4,
    #34A853,
    #FBBC05
  );
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gad-dashboard-card:hover::before {
  opacity: 1;
}

/* Caption Style */
.gad-dashboard-caption {
  color: #ffffff;
  font-weight: 600;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =======================
   MOBILE RESPONSIVE
======================= */

@media (max-width: 900px) {

  .gad-title-row {
    flex-direction: column;
    gap: 10px;
  }

  .gad-logo-icon {
    width: 34px;
  }

  .gad-main-title {
    font-size: 2rem;
  }

  .gad-sub-text {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}
.gad-title-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
}

.gad-title-inline img {
  width: 40px;
  height: auto;
}
/* ===== MOBILE ALIGNMENT FIXES FOR GOOGLE ADS SECTION ===== */

@media (max-width: 768px) {

  /* Main Section Padding Fix */
  .gad-showcase-section {
    padding: 60px 15px;
    text-align: center;
  }

  /* Header Container */
  .gad-header-pro {
    text-align: center;
    padding: 0 10px;
  }

  /* Title Row Alignment */
  .gad-title-row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* Title and Logo Fix */
  .gad-title-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    gap: 10px;
    text-align: center;
    line-height: 1.3;
  }

  /* Google Ads Logo Mobile Size */
  .gad-title-inline img {
    width: 55px;
    height: auto;
    margin-bottom: 5px;
  }

  /* Subtitle Text */
  .gad-sub-text {
    font-size: 0.95rem;
    padding: 0 10px;
    margin-top: 10px;
  }

  /* Dashboard Grid Fix */
  .gad-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 25px;
  }

  /* Card Alignment */
  .gad-card {
    width: 100%;
    margin: 0 auto;
  }

  /* Image Preview Container */
  .gad-preview {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gad-preview img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  /* Click to Expand Overlay */
  .gad-overlay span {
    font-size: 14px;
    padding: 8px 14px;
  }

  /* Description Text Fix */
  .gad-description {
    padding: 0 12px;
    font-size: 0.95rem;
    text-align: left;
    max-width: 94%;
    margin: 15px auto 0 auto;
  }

}
@media (max-width: 768px) {
  .gad-showcase-section {
    padding-top: 0px !important;
    margin-top: -25px !important;
  }
}
.dp-cta-btn {
  margin-bottom: 10px !important;
}
