* {
  margin: 0;
  padding: 0;
}

/* Floating Contact Icons */
.floating-contact-icons {
  position: fixed;
  left: 20px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chaty-channel {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}


.chaty-channel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
}

.chaty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chaty-svg svg {
  width: 50px;
  height: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-contact-icons {
    left: 15px;
    bottom: 80px;
  }

  .chaty-channel {
    width: 50px;
    height: 50px;
  }

  .chaty-svg svg {
    width: 40px;
    height: 40px;
  }
  .img_in_mb_img {
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    
    margin: 0 auto;
  }

  .img_in_mb {
    padding-left: 5%;
    padding-right: 5%;
  }

  .scoop_content_box {
    padding-top: 0%;
    padding-bottom: 0%;
  }
  .vision_content_box {
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .core-values-mobile-img {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .floating-contact-icons {
    left: 10px;
    bottom: 70px;
    gap: 0px !important;
  }

  .chaty-channel {
    width: 45px;
    height: 45px;
  }

  .chaty-svg svg {
    width: 35px;
    height: 35px;
  }
}

.cart-button {
  display: none !important;
}

/*---------another new services section styles-----------*/

.our-services-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #ffffff;
}

.our-services-section-title {
  text-align: center;
  color: #000000;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Josefin Sans";
  
}

.our-services-cards-grid {
 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px;
}

.our-services-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 38px;
  
}

.our-services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.our-services-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f0f0f0;
}

.our-services-card-content {
  padding: 30px;
}

.our-services-card-title {
  font-size: 25px;
  font-family: "Josefin Sans";
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  
}

.our-services-software-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.our-services-software-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #555;
  padding: 8px 10px;
  transition: color 0.2s ease;
  background-color: #fafafa;
  max-width: 300px;
}

.our-services-software-item:hover {
  color: #3498db;
}

.our-services-checkmark {
  width: 20px;
  height: 20px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}



.our-services-loading-indicator {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e74c3c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



@media (max-width: 768px) {
  .our-services-section-title {
    font-size: 2rem;
  }

  .our-services-software-list {
    
    grid-template-columns: repeat(3, 1fr);
  }

  .our-services-cards-grid {
    gap: 20px;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .our-services-software-list {
    grid-template-columns: 1fr;
    
  }
}

/*-------------------marriage tab section styles----------*/

/* body {font-family: Arial;} */

/* Style the tab */
.tab {
  overflow: hidden;
  
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  
}

/* Style the buttons inside the tab */
.tab button {
  

  background-color: #8bc34a;
  float: left;
  margin-left: 8px;

  margin-right: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  
  outline: none;
  cursor: pointer;
  padding: 14px 27px;
  transition: 0.3s;
  font-size: 17px;
  color: #ffffff;
}



/* Create an active/current tablink class */
.tab button.active {
  background-color: #070050e0;
 
  color: #ffffff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
 
  border-top: none;
  margin-top: 30px;
}

.marraige-tab-container {
  padding: 20px;
  background-color: #ffffff;
  padding-bottom: 0px;
}

.marriage-tab-heading {
  text-align: center;
  font-family: "Josefin Sans";
  font-size: 30px;
  font-weight: 700;
}

.marriage-tab-para {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Josefin Sans";
}

.serv_cont {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
}

/*------------about page tab styles------------*/

/* Style the tab */
.about-page-tab {
  overflow: hidden;
  display: flex;
  justify-content: center;
  max-width: 80%;
  margin: 0 auto;
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

/* Style the buttons inside the tab */
.about-page-tab button {
  
  background-color: #8bc34a;
  float: left;
  
  margin-left: 5px;
  margin-right: 5px;
  
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #ffffff;
}



/* Create an active/current tablink class */
.about-page-tab button.about-page-active {
  background-color: #070050e0;
 
  color: #ffffff;
}

/* Style the tab content */
.about-page-tabcontent {
  display: none;
  padding: 6px 12px;
  
  border-top: none;
  margin: 40px;
  padding: 40px;
  
}

.journey-heading {
  background-color: #ffffff;
  margin-bottom: 0rem;
  font-family: "Josefin Sans";
  color: #7ed957;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  padding-top: 40px;
}



.present-serving-tab-cont {
  text-align: center;
  padding-top: 40px;
  background-color: #ffffff;
  padding-bottom: 2px;
  font-family: "Josefin Sans";
}

.birth-anu-catering-section {
  height: 405px;
}

.rising-demand-sec {
  height: 418px;
}

.diwali-bakshanam-sec {
  height: 432px;
}

.virugambakkam-facility-sec {
 
  height: 464px;
}

.virugambakkam-fac-content {
  top: 10% !important;
}

.diwali-bakshanam-content {
  top: 12% !important;
}

.rising-demand-content {
  top: 13% !important;
}

.legacy-content {
  top: 18% !important;
}

.about-page-journey-content {
  width: 62% !important;
}

.birth-anu-catering-img {
  height: 92%;
}

.about-page-tab-content {
  font-family: "Josefin Sans";
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: #7ed957;
}

.about-tabs-card {
  display: flex;

  align-items: center; 
  justify-content: center;
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}



/* left image column */
.about-page-tab-left {
  flex: 0 0 55%; 
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* control image size without distortion */
.about-page-tab-left img {
  width: 100%; 
  max-width: 700px; 
  max-height: 340px; 
  height: auto;
  object-fit: cover; 
  border-radius: 25px;
  display: block;
}

/* right content column */
.about-page-tab-right {
  flex: 0 0 40%; 
  text-align: left;
  max-width: 460px;
}

/* heading style */
.about-page-tab-right h3 {
  font-family: "Josefin Sans", sans-serif;
  color: #7ed957;
  font-size: 28px;
  margin: 0 0 12px;
  line-height: 1.15;
  font-family: "Josefin Sans";
  font-weight: 700;
}



.about-page-tab-right ul li {
  margin: 8px 0;
  font-family: "Josefin Sans";
  font-size: 20px;
  color: #333;
}


.about-page-tabcontent {
  margin: 40px auto;
  padding: 30px;
 
  border-radius: 15px;
  max-width: 80%;
  border: 1px solid grey;
}

.school-event-list {
  list-style-type: disc !important;
  color: #7ed957;
}

.journey-sec--image img {
  border-radius: 25px !important;
}

.birth-anu-catering-list {
  list-style-type: disc;
  padding-left: 21px;
  color: #000000;
}

.present-serving-section-para {
  color: #000000;
}

/* Responsive: stack image above content on small screens */
@media (max-width: 900px) {
  .about-page-tab-inner {
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .about-page-tab-left,
  .about-page-tab-right {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .about-page-tab-left img {
    width: 90%;
    max-height: 300px;
    margin: 0 auto;
  }

  .about-page-tab-right h3 {
    text-align: center;
    font-size: 24px;
  }

  .about-page-tab-right ul li {
    font-size: 15px;
  }
  .about-page-journey-content {
    width: 100% !important;
  }

  .res-form-container {
    max-width: 100%;
    margin: 0px;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #d8d8d8;
    margin-top: 25px !important;
  }
}

/*---------about us page responsive----------*/

@media (max-width: 600px) {
  .journey-heading {
    font-size: 20px;
  }

  .about-page-tabcontent {
    padding: 10px;
  }

  .about-page-tab-right {
    text-align: left;
  }

  .about-page-tabcontent {
    margin: 25px auto;
  }

  .about-page-tab-left img {
    margin: 0px;
    width: 100%;
  }

  .about-page-tab-inner {
    padding: 0px;
  }
  .scoop_hd {
    font-size: 17px;
    text-align: center !important;
  }

  .about-page-journey-content {
    width: 100% !important;
  }

  .about-page-tab {
    display: block;
  }

  .about-page-tab-right h3 {
    text-align: left;
    font-size: 20px;
  }

  section.img_in_mb.bg-white {
    justify-content: center;
    padding: 0% 5%;
    padding-bottom: 35px;
  }

  .why_choose_us_sec {
    padding: 10% 0% !important;
  }

  .present-serving-tab-cont {
    padding-top: 0px !important;
  }

  .scoop_text {
    text-align: justify;
  }

  .birth-anu-catering-list {
    list-style-type: disc;
    padding-left: 21px;
    color: #000000;
    font-family: "Josefin Sans";
    font-size: 15px;
    font-weight: 400;
  }

  .about-page-tab .about-page-tablinks {
    font-family: "Josefin Sans";
    font-size: 15px !important;
    font-weight: 400;
    display: block !important;
    width: 100% !important;
    margin-bottom: 10px;
  }

  .present-serving-section-para {
    color: #000000;
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-copyright-para {
    text-align: center;
  }

  section.service_options.bg-white {
    padding: 0px 0px !important;
  }

  section.service_intro {
    padding: 20px 0px 10px;
    padding-bottom: 0px !important;
  }

  .our-services-section-title {
    padding-top: 20px;
    font-size: 20px;
    font-family: "Josefin Sans";
  }

  .our-services-card-title {
    font-size: 18px;
    font-family: "Josefin Sans";
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .marriage-tab-heading {
    text-align: center;
    font-family: "Josefin Sans";
    font-size: 20px;
    font-weight: 700;
  }

  .marriage-tab-para {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    font-family: "Josefin Sans";
  }

  .serv_cont.container {
    display: block !important;
    padding: 10px !important;
    padding-top: 0px !important;
  }

  .sashtiyartha-cont {
    margin-top: 0px !important;
  }

  .ayush-homam-cont {
    margin-bottom: 0px !important;
  }

  .seemantham-cont {
    margin-top: 0px !important;
  }
  .music-service-cont {
    margin-top: 0px !important;
  }
}

.footer-batech-link {
  color: #ffffff !important;
  
}

.service-list-icon {
  width: 20px !important;
  height: 20px !important;
}

@media (min-width: 1100px) and (max-width: 1355px) {
  section.core_scoop_section {
    padding: 5.3%;
    background: white;
  }

  section.vision_scoop_section {
    padding: 3%;
    background: white;
  }

  .vision_content_box {
    padding: 2%;
    top: 12%;
  }

  .rising-demand-content {
    top: 9% !important;
  }

  .virugambakkam-fac-content {
    top: 6% !important;
  }

  .scoop_image_box {
    margin-left: 0%;
  }
}
@media (min-width: 1000px) and (max-width: 1024px) {
  .continer_service_swiper {
    min-width: 1018px;
  }

  .container.newsletter_form_container {
    left: 0% !important;
  }

  img.leaf_icon {
    width: 20px;
    position: absolute;
    top: -9px;
    right: 97px !important;
  }

  .about-page-journey-content {
    width: 55% !important;
  }

  .scoop_image_box {
    margin-left: 0%;
  }

  .scoop_content_box {
    padding: 2%;
  }

  section.core_scoop_section,
  section.vision_scoop_section {
    padding: 3%;
  }

 

  .vision_image_box {
    margin-right: 0% !important;
  }

  .vision_content_box {
    padding: 2%;
  }

  .vision_image_box img {
    width: 365px;
  }

  .vision_image_box {
    width: 402px;
  }

  .legacy-content {
    top: 7% !important;
  }

  .vision_content_box {
    top: 7%;
  }

  .rising-demand-content {
    top: 7% !important;
  }

  .diwali-bakshanam-sec {
    height: 458px !important;
  }

  .diwali-bakshanam-content {
    top: 4% !important;
  }

  .virugambakkam-facility-sec {
   
    height: 473px !important;
  }

  .virugambakkam-fac-content {
    top: 4% !important;
  }

  img.abt_sub_img {
    top: 65% !important;
    left: 47% !important;
    width: 283px !important;
  }

  img.abt_main_img {
    width: 457px !important;
  }

  .serv_cont.container {
    gap: 10px !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .service_option_container {
    min-width: 226px !important;
  }

  .tabcontent {
    padding: 34px 12px !important;
  }

  .subscribe-form input {
    width: 100% !important;
  }
}

.marriage-tab-content {
  border: 1px solid grey;
  box-shadow: none !important;
}

.footer-contact-icon {
  font-size: 1rem !important;
}

.footer-sec-cont {
 
  max-width: 100% !important;
}



.footer .footer-container {
  max-width: 1166px !important;
}


/*----------------home page form styles--------*/

.res_heading_top {
  margin-bottom: 10px;
  background-color: #fafafa;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding-left: 11px;
}

.call_box {
  padding: 6px 12px;
  font-weight: 600;
  color: #000;
  font-size: 14px; 
}

.call_number {
  font-size: 14px;
  color: #473ad6 !important;
}

.home-page-form-heading {
  font-size: 15px;
  font-weight: 700;
  font-family: "Josefin Sans";
}

.enquiry-call-icon {
  font-size: 14px !important;
  
}

@media (max-width: 768px) {
  .res_heading_top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 5px;
  }
}

@media (max-width: 600px) {
  .res_heading_top {
    margin-bottom: 10px;
    background-color: #fafafa;
    width: 100%;
    padding-left: 11px;
  }
}

@media (min-width: 1501px) and (max-width: 1550px) {
  .about-page-journey-content {
    width: 65.5% !important;
  }

  

  .our-services-container {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px !important;
  }

 .container.newsletter_form_container {
        position: relative;
        bottom: -30px;
      /*   transform: translate(10%, 0px);
        left:0 !important; */
    }
}

/*-------new select function form  styles--------------*/


.custom-select-wrapper {
  position: relative;
  width: 100%;
}
.custom-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.custom-select:focus {
  outline: none;
  border-color: #4a4aff;
  box-shadow: 0 0 0 3px rgba(74, 74, 255, 0.08);
}
.selected-value {
  display: flex;
  align-items: center;
  gap: 8px;
}
.placeholder {
  color: #777;
  font-size: 15px;
}
.chip {
  background: #0b8043; /* green chip */
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 999px;
}

/* caret */
.caret {
  color: #666;
  font-size: 18px;
}

/* options panel - full width dropdown like reference */
.options-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-height: 320px;
  overflow: auto;
  padding: 8px;
  display: none;
}


.options-panel ul {
  list-style: none;
  margin: 0;
  padding: 6px;
}
.option-item {
  padding: 12px 14px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  color: #222;
}
.option-item + .option-item {
  margin-top: 6px;
  border-top: 1px solid #f2f2f2;
  padding-top: 10px;
}
.option-item:hover {
  background: #f7f9ff;
}

/* tick visible only when selected */
.tick {
  display: none;
  color: #0b8043;
  font-weight: 700;
}
.option-item.selected {
  background: #e8f8ee;
} 

.option-item.selected .tick {
  display: inline-block;
}

/* responsive mobile tweaks */
@media (max-width: 600px) {
  .options-panel {
    max-height: calc(100vh - 200px);
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    border-radius: 12px 12px 0 0;
  }
}


/* chips for added other services */
#selectedChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selected-chips-box {
  margin-top: 12px;
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
  max-height: 120px;
  overflow-y: auto;
  background: #fff;
}

/* chip */
.chip {
  background: #fff;
  border-radius: 28px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.chip .remove {
  cursor: pointer;
  font-weight: 700;
  color: #333;
  padding-left: 6px;
}

.chip span {
  color: #000000;
}

.service-row .left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-text {
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

/* simple chip styling — adjust to match your theme */
.service-list-box {
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 8px;
 
  max-height: 155px;
  overflow-y: auto;
  background: #fff;
}
.service-row {
  padding: 12px 8px;
  border-bottom: 1px solid #f3f3f3;
  display: flex;
  align-items: center;
}

/*--------------home page enquiry form scrollbar styles------------*/

.service-list-box::-webkit-scrollbar {
  width: 10px;
}

.service-list-box::-webkit-scrollbar-track {
  background: #2a9134 !important;
  border-radius: 10px;
}

.service-list-box::-webkit-scrollbar-thumb {
  background: #1e3c72 !important; 
  border-radius: 10px;
}

.service-list-box::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    to right,
    #1e3c72,
    #2a9134
  ) !important; 
}

#selectedChips::-webkit-scrollbar-track {
  background: #1e3c72 !important; 
  border-radius: 10px;
}

#selectedChips::-webkit-scrollbar-thumb {
  background: #2a9134 !important; 
  border-radius: 10px;
}

#selectedChips::-webkit-scrollbar-thumb:hover {
  background: #2a9134 !important; 
}

/*-------------marriage tabs styles--------------*/

.marriage-day-text {
  height: 90px;
  padding: 10px;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  margin-top: 8px;
}


.sr-only {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

.marriage-day {
  margin: 12px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fff;
}
.marriage-day-header {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}
.marriage-service-box {
  max-height: 160px;
  overflow-y: auto;
  padding: 8px;
}
.other-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.selected-chips-box {
  margin-top: 8px;
  min-height: 44px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #f3f3f3;
  max-height: 120px;
  overflow: auto;
  background: #fff;
}
.chip {
  background: #fff;
  border-radius: 28px;
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}
.chip .remove {
  cursor: pointer;
  padding-left: 6px;
  font-weight: 700;
  color: #333;
}
.service-row .left {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid #f6f6f6;
}
.service-text {
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.other-service-row {
  gap: 8px;
}



/* background layer */
.form-wrap-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14; 
  z-index: 0;
  pointer-events: none;
}


.res-form-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92); 
  border: 1px solid #d8d8d8;
  padding: 20px;
  border-radius: 4px;
  margin: 50px;
}

.form-container {
  background-image: url("../home_images/form_section_image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.form-header {
    margin-bottom: 20px;
}

.form-title {
    font-size: 30px;
    font-weight: 700;
    color:#7ed957;
   

}

.res_heading_top {
    gap: 6px;
}


@media(max-width:600px){
  .form-header {
    display:flex !important;
    flex-direction: column;
}

.res-form-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92); 
  border: 1px solid #d8d8d8;
  padding: 20px;
  border-radius: 4px;
  margin: 30px;
}

/* .res_heading_top{
  display: flex;
  flex-direction: row !important;
} */

.res_heading_top {
    display: flex !important;
    flex-direction: column !important;
    padding-top: 3%;
}

.form-title {
    font-size: 25px;
   
}
}

/*----------------contact form validation styles-----------*/
/* contact form messages */
.contact-form-message {
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  display: none; 
}


.contact-form-message.error {
  color:#ce2626;
  
}


.contact-form-message.success {
  color: #0a6a35;
 
}


.contact-form-message.info {
  color: #0b5460;
  
}






