body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #f8f8f8;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: #e2e2e2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  gap: 16px; /* Space between items when wrapped */
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 150px; /* Ensure logo section doesn't shrink too much */
}

.logo-text {
  font-size: 2rem; /* Approximately 32px */
  font-weight: bold;
  color: #212529;
}
.weather-widgets a{
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background-color: #facc15; /* Yellow-400 */
  border-radius: 50%;
}

.search-bar-container {
  position: relative;
  flex-grow: 1; /* Allows search bar to take available space */
  max-width: 480px; /* Max width for search bar */
  min-width: 200px; /* Minimum width for search bar */
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280; /* Gray-500 */
  width: 20px;
  height: 20px;
}

.search-input {
  width: 80%;
  height: 48px; /* Approximately h-12 */
  padding: 0 16px 0 40px; /* Left padding for icon */
  border-radius: 9999px; /* Full rounded */
  border: 1px solid #d1d5db; /* Gray-300 */
  font-size: 1rem; /* Base font size */
  color: #374151; /* Gray-700 */
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input::placeholder {
  color: #6b7280; /* Gray-500 */
}

.search-input:focus {
  border-color: #3b82f6; /* Blue-500 */
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2); /* Focus ring */
}

.weather-widgets-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap; /* Allows widgets to wrap */
  justify-content: flex-end; /* Aligns widgets to the right */
}

.weather-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px; /* Full rounded */
  border: 1px solid #d1d5db; /* Gray-300 */
  background-color: #f9fafb; /* Gray-50 */
  color: #374151; /* Gray-800 */
  font-size: 1rem; /* Base font size */
  font-weight: 500; /* Medium font weight */
  min-width: 150px; /* Ensure widgets don't shrink too much */
}

.weather-icon {
  width: 20px;
  height: 20px;
}

.cloud-rain-icon {
  color: #3b82f6; /* Blue-500 */
}

.cloud-sun-icon {
  color: #facc15; /* Yellow-500 */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: center;
  }

  .logo-section {
    margin-bottom: 16px;
  }

  .search-bar-container {
    width: 100%;
    max-width: 100%; /* Allow search bar to take full width on small screens */
    margin-bottom: 16px;
  }

  .weather-widgets-container {
    width: 100%;
    justify-content: center; /* Center widgets on small screens */
  }

  .weather-widget {
    flex-grow: 1; /* Allow widgets to grow and fill space */
    justify-content: center; /* Center content within widgets */
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.75rem; /* Slightly smaller logo on very small screens */
  }

  .search-input {
    height: 40px; /* Slightly smaller input on very small screens */
    font-size: 0.9rem;
  }

  .search-icon {
    width: 18px;
    height: 18px;
  }

  .weather-widget {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}





/* header end ========================================================================= */



 .weterbody {
            margin: 0;
            font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .weather-card-container {
            display: flex;
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            flex-wrap: wrap; /* Allow sections to wrap on smaller screens */
        }

        .current-weather-section {
            flex: 2; /* Takes more space than forecast on larger screens */
            background-color: #3b82f6; /* Blue color */
            color: #ffffff;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 300px; /* Minimum width for this section */
            position: relative;
            overflow: hidden; /* Ensure icons don't overflow */
        }

        .city-name-weter {
            font-size: 2.5rem; /* Large font for city name */
            font-weight: bold;
            margin-bottom: 10px;
        }

        .weather-summary {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .current-time-info {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .current-temperature-display {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap; /* Allow temperature and icon to wrap */
        }

        .main-weather-icon {
            width: 100px; /* Large icon size */
            height: 100px;
            flex-shrink: 0; /* Prevent icon from shrinking */
        }

        .main-weather-icon .sun-path {
            fill: #facc15; /* Yellow */
        }
        .main-weather-icon .cloud-path {
            fill: #bfdbfe; /* Light blue */
        }
        .main-weather-icon .rain-path {
            fill: #60a5fa; /* Medium blue */
        }

        .temperature-value {
            font-size: 5rem; /* Very large font for temperature */
            font-weight: bold;
            line-height: 1;
        }

        .feels-like-text {
            font-size: 0.9rem;
            margin-top: 5px;
        }

        .forecast-section {
            flex: 1; /* Takes less space than current weather */
            background-color: #ffffff;
            padding: 30px;
            display: flex;
            flex-direction: column;
            min-width: 250px; /* Minimum width for this section */
        }

        .day-tabs {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0; /* Light gray border */
            padding-bottom: 10px;
        }

        .day-tab {
            font-size: 1rem;
            font-weight: 500;
            color: #6b7280; /* Gray text */
            padding: 5px 0;
            cursor: pointer;
            position: relative;
            text-align: center; /* Center text for better wrapping */
            flex-grow: 1; /* Allow tabs to grow */
        }

        .day-tab.active {
            color: #3b82f6; /* Blue for active tab */
            font-weight: bold;
        }

        .day-tab.active::after {
            content: '';
            position: absolute;
            bottom: -11px; /* Position below the text, accounting for padding */
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #3b82f6; /* Blue underline */
        }

        .forecast-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .forecast-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .forecast-item-icon {
            width: 40px; /* Smaller icon for forecast */
            height: 40px;
            flex-shrink: 0;
        }

        .forecast-item-icon .sun-path {
            fill: #facc15; /* Yellow */
        }
        .forecast-item-icon .cloud-path {
            fill: #bfdbfe; /* Light blue */
        }
        .forecast-item-icon .rain-path {
            fill: #60a5fa; /* Medium blue */
        }

        .forecast-day-name {
            font-size: 1rem;
            font-weight: 500;
            color: #374151; /* Dark gray */
            flex-grow: 1; /* Allows day name to take space */
        }

        .forecast-temperatures {
            font-size: 1rem;
            font-weight: bold;
            color: #374151; /* Dark gray */
            white-space: nowrap; /* Prevent temperatures from wrapping */
        }

        .forecast-temperatures .low-temp {
            font-weight: normal;
            color: #6b7280; /* Gray for low temp */
            margin-left: 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .weather-card-container {
                flex-direction: column; /* Stack sections vertically */
                margin: 0 10px; /* Add some horizontal margin on smaller screens */
            }

            .current-weather-section,
            .forecast-section {
                min-width: unset; /* Remove min-width to allow full width */
                padding: 25px; /* Slightly reduced padding */
            }

            .current-weather-section {
                padding-bottom: 100px; /* Add space for icon to overlap */
            }

            .main-weather-icon {
                position: absolute;
                bottom: -20px; /* Position icon to overlap */
                right: 20px;
                width: 120px;
                height: 120px;
            }

            .current-temperature-display {
                flex-direction: row; /* Keep row for better alignment with icon */
                align-items: center;
                justify-content: flex-start; /* Align to start */
                gap: 10px; /* Reduced gap */
            }

            .temperature-value {
                font-size: 4.5rem; /* Slightly smaller on mobile */
            }

            .day-tabs {
                flex-wrap: wrap; /* Allow tabs to wrap */
                justify-content: space-around; /* Distribute tabs evenly */
                gap: 10px; /* Space between wrapped tabs */
                padding-bottom: 8px; /* Adjust padding for underline */
            }

            .day-tab {
                flex-basis: 48%; /* Two tabs per row, with small gap */
                font-size: 0.95rem;
            }

            .day-tab.active::after {
                bottom: -9px; /* Adjust underline position for smaller padding */
            }

            .forecast-item {
                flex-direction: row; /* Keep row layout for forecast items */
                justify-content: space-between; /* Distribute content */
                align-items: center;
                gap: 10px;
            }

            .forecast-day-name {
                flex-grow: 0; /* Don't let it grow too much */
                min-width: 80px; /* Ensure enough space for day name */
            }
        }

        @media (max-width: 480px) {
            .current-weather-section,
            .forecast-section {
                padding: 20px; /* Further reduced padding on very small screens */
            }

            .city-name-weter {
                font-size: 2rem;
            }

            .weather-summary {
                font-size: 1rem;
            }

            .temperature-value {
                font-size: 3.8rem; /* Smaller temperature on very small screens */
            }

            .main-weather-icon {
                width: 100px;
                height: 100px;
                bottom: -10px;
                right: 10px;
            }

            .day-tabs {
                flex-direction: column; /* Stack tabs vertically on very small screens */
                gap: 5px; /* Smaller gap between stacked tabs */
                padding-bottom: 5px;
            }

            .day-tab {
                flex-basis: auto; /* Allow tabs to take full width */
                width: 100%;
                font-size: 0.9rem;
                padding: 8px 0; /* More vertical padding for easier tapping */
            }

            .day-tab.active::after {
                bottom: -6px; /* Adjust underline position for stacked tabs */
            }

            .forecast-item {
                flex-direction: column; /* Stack forecast items vertically */
                align-items: flex-start; /* Align content to the left */
                gap: 5px; /* Smaller gap between stacked elements */
            }

            .forecast-item-icon {
                width: 35px;
                height: 35px;
            }

            .forecast-day-name,
            .forecast-temperatures {
                font-size: 0.95rem;
                width: 100%; /* Ensure text takes full width */
                text-align: left; /* Align text to the left */
            }
        }



        /* weter end =================================================================================== */




            .aktuell-section-main {
      
            display: flex;
            flex-direction: column; /* Arrange sections vertically */
            justify-content: flex-start;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }

       
        /* --- Aktuell Section Styles --- */
        .aktuell-section {
            width: 100%;
            margin-bottom: 40px; /* Space below this section */
        }

        .aktuell-heading {
            font-size: 1.8rem;
            font-weight: bold;
            color: #212529;
            margin-bottom: 20px;
            padding-left: 10px; /* Align with card content */
        }

        .aktuell-article-card {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            padding: 20px;
            display: flex;
            flex-direction: column; /* Stack elements by default */
            gap: 15px;
            border: 2px solid #facc15;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-text {
            font-size: 0.85rem;
            color: #6b7280;
            margin: 0;
        }

        .author-text strong {
            color: #374151;
            font-weight: 600;
        }

        .article-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .article-thumbnail {
            width: 120px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0; /* Prevent thumbnail from shrinking */
        }

        .article-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #212529;
            line-height: 1.4;
            margin: 0;
        }

        /* --- News Cards Section Styles --- */
        .news-cards-section {
            width: 100%;
            display: flex;
            justify-content: center; /* Center cards when they don't fill width */
            gap: 20px; /* Space between cards */
            flex-wrap: wrap; /* Allow cards to wrap */
            margin-bottom: 40px; /* Space below this section */
        }

        .news-card {
            flex: 1; /* Allow cards to grow and shrink */
            min-width: 280px; /* Minimum width for each card */
            max-width: 30%; /* Max width to allow 3 per row */
            height: 350px; /* Fixed height for visual consistency */
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: flex-end; /* Align text to the bottom */
            padding: 20px;
            box-sizing: border-box;
            background-size: cover; /* Cover the entire card */
            background-position: center; /* Center the background image */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.769);
            color: #ffffff; /* White text */
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); /* Gradient overlay for text readability */
            z-index: 1;
        }

        .news-card-title {
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 1.3;
            z-index: 2; /* Ensure text is above overlay */
            margin: 0; /* Remove default margin */
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
         
            
            

            /* Aktuell Section Responsive */
            .aktuell-section {
                margin: 0 10px 40px 10px; /* Add horizontal margin */
            }

            .aktuell-heading {
                padding-left: 0; /* Remove padding for mobile alignment */
                text-align: center; /* Center heading */
            }

            .aktuell-article-card {
                padding: 15px; /* Reduced padding */
            }

            .article-content {
                flex-direction: column; /* Stack thumbnail and title */
                align-items: flex-start; /* Align content to the left */
                gap: 10px; /* Reduced gap */
            }

            .article-thumbnail {
                width: 100%; /* Thumbnail takes full width */
                height: 150px; /* Larger height for better visibility */
            }

            .article-title {
                font-size: 1.1rem; /* Slightly smaller title */
                text-align: left;
            }

            /* News Cards Responsive */
            .news-cards-section {
                flex-direction: column; /* Stack cards vertically */
                align-items: center; /* Center stacked cards */
                gap: 25px; /* More space between stacked cards */
            }

            .news-card {
                max-width: 90%; /* Take more width on mobile */
                width: 100%; /* Ensure it takes full available width */
                height: 280px; /* Slightly reduced height for mobile */
            }

            .news-card-title {
                font-size: 1.3rem; /* Slightly smaller font for mobile */
            }
        }

        @media (max-width: 480px) {
           


         

            /* Aktuell Section Responsive for very small screens */
            .aktuell-section {
                padding: 0 10px 40px 10px; /* Adjust padding for very small screens */
            }
            .aktuell-article-card {
                padding: 15px;
            }
            .author-info {
                flex-direction: column; /* Stack avatar and text */
                align-items: flex-start;
                gap: 5px;
            }
            .article-title {
                font-size: 1rem; /* Even smaller title font */
            }

            /* News Cards Responsive for very small screens */
            .news-card {
                height: 250px; /* Even smaller height */
                padding: 15px;
            }

            .news-card-title {
                font-size: 1.2rem;
            }
        }




        /*  Aktuell 2 section end ============================================================================================ */

   .detail-info {
  font-size: 0.95rem;
  color: #444;
  margin-top: 8px;
  line-height: 1.4;
}


.main-wrapper {
  max-width: 1200px;
  padding: 20px;
}

.primary-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.item-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between items */
  justify-content: center; /* Center items if they don't fill the row */
}

.content-block {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 13.333px); /* For 3 items in a row with gap */
  min-width: 280px; /* Minimum width for items before wrapping */
  flex-grow: 1; /* Allow items to grow to fill space */
  transition: transform 0.2s ease-in-out;
}

.content-block:hover {
  transform: translateY(-5px);
}

.visual-element {
  width: 100%;
  height: 180px; /* Fixed height for visuals */
  object-fit: cover; /* Cover the area, cropping if necessary */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.text-area {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allow content to grow */
}

.sub-info {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.4;
}

.main-text {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .content-block {
    width: calc(50% - 10px); /* 2 items per row */
  }
}

@media (max-width: 768px) {
  .content-block {
    width: 100%; /* 1 item per row */
  }
  .primary-heading {
    font-size: 2rem;
  }
}





/* ================================================================ */





 .wthr_bdy_0925 {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      padding: 20px;
    }

    .wthr_hdng_0925 {
      text-align: center;
      margin-bottom: 30px;
    }

    .wthr_para_0925 {
      margin: 0 auto 40px auto;
      line-height: 1.8;
      font-size: 16px;
      color: #333;
    }

    .wthr_grid_0925 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
    }

    .wthr_card_0925 {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .wthr_card_title_0925 {
      margin: 0;
      padding: 12px 16px;
      background: #c9c200;
      color: white;
      font-size: 18px;
    }

    .wthr_map_0925 {
      height: 250px;
    }

    .wthr_info_0925 {
      padding: 12px 16px;
      background: #f9f9f9;
      border-top: 1px solid #eee;
      font-size: 14px;
    }


    /* cards weter section  ========================================================= */




    


.travelcardx-section {
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
}

.travelcardx-container {
  max-width: 1200px;
  margin: 0 auto;
}

.travelcardx-heading {
  font-size: 26px;
  font-weight: bold;
  margin: 40px 0 20px;
  color: #111;
}

.travelcardx-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.travelcardx-card {
  flex: 1 1 300px;
  max-width: 100%;
}

.travelcardx-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.travelcardx-sub {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
}

.travelcardx-title {
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
  color: #111;
}

.travelcardx-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .travelcardx-grid {
    flex-direction: column;
  }
}




.cardffff-section {
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
}

.cardffff-container {
  margin: 0 auto;
}

.cardffff-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #111;
}

.cardffff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.cardffff-card {
  flex: 1 1 300px;
  max-width: 100%;
}

.cardffff-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.cardffff-sub {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.cardffff-title {
  font-size: 20px;
  font-weight: bold;
  margin: 8px 0 0;
  color: #111;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cardffff-grid {
    flex-direction: column;
  }
}




.ffwfw-section {
  background-color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.ffwfw-container {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.ffwfw-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #111;
}

.ffwfw-grid {
  display: flex;
  gap: 60px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}

.ffwfw-column {
  min-width: 180px;
  flex-shrink: 0;
}

.ffwfw-state {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.ffwfw-column p {
  margin: 6px 0;
  color: #444;
  font-size: 15px;
  white-space: nowrap;
}






.textwwww-section {
  background-color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.textwwww-container {
  margin: 0 auto;
  color: #111;
}

.textwwww-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.textwwww-subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}

.textwwww-para {
  font-size: 15px;
  margin-bottom: 16px;
  color: #222;
}

.textwwww-para a {
  color: #0033cc;
  text-decoration: underline;
}



.wwwwasd-section {
  background-color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.wwwwasd-container {
  max-width: 900px;
  margin: 0 auto;
}

.wwwwasd-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #111;
}

.wwwwasd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px 32px;
}

.wwwwasd-grid span {
  font-size: 15px;
  color: #222;
  white-space: nowrap;
}


.abuvfooter-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.abuvfooter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.abuvfooter-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.abuvfooter-card:hover {
  transform: scale(1.02);
}

.abuvfooter-card img {
  width: 100%;
  height: auto;
  display: block;
}

.abuvfooter-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #000;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 3px;
}

.abuvfooter-source {
  font-size: 13px;
  color: #555;
  padding: 10px 15px 0 15px;
}

.abuvfooter-title {
  font-size: 15px;
  font-weight: 600;
  padding: 6px 15px 15px 15px;
  color: #111;
  line-height: 1.4;
}
















.footerrb {
  background-color: #676767;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-box {
  flex: 1 1 200px;
  min-width: 220px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.logo .dot {
  color: #facc15; /* yellow dot */
  font-size: 32px;
}

.footer-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-box p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 15px;
}

.footer-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

.footer-btn:hover {
  background-color: #e5e5e5;
}

.links a {
  display: block;
  margin-bottom: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #999999;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}