* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f8a621;
  --green: #2f9e44;
  --maroon: #9b1c1c;
  --dark: #222;
  --gap: 16px;
  font-family: "Poppins", "Philosopher", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}



/* scusess story section */
 h1 {
      text-align: center;
      margin-bottom: 20px;
      color :#9f0910;
      font-family: Philosopher-Bold;
    }

    /* Grid layout */
    #cards-wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto 30px;
    }

    .success-card {
      background: #ffedd5;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .success-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

    .success-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .success-card h4 {
      margin: 10px 15px 5px;
      font-size: 14px;
      color: #666;
      text-align: center;
    }

    .success-card h3 {
      margin: 2px 15px;
      font-size: 18px;
      text-transform: uppercase;
      text-align: center;
      color: #9f0910;
    }

    .success-card p {
      margin: 10px 15px 15px;
      font-size: 14px;
      line-height: 1.4;
      color: #444;
      text-align: center;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .my-button {
      background: #fff;
      border: 1px solid #ccc;
      padding: 6px 12px;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .my-button:hover {
      background: #f0f0f0;
    }

    .page-text {
      font-size: 14px;
      color: #666;
    }

    .page-input {
      width: 60px;
      padding: 6px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      #cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      #cards-wrapper {
        grid-template-columns: 1fr;
      }
    }


.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* Button styling */
.my-button {
  background-color: maroon;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 16px; /* Medium size */
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.my-button:hover {
  background-color: darkred;
}

/* Optional: Style for the text like "of" and "jump to page" */
.page-text {
  font-size: 16px;
  margin: 0 6px;
}

/* Input box styling */
.page-input {
  width: 60px;
  padding: 6px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}



 /* Initially hide the mobile menu */
        #mobile-menu {
            display: none;
            overflow-x: hidden;
        }

            /* Show the mobile menu when the 'open' class is added */
            #mobile-menu.open {
                display: block;
                position: fixed; /* You can change this based on how you want the menu to appear */
                top: 0;
                left: 0;
                width: 250px !important;
                height: 100%;
                background-color: white; /* Adjust as needed */
                z-index: 9999;
            }

        /* Optional: Add a transition for smooth opening/closing */
        #mobile-menu {
            transition: transform 0.3s ease-in-out;
        }

            /* Optional: When open, move the menu into view (if you want a sliding effect) */
            #mobile-menu.open {
                transform: translateX(0); /* Move into view */
            }

        ul.side-nav {
            list-style: none;
            padding: 0;
           
            width: 100%;
        }


        .u-header .u-menu-close-1 {
            
            margin-bottom: 0;
        }

        .menu-logo {
            width: 100%;
            text-align: center;
            margin-bottom: 15px;
        }

            .menu-logo img {
                margin-top:20px;
                max-width: 238px; /* Adjust logo size */
                height: auto;
            }
           

        .follow-us-on {
            margin-top: 15px;
            position:relative;
            font-size: 24px;
            text-align: center;
            margin-left: -120px;
        }
        .follow-section {
            margin-top: auto; /* Push it to the bottom */
            text-align: center;
            width: 100%;
        }



/* ===== Responsive Breakpoints ===== */

/* Large Tablets (max 1024px) */
@media (max-width: 1024px) {
  #cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (max 768px) */
@media (max-width: 768px) {
  #cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .success-card img {
    height: 220px;
  }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  #cards-wrapper {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  .success-card img {
    height: 300px;
  }
}

 .my-button {
  background-color: maroon;
  color: white;
  border: none;
  padding: 5px 8px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.pagination {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 10px;
  flex-direction: row;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pagination::-webkit-scrollbar {
  display: none;
}

.page-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 37px;
}

.jump-section {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.page-input {
  width: 60px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
  text-align: center;
}

/* 🔹 Mobile responsive */
@media (max-width: 600px) {
  .pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  .jump-section {
    margin-left: 90px;
    margin-top: 8px;
  }
}



/*---contact---*/
  /* General Section Styles */
section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
 
}

h1 {
  text-align: center;
  color: maroon;
  margin-bottom: 10px;
  font-size: 36px;
}

h5 {
  color: maroon;
  font-size: 20px;
  margin-bottom: 10px;
}

hr {
  border: none;
  height: 3px;
  width: 80px;
  background-color: maroon;
  margin: 10px 0 25px;
}

/* Contact Container Grid */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 30px;
}

/* Contact Info */
.contact-info {
  font-size: 17px;
  line-height: 1.8;
}

.contact-info p {
  margin: 6px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  font-size: 18px;
  color: maroon;
  margin-right: 10px;
  width: 25px;
  text-align: center;
}

.phone-section,
.email-section,
.address-section {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: #fafafa;
}

.email-section a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.email-section a:hover {
  color: maroon;
  text-decoration: underline;
}

/* Map & Social Links */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.map-section {
  padding: 20px;
  flex: 1 1 300px;
}

.map-section h5{
  margin: 0 0 10px;
  font-size: 20px;
  color: #7e1008;
}


.map-section hr,
.social-links hr {
  margin-bottom: 15px;
  border: 0;
  border-top: 1px solid #ddd;
}

.map-section iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

.social-links {
  margin-top: -150px;
  margin-left: 23px;
}

.social-links p {
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: #7e1008;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #005bb5;
}

/* Responsive: Mobile */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  h5 {
    text-align: center;
  }

  hr {
    margin: 10px auto 25px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

.map-section iframe {
    height: 250px;
  }

  .social-links p {
    justify-content: center;
  }
  .social-links {
  margin-top: 11px;
  margin-left: 2px;
  display: none;
}

}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h5 {
    font-size: 18px;
    margin-top: -33px;
    margin-left: -39px;
    margin-right: 20px;

  }

  .section {
    margin-top: -39px;
}
  .phone-section,
  .email-section,
  .address-section {
   /* padding: 10px;*/
    width: 315px;
    margin-left: -29px;
    margin-bottom: 25px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

.map-section {
    width: 375px;
    margin-left: -58px;
}
}



.phone-section {
      background: #fafafa;
      padding: 20px 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .phone-section h2 {
      /*text-align: center;*/
      color: #333;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .phone-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 20px;
    }

    .phone-item {
      display: flex;
      align-items: center;
      font-size: 1rem;
      color: #444;
    }

    .phone-item i {
      color: #800000;
      margin-right: 8px;
      font-size: 1.1rem;
    }

    
section#sec-74eb {
    margin-top: -70px;
}
