* {
  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.content {
  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;
}





/** Registration **/

/* General Section Styling */
.registration-step {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.registration-step h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #9f0910;
  margin-bottom: 25px;
  font-family: Philosopher;
}

/* Tabs Container */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Tab Buttons */
.tab {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #f1f1f1;
  color: #333;
  transition: all 0.3s ease;
}

.tab:hover {
  background-color: #e0e0e0;
}

/* Active Tab */
.tab.active {
  background-color: #9f0910;
  color: #fff;
  font-weight: 500;
}

/* Green Tab (Current Step) */
.tab.green {
  background-color: #4caf50;
  color: white;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .registration-step h2 {
    font-size: 1.5rem;
  }

  .tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}


 form {
      background: #fff;
      border: 1px solid #4c9928;
      border-radius: 12px;
      padding: 25px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .head {
    color: #910f0f;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    border-bottom: 2px solid #4c9928;
    padding-bottom: 5px;
    }

    .skip-button {
    margin-top: -16px;
    background-color: #ffa425;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    left: 85%;
    width: 175px;
    height: 30px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    line-height: 30px;
    }

    .skip-button i {
      margin-left: 5px;
    }

    .list-1 {
      list-style: disc inside;
      margin: 15px 0;
      font-size: 0.95rem;
    }

    .upload-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #4c9928;
      padding-bottom: 10px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    /* Photo grid layout */
    .photos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }

    .photo-card {
      /*background: #f1f1f1;*/
      border-radius: 10px;
      padding: 10px;
      text-align: center;
      /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);*/
      position: relative;
    }

    .photo-card p {
      margin: 5px 0;
      font-size: 0.9rem;
      color: #666;
    }

    .photo-img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .photo-actions {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-left: -39px;
    }

    .delete-icon,
    .set-main,
    .main-photo {
      border-radius: 6px;
      padding: 5px 10px;
      font-size: 13px;
      color: #333;
      flex: 1;
      text-align: center;
      cursor: pointer;
    }

    .delete-icon {
      /*background: #ffefef;*/
      color: #6e6e6e;
    }

    .main-photo {
      background: #9f0910;
      color: white;
    }

    .add-photo {
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px dashed #ccc;
      border-radius: 10px;
      background: #fafafa;
      cursor: pointer;
      transition: 0.3s;
    }

    .add-photo:hover {
      border-color: #4c9928;
      background: #f3fff3;
    }

    .add-photo img {
      width: 60px;
      height: 60px;
    }

    /* Tips Section *
    .upload-section {
      font-size: 1.2rem;
      font-weight: 600;
      color: #4c9928;
      margin: 20px 0 10px;
    }

    .tips {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      margin-bottom: 30px;
    }

    .tip-card {
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 10px;
      background: #fff;
    }

    .tip-card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 8px;
    }

    .tip-card.invalid {
      opacity: 0.6;
    }*/

    /* Upload methods */
    .ways {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
      margin-top: 20px;
    }

    .email, .whatsapp {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
      min-width: 280px;
      background: #f9f9f9;
      padding: 10px;
      border-radius: 10px;
      border: 1px solid #ddd;
    }

    .email img, .whatsapp img {
      width: 50px;
      height: 50px;
    }

    .final-button {
      text-align: center;
      background: #4c9928;
      color: #fff;
      font-weight: 600;
      padding: 12px 20px;
      border-radius: 10px;
      cursor: pointer;
      margin-top: 20px;
      transition: 0.3s;
    }

    .final-button:hover {
      background: #3a7a20;
    }

    /* ===== RESPONSIVE DESIGN ===== */

    /* Tablet: 3 per row */
    @media (max-width: 1024px) {
      .photos {
        grid-template-columns: repeat(3, 1fr);
      }

      .tips {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Mobile: 2 per row */
    @media (max-width: 768px) {
      .photos {
        grid-template-columns: repeat(2, 1fr);
      }

      .tips {
        grid-template-columns: repeat(2, 1fr);
      }

      .upload-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .photo-actions {
        flex-direction: column;
        gap: 6px;
      }

      .email, .whatsapp {
        flex-direction: column;
        text-align: center;
      }
      .main-photo {
      margin-left: 37px;
      }
    }

    /* Small phones */
    @media (max-width: 480px) {
      .photos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .tips {
        grid-template-columns: repeat(2, 1fr);
      }

      .tip-card p {
        font-size: 0.8rem;
      }
    }

    

.upload-section {
  color: #a62323;
  font-weight: 600;
  border-bottom: 1px solid #9acd32;
  margin-bottom: 15px;
  padding-bottom: 5px;
  /*display: inline-block;*/
}

/* Photo Upload Tips Grid */
.tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-bottom: 30px;
}

.tip-card {
  text-align: center;
}

.tip-card img {
  width: 100%;
  /*height: 100px;
  object-fit: cover;
  border: 3px solid green;
  border-radius: 6px;
  margin-bottom: 5px;*/
}

.tip-card.invalid img {
  /*border: 3px solid red;*/
  opacity: 0.7;
}

.tip-card p {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .tip-card img {
    /*width: 80px;*/
    height: 80px;
  }
}



/* Mobile responsive only */
@media (max-width: 768px) {
  .head {
    font-size: 18px;
    text-align: center;
    padding: 12px;
    background-color: #f4f4f4;
    font-weight: 600;
  }

  .skip-button {
    text-align: center;
    display: block;
    margin: 10px auto;
    font-size: 14px;
    background: #007bff;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    width: fit-content;
  }

  .skip-button i {
    margin-left: 6px;
  }

  .list-1 {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .list-1 li {
    margin-bottom: 8px;
  }

  .upload-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .upload-header div:first-child {
    font-size: 16px;
    font-weight: 600;
  }

  .upload-header div:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    /*background: #e0f0e9;*/
    padding: 8px 14px;
    border-radius: 8px;
  }

  .upload-header img {
    width: 24px;
    height: 24px;
  }
}



/* Base styles */
.info-section {
  text-align: center;
  padding: 20px;
  font-family: "Poppins", sans-serif;
}

.note {
  color: #555;
  font-size: 15px;
  /*background: #fff8e1;
  border: 1px solid #ffe082;*/
  border-radius: 8px;
  padding: 12px 15px;
  display: inline-block;
  max-width: 90%;
  line-height: 1.5;
  margin-bottom: 20px;
}

.final-button {
  background: #c32c20;
  color: white;
  font-size: 16px;
  padding: 12px 258px;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}

.final-button:hover {
  background: #0056b3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .info-section {
    padding: 15px;
  }

  .note {
    font-size: 14px;
    padding: 10px 12px;
  }

  .final-button {
    width: 100%;
    font-size: 15px;
    padding: 14px 0;
  }
}




/* Overall Section Styling */
.maratha-lagin-sarai {
  /*padding: 50px 0;
  background: #fafafa;*/
  font-family: "Arial", sans-serif;
  line-height: 1.7;
  color: #333;
}

/* Container */
.maratha-lagin-sarai .container {
  max-width: 900px;
  margin: auto;
}

/* Headings */
.maratha-lagin-sarai h1,
.maratha-lagin-sarai h2,
.maratha-lagin-sarai h3,
.maratha-lagin-sarai h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #b32025;  /* Maroon-style theme */
}

.maratha-lagin-sarai h1 {
  font-size: 28px;
}

.maratha-lagin-sarai h2 {
  font-size: 24px;
}

.maratha-lagin-sarai h3 {
  font-size: 20px;
}

.maratha-lagin-sarai h4 {
  font-size: 18px;
}

/* Paragraphs */
.maratha-lagin-sarai p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Lists */
.maratha-lagin-sarai ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.maratha-lagin-sarai ul li {
  margin-bottom: 8px;
  list-style: disc;
}

/* Phone Links */
.maratha-lagin-sarai a[href^="tel"] {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.maratha-lagin-sarai a[href^="tel"]:hover {
  text-decoration: underline;
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
  .maratha-lagin-sarai h1 {
    font-size: 24px;
  }

  .maratha-lagin-sarai h2 {
    font-size: 20px;
  }

  .maratha-lagin-sarai h3 {
    font-size: 18px;
  }

  .maratha-lagin-sarai .container {
    padding: 0 15px;
  }
}



/* Make image responsive */
.responsive {
    width: 100%;
    height: auto;
}

/* Desktop banner visible by default */
.desktop-banner {
    display: block;
}

/* Mobile banner hidden by default */
.mobile-banner {
    display: none;
}

/* Show mobile banner on screens smaller than 768px */
@media (max-width: 767px) {
    .desktop-banner {
        display: none;
    }
    .mobile-banner {
        display: block;
    }
}




    
