 /* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Banner Section */
.banner_imag_ {
  width: 100%;
  background-color: #5b1a05;
  padding: 20px 0;
}

.banner_row_ {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 24px;
  padding: 0 16px;
  flex-wrap: wrap;
}

.banner_col_ {
  flex: 1;
  min-width: 300px;
}

/* Image Styling */
.banner_img_ img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Text Content Styling */
.banner_txt_ {
  text-align: left;
  padding: 20px;
}

/* Telugu Font Styling */
.telugu {
  font-family: "Ramaraju", serif;
  font-size: 24px;
  color: #fff;
  margin-top: 16px;
  line-height: 1.6;
}

.telugu li {
  margin-top: 12px;
  position: relative;
  padding-left: 24px;
}

.telugu li::before {
  content: "\f061"; /* FontAwesome arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: red;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .banner_row_ {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banner_txt_ {
    padding: 16px 8px;
  }

  .telugu {
    font-size: 20px;
  }

  .telugu li {
    padding-left: 20px;
  }
}

/* Widget Section */
.widget-section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h1 {
  font-size: 2.8rem;
  color: #f3bc16;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.1rem;
  color: #d99518;
}

.style {
  margin-top: 10px;
}

.style span {
  display: inline-block;
  width: 40px;
  height: 4px;
  background-color: #d32f2f;
  margin: 0 5px;
  border-radius: 3px;
}

.service_row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sevice_col {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* fallback for Safari */
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.sevice_col:hover {
  transform: scale(1.03);
}

.sevice_col a {
  color: inherit;
  text-decoration: none;
}

.sevice_img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sevice_txt {
  padding: 20px;
}

.sevice_txt h3 {
  font-size: 1.5rem;
  color: #d32f2f;
  margin-bottom: 10px;
}

.sevice_txt p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.service_btns {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 20px;
}

.service_btns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: #d32f2f;
  color: #fff;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.service_btns a:hover {
  background-color: #a62828;
}

@media (max-width: 500px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .sevice_txt h3 {
    font-size: 1.2rem;
  }
}

/* About Section */
.about_row_ {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.about_col_ {
  display: block;
  width: 100%;
}

.about_col_:nth-child(3) {
  grid-column: 1 / span 2;
}

.about_col_ h2 {
  font-size: 24px;
  line-height: 1.4em;
}

.about_col_ h2 span {
  display: block;
  color: #d32f2f;
  font-size: 28px;
}

.about_col_ p {
  margin-top: 16px;
  text-align: justify;
}

.about_col_ ul {
  margin: 16px 0 0 16px;
  list-style-type: disc;
}

.about_col_ ul li + li {
  margin-top: 12px;
}

.about_col_ img {
  width: 100%;
  height: auto;
}

@media all and (max-width: 480px) {
  .about_row_ {
    grid-template-columns: repeat(1, 1fr);
  }

  .about_col_:nth-child(3) {
    grid-column: unset;
  }
}

/* Contact Page */
.section-contact {
  display: block;
  padding: 100px 16px;
}

.contact_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.contact_col {
  display: block;
  width: 100%;
}

.contact_text {
  display: block;
}

.contact_text h2 {
  font-size: 32px;
}

.contact_text p {
  margin-top: 16px;
}

.contact_text p + p {
  margin-top: 6px;
}

.contact_box {
  display: block;
  margin-top: 24px;
}

.contact_box ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact_box ul li img {
  width: auto;
  height: auto;
}

.contact_box ul li h3 {
  font-size: 18px;
}

.contact_box ul li p {
  font-size: 15px;
  margin-top: 8px;
}

.contact_form {
  display: block;
  padding: 32px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 7px 24px 0px #0000001f;
}

.contact_form h2 {
  font-size: 32px;
}

.contact_form form {
  display: block;
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.form_group input,
.form_group select,
.form_group textarea {
  width: 100%;
  padding: 16px;
  background: #f3f5fd;
  border: 1px solid #f3f5fd;
  outline: 0;
}

.form_group button {
  padding: 16px 48px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form_group button:hover {
  background: #333;
}

@media all and (max-width: 480px) {
  .contact_row {
    grid-template-columns: repeat(1, 1fr);
  }

  .form_group {
    flex-direction: column;
  }
}

@media (min-width: 500px) and (max-width: 992px) {
  .contact_row {
    grid-template-columns: repeat(1, 1fr);
  }
}
