.elementor-kit-9480{--e-global-color-primary:#005AAB;--e-global-color-secondary:#6ECFF6;--e-global-color-text:#000000;--e-global-color-accent:#FF7900;--e-global-color-800c245:#FFD34B;--e-global-color-1f28436:#00BDA3;--e-global-color-58e6423:#C8F7FF;--e-global-color-8cc1db1:#FFFFFF;--e-global-color-704a42f:#00B6FF;--e-global-color-4ec3ea5:#FFD2AA;--e-global-color-ee3c5b3:#64E7FF;--e-global-typography-primary-font-family:"Ubuntu";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Ubuntu";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Ubuntu";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Ubuntu";--e-global-typography-accent-font-weight:500;--e-global-typography-49a115e-font-family:"Droid Arabic Kufi";--e-global-typography-49a115e-font-size:16px;--e-global-typography-49a115e-font-weight:300;--e-global-typography-7f2f8ef-font-family:"Ubuntu";--e-global-typography-7f2f8ef-font-size:65px;--e-global-typography-7f2f8ef-font-weight:500;}.elementor-kit-9480 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Ensure the Main Container Stretches All Cards */
.gv-diy-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch; /* Ensure all cards stretch to the same height */
}

/* Each Entry Becomes a Grid Item */
.gv-diy-view {
  width: calc(33.33% - 20px); /* 3 columns */
  display: flex;
  flex-direction: column;
}

/* Ensure the Card Stretches and Has Minimum Height */
.gv-card {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  position: relative; /* Required for badge positioning */
  height: 100%; /* Stretches to match */
  min-height: 250px; /* Ensures a reasonable minimum height */
  padding-top: 35px; /* Push title lower to avoid overlap */
}

/* Push Read More Button to Bottom */
.gv-card p {
  flex-grow: 1; /* Pushes content upwards */
}

/* Ensure All Cards Have Equal Height */
.gv-diy-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Ensure .gv-card Fills Entire Height */
.gv-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Hover effect */
.gv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Badge Styling - Fixed Size & Position */
.gv-badge {
  background: #df8000; /* Orange Badge */
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-block;
  position: absolute;
  top: 8px; /* Move it slightly higher */
  right: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

/* Title Color Updated */
.gv-card h3 {
  color: #005aab; /* Blue Title */
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  margin-top: 5px; /* Adds space below the badge */
}

/* Read More Button */
.read-more-container a {
  display: inline-block;
  color: #df8000; /* Match Badge Color */
  font-weight: bold;
  margin-top: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border: 2px solid #df8000;
  border-radius: 5px;
  transition: 0.3s;
  text-align: center;
  margin-top: auto; /* Forces button to stay at the bottom */
}

.read-more-container a:hover {
  background: #df8000;
  color: white;
  text-decoration: none;
}

/* Responsive - 2 Columns on Medium Screens */
@media (max-width: 1024px) {
  .gv-diy-view {
    width: calc(50% - 20px);
  }
}

/* Responsive - 1 Column on Small Screens */
@media (max-width: 600px) {
  .gv-diy-view {
    width: 100%;
  }
}





/* Center the Single Entry Container */
.gv-diy-container.gv-diy-single-container,
.gv-single-entry {
  width: 100%;
  max-width: 1000px; /* Adjust width if needed */
  margin: 0 auto; /* Centers the entire entry */
  padding: 40px;
  box-sizing: border-box;
  background: #f0f5fa; /* Light blue background */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header with logo and info */
.gv-single-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logo Section */
.gv-single-logo {
  max-width: 300px;
  width: 100%;
  flex-shrink: 0;
}

.gv-single-logo img {
  width: 100%;
  height: auto;
  max-width: 300px;
  display: block;
  border-radius: 12px;
  background: white;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  object-fit: contain;
}

/* Info Section */
.gv-single-info {
  flex: 1;
  text-align: left;
}

.gv-single-info h1 {
  font-size: 32px;
  color: #005aab; /* SIHAA Blue */
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0;
}

.gv-single-info p {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

.gv-single-info i {
  color: #df8000; /* SIHAA Orange */
  margin-right: 8px;
}

.gv-single-info a {
  color: #df8000;
  text-decoration: none;
  font-weight: bold;
}

.gv-single-info a:hover {
  text-decoration: underline;
}

/* Content Section */
.gv-single-content {
  margin-top: 40px;
  text-align: left;
}

.gv-single-content h2 {
  color: #005aab;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
}

.gv-single-content p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .gv-diy-container.gv-diy-single-container,
  .gv-single-entry {
    max-width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .gv-single-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gv-single-info {
    text-align: center;
  }

  .gv-single-content {
    text-align: center;
  }
}/* End custom CSS */