/* ====== General Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f4f4;
  font-family: sans-serif;
}
/* Container */
/* --- Base Container --- */
.gf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}

/* --- Top small bar --- */
.gf-topbar {
  border-bottom: 1px solid #e4e4e4;
  font-size: 0.9rem;
  color: #555;

}

.gf-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.gf-topbar .gf-tagline {
  font-style: italic;
  color: #666;
}

.gf-social a {
  color: #888;
  margin-left: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.gf-social a:hover {
  color: #e32d2d;
}

/* --- Middle Section --- */
.gf-midbar {
  border-bottom: 1px solid #eee;
  padding: 18px 0;

}

.gf-midbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.gf-logo img {
  height: 70px;
  max-width: 100%;
}

.gf-contact-info {
  display: flex;
  gap: 40px;
}

.gf-info-box h5 {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 4px;
  font-weight: 600;
  border-right: 1px solid #ddd;
  padding-right: 15px;
  white-space: nowrap;
}

.gf-info-box:last-child h5 {
  border-right: none;
}

.gf-info-box p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  white-space: nowrap;
}

/* --- Navigation Bar --- */
.gf-navbar {
  background-color: #e32d2d;
  text-align: center;
   height: 50px; /* increased height */
}

.gf-navbar .gf-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}

.gf-nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.gf-nav-links li {
  margin: 0;
}

.gf-nav-links li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
}

.gf-nav-links li a:hover
{
  background: #b60000;
}
.gf-nav-links li a:active {
   background: #b60000;
   color: #111;
}

/* --- Translate Dropdown --- */
.gf-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
/* Container for translate */
/* Container */
.gf-translate-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px; /* match navbar height */
}

/* Remove all Google extras */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget-icon {
  display: none !important;
}

/* Keep only the select dropdown */
#google_translate_element {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* Tighten structure */
#google_translate_element .goog-te-gadget {
  font-size: 0 !important;
  line-height: 0 !important;
}

/* Style the dropdown */
#google_translate_element select {
  height: 30px !important;
  padding: 4px 8px !important;
  font-size: 13px !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #b60000 !important;
  border: none !important;
  cursor: pointer;
  line-height: 1 !important;
  margin: 0 !important;
  outline: none !important;       /* removes the blue outline */
  box-shadow: none !important;    /* removes any glow or shadow */
  appearance: none !important;    /* removes native styling (optional) */
}


/* --- Hamburger Menu --- */
.gf-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.gf-hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* --- Responsive --- */
/* Mobile Phones */
@media (max-width: 768px) {
  .gf-topbar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  .gf-midbar {
    padding: 12px 0;
  }

  .gf-logo img {
    height: 55px;
  }

  /* Hide contact info */
  .gf-contact-info {
    display: none;
  }

  /* Navbar adjustments */

/* --- Fix Mobile Navbar + Translate --- */
@media (max-width: 768px) {
  /* Full red bar visible */
  .gf-navbar {
    position: relative;
    background-color: #e32d2d !important;
    z-index: 999;
    padding: 14px 0; /* ensures red area around hamburger */
  }

  /* Hamburger visible, inside the red bar */
  .gf-hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%); /* centers vertically inside bar */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
  }

  .gf-hamburger span {
    height: 3px;
    background: #fff;
    border-radius: 2px;
    width: 100%;
  }

  /* Collapsed menu */
  .gf-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #e32d2d;
    text-align: left;
    transition: all 0.3s ease;
  }

  /* Open state */
  .gf-nav-links.active {
    display: flex;
  }

  .gf-nav-links li a {
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
  }

  /* Hide translate by default */
  .gf-right {
    display: none;
  }

  /* Show translate inside dropdown */
  #google_translate_element {
    display: block !important;
    background: #b60000;
    padding: 10px 20px;
    text-align: left;
  }

  #google_translate_element select {
    background: #b60000;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 4px 8px;
    font-size: 13px;
    cursor: pointer;
  }
}


}


/* ---------------------------------- */
/* HERO SLIDER */
/* ---------------------------------- */
/* ============================= */
/* HERO SLIDER BASE STYLES */
/* ============================= */

.gf-hero-slider {
  position: relative;
  width: 100%;
  height: 70vh; /* slightly taller for desktop */
  overflow: hidden;
  margin: 0;
}

.gf-hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gf-hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gf-hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.gf-hero-slider .slide-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  z-index: 3;
}

.gf-hero-slider .slide-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
  word-wrap: break-word;
}

.gf-hero-slider .slide-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.gf-hero-slider .slide-content .btn {
  padding: 12px 30px;
  background-color: #fcb900;
  color: #002366;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}

.gf-hero-slider .slide-content .btn:hover {
  background-color: #e0a800;
}

/* ============================= */
/* SLIDER NAVIGATION */
/* ============================= */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 4;
  padding: 0 15px;
   font-size: 1rem;
   color: transparent;
}

.slider-nav button {
  background: transparent;
  border: none;
  color: transparent;
  font-size: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
  .gf-hero-slider {
    height: 60vh;
  }

  .gf-hero-slider .slide-content h1 {
    font-size: 2.5rem;
  }

  .gf-hero-slider .slide-content p {
    font-size: 1.1rem;
  }

  .slider-nav button {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    
  }
  .slider-nav {
      display: none;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .gf-hero-slider {
    height: 50vh;
  }

  .gf-hero-slider .slide-content {
    padding: 0 15px;
  }

  .gf-hero-slider .slide-content h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .gf-hero-slider .slide-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .gf-hero-slider .slide-content .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
 .slider-nav {
      display: none;
  }
  .slider-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
   
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .gf-hero-slider {
    height: 45vh;
  }

  .gf-hero-slider .slide-content h1 {
    font-size: 1.5rem;
  }

  .gf-hero-slider .slide-content p {
    font-size: 0.85rem;
  }

  .gf-hero-slider .slide-content .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .slider-nav button {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

/* Extra Small (Tiny screens below 360px) */
@media (max-width: 360px) {
  .gf-hero-slider {
    height: 40vh;
  }

  .gf-hero-slider .slide-content h1 {
    font-size: 1.3rem;
  }

  .gf-hero-slider .slide-content p {
    font-size: 0.8rem;
  }

  .gf-hero-slider .slide-content .btn {
    padding: 7px 15px;
    font-size: 0.8rem;
  }

  .slider-nav button {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}


/* ============================= */
/* INFO SECTION BASE */
/* ============================= */
.gf-info-section {
  position: relative;
  z-index: 10;
  margin-top: -70px; /* overlap hero slightly */
  margin-bottom: -40px;
  background: transparent;
}

.gf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.info-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.info-col {
  flex: 1 1 0;
  min-width: 250px;
}

.info-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  cursor: pointer;
}

/* Red overlay */
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#c91f1f, #d73737);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Top band */
.info-top {
  height: 34px;
  background: linear-gradient(#c91f1f, #d73737);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  position: relative;
  z-index: 3;
  transition: background 0.4s ease;
}

/* Icon */
.info-icon {
  position: absolute;
  top: 90%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c91f1f;
  font-size: 24px;
  transition: all 0.4s ease;
  z-index: 4;
}

/* Card body */
.info-body {
  padding: 36px 18px 20px;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.info-title {
  margin: 6px 0;
  font-size: 14px;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: #c91f1f;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.info-sub {
  margin: 0;
  font-size: 12px;
  color: #777;
  transition: color 0.4s ease;
}

/* Hover + Active (tap) effects */
.info-card:hover::before,
.info-card.active::before {
  opacity: 1;
}

.info-card:hover .info-icon,
.info-card.active .info-icon {
  transform: translate(-50%, -80%);
  background: #fff;
  color: #c91f1f;
}

.info-card:hover .info-title,
.info-card.active .info-title,
.info-card:hover .info-sub,
.info-card.active .info-sub {
  color: #fff;
}

.info-card:hover .info-top,
.info-card.active .info-top {
  background: #fff;
}

/* ============================= */
/* RESPONSIVE STYLES */
/* ============================= */

/* Large Tablets */
@media (max-width: 1024px) {
  .gf-info-section {
    margin-top: -50px;
  }
  .info-row {
    gap: 16px;
  }
  .info-card {
    flex: 1 1 45%;
  }
  .info-icon {
    top: 85%;
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .gf-info-section {
    margin-top: -40px;
  }
  .info-row {
    gap: 12px;
  }
  .info-card {
    flex: 1 1 48%;
  }
  .info-body {
    padding-top: 34px;
    padding-bottom: 18px;
  }
  .info-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Mobile Phones */
@media (max-width: 640px) {
  .gf-info-section {
    margin-top: -25px;
    margin-bottom: 0;
    padding: 0 10px;
    overflow-x: hidden;
  }

  .info-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .info-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 8px;
  }

  .info-icon {
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .info-body {
    padding: 26px 14px 18px;
  }

  .info-title {
    font-size: 13px;
  }

  .info-sub {
    font-size: 11px;
  }
}

/* Extra Small Screens */
@media (max-width: 400px) {
  .gf-info-section {
    margin-top: -20px;
    padding: 0 8px;
  }

  .info-card {
    max-width: 290px;
  }

  .info-icon {
    top: 76%;
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .info-body {
    padding: 22px 10px 16px;
  }

  .info-title {
    font-size: 12px;
  }

  .info-sub {
    font-size: 10px;
  }
}

  


/* ---------------------------------- */
/* TRACKING SECTION */
/* ============================= */
/* TRACKING SECTION BASE */
/* ============================= */
.gf-tracking-section {
  position: relative;
  padding: 40px 0;
  background-color: #f4f4f4;
}

.gf-tracking-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ============================= */
/* LEFT IMAGE */
/* ============================= */
.gf-tracking-imageleft {
  flex: 1 1 50%;
}

.gf-tracking-imageleft img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

/* ============================= */
/* RIGHT FORM */
/* ============================= */
.gf-tracking-form-right {
  flex: 1 1 40%;
  background: #fff;
  padding: 24px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  align-self: center;
}

.gf-tracking-form-right h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 16px;
}

.gf-tracking-form-right .form-col h4 {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.4;
}

.gf-tracking-form-right .form-group {
  margin-bottom: 15px;
}

.gf-tracking-form-right .gf-form-group textarea,
.gf-tracking-form-right input[type="text"],
.gf-tracking-form-right input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  box-sizing: border-box;
}

.gf-tracking-form-right .gf-form-group textarea {
  height: 90px;
}

.gf-tracking-form-right button {
  margin-top: 8px;
  padding: 12px 0;
  width: 100%;
  font-size: 1rem;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gf-tracking-form-right button:hover {
  background: #066bd6;
}

/* ============================= */
/* RESPONSIVE STYLES */
/* ============================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .gf-tracking-wrapper {
    gap: 30px;
  }
  .gf-tracking-form-right {
    padding: 22px 24px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .gf-tracking-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .gf-tracking-imageleft,
  .gf-tracking-form-right {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .gf-tracking-form-right {
    margin-top: 10px;
  }
  .gf-tracking-form-right h2 {
    font-size: 1.6rem;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .gf-tracking-section {
    padding: 30px 0;
  }
  .gf-tracking-wrapper {
    padding: 0 16px;
    gap: 24px;
  }
  .gf-tracking-form-right {
    padding: 18px 20px;
  }
  .gf-tracking-form-right h2 {
    font-size: 1.4rem;
  }
  .gf-tracking-form-right .form-col h4 {
    font-size: 1rem;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .gf-tracking-section {
    padding: 24px 0;
  }
  .gf-tracking-wrapper {
    gap: 20px;
  }
  .gf-tracking-imageleft img {
    border-radius: 6px;
  }
  .gf-tracking-form-right {
    padding: 16px 18px;
  }
  .gf-tracking-form-right h2 {
    font-size: 1.2rem;
    text-align: center;
  }
  .gf-tracking-form-right .form-col h4 {
    font-size: 0.95rem;
    text-align: center;
  }
  .gf-tracking-form-right button {
    font-size: 0.95rem;
    padding: 10px;
  }
}

/* Extra Small Screens */
@media (max-width: 400px) {
  .gf-tracking-form-right {
    padding: 14px;
  }
  .gf-tracking-form-right h2 {
    font-size: 1rem;
  }
  .gf-tracking-form-right .form-col h4 {
    font-size: 0.9rem;
  }
  .gf-tracking-form-right button {
    font-size: 0.9rem;
  }
}

/* ---------------------------------- */
/* EASY DELIVERY SECTION */
/* ---------------------------------- */
/* EASY DELIVERY SECTION */
.gf-easy-delivery {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 600px; /* controls the overall height */
  padding: 60px 0; /* space for top heading and bottom background */
}

.gf-easy-delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay */
  z-index: 1;
}

/* heading stays on top */
.gf-easy-delivery h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}
.gf-easy-delivery hr {
  width: 80px;
  height: 3px;
  background-color: #c8102e;
  border: none;
  margin: 20px auto;
}

/* wrapper for cards centered vertically */
.gf-delivery-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center content */
  align-items: center;
  width: 100%;
  max-width: 100%; /* take full width of the parent */
  margin: 0;
  padding: 0;
  gap: 0; /* remove any spacing */
}

.gf-card {
  position: relative;
  flex: 1 1 25%; /* 4 equal columns full width */
  border-radius: 0; /* make edges flush if desired */
  overflow: hidden;
  cursor: pointer;
  height: 280px;
  transition: transform 0.3s ease;
}

.gf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gf-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.gf-card:hover img {
  transform: scale(1.1);
}

.gf-card:hover .overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .gf-card { flex: 1 1 48%; height: 260px; }
}

@media (max-width: 768px) {
  .gf-card { flex: 1 1 100%; height: 240px; }
}
/* --- Responsive adjustments --- */
@media (max-width: 992px) {
  .gf-delivery-cards {
    gap: 10px; /* add small gap between cards */
    padding: 0 10px;
  }

  .gf-card {
    flex: 1 1 48%; /* 2 per row on tablets */
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .gf-card {
    flex: 1 1 100%; /* 1 per row on mobile */
    height: 250px;
  }
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */
.gf-about-banner {
  padding: 100px 0;
  position: relative;
  background-color: #fff;
}

.gf-about-banner .gf-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* About Text */
.gf-about-text {
  text-align: center;
  color: #3a3636;
  margin-bottom: 60px;
}

.gf-about-text hr {
  width: 80px;
  height: 3px;
  background-color: #c8102e;
  border: none;
  margin: 20px auto;
}

.gf-about-text h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.gf-about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
  color: #535353;
}

/* ============================= */
/* FEATURE BOXES */
/* ============================= */
.gf-about-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.feature-box {
  position: relative;
  flex: 1 1 250px;
  min-width: 250px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.feature-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
  transition: filter 0.3s ease;
}

.feature-box .det {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 30px 20px;
  border-radius: 0 0 10px 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.feature-box .det i {
  color: #e60000;
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: inline-block;
}

.feature-box .det h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #111;
}

.feature-box .det p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box:hover img {
  filter: brightness(50%);
}

/* ============================= */
/* RESPONSIVE BREAKPOINTS */
/* ============================= */

/* Large Tablets / Laptops */
@media (max-width: 1200px) {
  .gf-about-banner {
    padding: 80px 0;
  }
  .gf-about-text h2 {
    font-size: 2.4rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .gf-about-banner {
    padding: 70px 0;
  }
  .gf-about-text h2 {
    font-size: 2.2rem;
  }
  .gf-about-text p {
    font-size: 1rem;
  }
  .feature-box {
    flex: 1 1 45%;
  }
  .feature-box img {
    height: 200px;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .gf-about-banner {
    padding: 60px 0;
  }
  .gf-about-text h2 {
    font-size: 1.5rem;
  }
  .gf-about-text p {
    font-size: 0.98rem;
  }
  .feature-box {
    flex: 1 1 100%;
  }
  .feature-box img {
    height: 180px;
  }
  .feature-box .det {
    padding: 24px 16px;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .gf-about-banner {
    padding: 50px 0;
  }
  .gf-about-text {
    margin-bottom: 40px;
  }
  .gf-about-text h2 {
    font-size: 1rem;
  }
  .gf-about-text p {
    font-size: 0.95rem;
  }
  .feature-box img {
    height: 160px;
  }
  .feature-box .det h4 {
    font-size: 1rem;
  }
  .feature-box .det p {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .gf-about-banner {
    padding: 40px 0;
  }
  .gf-about-text h2 {
    font-size: 1rem;
  }
  .gf-about-text p {
    font-size: 0.9rem;
  }
  .feature-box img {
    height: 140px;
  }
  .feature-box .det {
    padding: 18px 12px;
  }
}
/* counters */
.gf-counters {
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
}

.gf-counters::before {
  content: "";
  position: absolute;
  inset: 0;
}

.gf-counters > * {
  position: relative;
  z-index: 2;
}

.gf-counters h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.gf-counters hr {
  width: 80px;
  height: 3px;
  background-color: #c8102e;
  border: none;
  margin: 20px auto;
}

.gf-counters p {
  color: #535353;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 50px;
  word-wrap: break-word;
}

/* Counter container wrapper */
.gf-counters .gf-count-container {
  display: inline-block;
  margin: 0 25px 30px;
  text-align: center;
  max-width: 250px;
  vertical-align: top;
  word-wrap: break-word;
}

/* Icon + number alignment */
/* Icon + number alignment */
.gf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between icon and number */
  border-radius: 10px;
  padding: 20px 30px;
  transition: all 0.3s ease;
  word-wrap: break-word;
  flex-wrap: nowrap; /* keep icon + number in one line */
}

.gf-icon i {
  font-size: 20px; /* larger for visual balance */
  color: #c8102e;
}

.gf-icon h3 {
  font-size: 35px;
  font-weight: 700;
  color: #c8102e;
  margin: 0;
  line-height: 1;
  text-align: left;
}


/* Label under each icon-number pair */
.gf-count-container p {
  font-size: 15px;
  letter-spacing: 1px;
  color: #2b2b2b;
  margin-top: 10px;
  font-weight: 800;
  word-wrap: break-word;
}

/* Hover effect */
.gf-count-container:hover .gf-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
  .gf-counters {
    padding: 60px 15px;
  }
  .gf-counters h3 {
    font-size: 28px;
  }
  .gf-icon h3 {
    font-size: 30px;
  }
  .gf-counters .gf-count-container {
    margin: 20px 15px;
  }
}

@media (max-width: 768px) {
  .gf-counters .gf-count-container {
    display: block;
    margin: 20px auto;
    width: 90%;
    max-width: 280px;
  }
  .gf-icon {
    flex-direction: column;
    gap: 8px;
    padding: 15px 20px;
  }
  .gf-icon h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .gf-counters {
    padding: 50px 10px;
  }
  .gf-counters h3 {
    font-size: 24px;
  }
  .gf-icon h3 {
    font-size: 26px;
  }
  .gf-count-container p {
    font-size: 14px;
  }
}


/* more offers */
.gf-more-offers {
  padding: 80px 0;
  background-color: #fff;
}
.gf-container hr {
  width: 80px;
  height: 2px;
  background-color: #c8102e;
  border: none;
  margin: 20px auto;
}

.gf-more-offers .gf-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gf-more-offers h2 {
  font-size: 2rem;
  color: #3a3636;
  font-weight: 700;
  margin-bottom: 20px;
}

.gf-more-offers p {
  font-size: 1rem;
  color: #535353;
  margin-bottom: 50px;
  line-height: 1.6;
}

.gf-offer-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.offer-card {
  position: relative;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card .offer-content {
  padding: 20px;

}

.offer-card .offer-content h4 {
  font-size: 1.2rem;
  color: #e32d2d;
  margin-bottom: 10px;
}

.offer-card .offer-content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

/* Responsive */
@media (max-width: 992px) {
  .offer-card {
    width: 100%;
    max-width: 500px;
  }
}


/* ===== TESTIMONIALS ===== */
.gf-testimonials {
  padding: 80px 20px;
  background: #f4f4f4;
  text-align: center;
}

.gf-testimonials h2 {
  color: #535353;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.gf-testimonials p {
  color: #333;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gf-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gf-testimonial {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gf-testimonial:hover {
  transform: translateY(-5px);
}

.gf-testimonial img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.gf-testimonial h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
}

.gf-testimonial p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === Responsive Testimonials === */
@media (max-width: 992px) {
  .gf-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gf-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gf-testimonial {
    padding: 25px 15px;
  }

  .gf-testimonials h2 {
    font-size: 1rem;
  }

  .gf-testimonials p {
    font-size: 0.95rem;
  }
}

/* ===== NEWS SECTION ===== */
/* --- layout (same look as before) --- */
.news-section {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 0;
  background-color: #fff;
}

.news-header h2 { font-size: 1.8rem; color:#333; margin-bottom:5px; }
.news-header p { color:#777; margin-bottom:18px; }

.news-list { display:flex; flex-direction:column; gap:12px; align-items:center; }

.news-box {
  background: linear-gradient(to bottom,#a01818,#8a0f0f);
  color:#fff;
  border-radius:6px;
  box-shadow:0 3px 6px rgba(0,0,0,0.25);
  width: 84%;
  padding: 10px 14px;
  display:flex;
  align-items:center;
  overflow:hidden;
  position:relative;
}

.news-number {
  background:#660d0d;
  padding:4px 10px;
  border-radius:4px;
  margin-right:10px;
  font-weight:700;
  flex:0 0 auto;
}

/* text wrapper holds absolutely positioned items so they can slide */
.news-text-wrapper {
  position:relative;
  overflow:hidden;
  height:22px; /* adjust to match text size */
  flex:1 1 auto;
  will-change: transform, opacity; 
}

/* each text item is absolutely positioned */
.news-text {
  position:absolute;
  left:0;
  right:0;
  top:0;
  transform: translateY(0);
  white-space:nowrap;
  padding-right:10px;
  font-size:14px;
  display:inline-block;
}

/* incoming slides from top down to 0 (smooth + gentle bounce) */
.slide-in-down {
  animation: rollInDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* outgoing slides down and fades away smoothly */
.slide-out-down {
  animation: rollOutDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes rollInDown {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  40% {
    transform: translateY(10%);
    opacity: 1;
  }
  70% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes rollOutDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(5%);
    opacity: 0.9;
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}
/* testimonial */
.testimonial { margin-top:36px; font-size:0.9rem; color:#333; line-height:1.6; }
.testimonial strong { display:block; margin-bottom:6px; font-weight:700; }

/* ====================== MAP ====================== */
.gf-map-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gf-map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Make map smaller on mobile */
@media (max-width: 768px) {
  .gf-map-container iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .gf-map-container iframe {
    height: 280px;
  }
}

/* ====================== FOOTER ====================== */
.gf-footer {
  background-color: #333;
  color: #fff;
  padding: 60px 30px;
  font-family: Arial, sans-serif;
}

.gf-footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gf-footer-section {
  flex: 1;
  min-width: 250px;
}

.gf-footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e32d2d;
}

.gf-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gf-footer-section ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.gf-footer-section ul li i {
  margin-right: 10px;
  color: #e32d2d;
  font-size: 1rem;
}

.gf-footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.gf-footer-section ul li a:hover {
  color: #e32d2d;
}

/* Social Icons */
.gf-social-icons {
  margin-top: 10px;
}

.gf-social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.gf-social-icons a:hover {
  color: #e32d2d;
}

/* Footer bottom text */
.gf-footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

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

/* Tablets */
@media (max-width: 992px) {
  .gf-footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .gf-footer-section {
    min-width: 100%;
  }

  .gf-footer-section h3 {
    font-size: 1.2rem;
  }

  .gf-footer-section ul li {
    font-size: 0.9rem;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .gf-footer {
    padding: 40px 20px;
    text-align: left;
  }

  .gf-footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .gf-footer-section {
    min-width: 100%;
  }

  .gf-footer-section h3 {
    font-size: 1.1rem;
  }

  .gf-footer-section ul li {
    font-size: 0.85rem;
  }

  .gf-social-icons a {
    font-size: 1.3rem;
    margin-right: 10px;
  }

  .gf-footer-bottom {
    font-size: 0.75rem;
  }
}
/* Full-page overlay */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* White background */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Big blue dot */
#loading-overlay .loading-dot {
  width: 50px;
  height: 50px;
  background-color: #007bff; /* Blue */
  border-radius: 50%; /* Circle */
  animation: pulse 1s infinite ease-in-out;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.7; }
}
