body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.padding-top {
  padding-top: 100px;
}

.section-padding {
  padding: 60px 0;
}

header {
  padding: 15px 0;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
header .gaushala-head img {
  max-height: 70px;
  width: auto;
}
header .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
header .menu ul li {
  display: inline-block;
  padding-right: 28px;
}
header .menu ul li:last-child {
  padding-right: 0;
}
header .menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}
header .menu ul li a:hover {
  color: rgba(214, 134, 0, 0.8);
}
header .menu ul li a.donate-btn {
  color: #fff !important;
  background-color: #d68600;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 500;
}
header .menu ul li a.donate-btn:hover {
  background-color: #a36600;
  color: #fff !important;
}
header .toggle-menu-cont {
  display: none;
  text-align: right !important;
}
header .toggle-menu-cont .toggle-menu {
  display: inline-block;
  cursor: pointer;
}
header .toggle-menu-cont .toggle-menu i {
  display: block;
  width: 25px;
  height: 3px;
  background: #000;
  margin: 5px 0;
}

.hero-section {
  background-image: url("../images/test-bg-5.fef1364956be30bea7fd.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  font-family: "Poppins", sans-serif;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.85), rgba(255, 245, 225, 0.8));
  z-index: 0;
}
.hero-section .container,
.hero-section .row,
.hero-section .col-md-6 {
  position: relative;
  z-index: 1;
  height: 100%;
}
.hero-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}
.hero-section .content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #4b2e05;
  margin-bottom: 1.2rem;
}
.hero-section .content p {
  font-size: 1.25rem;
  color: #333;
  line-height: 1.8;
  max-width: 550px;
}
.hero-section .content .buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.hero-section .content .buttons .btn {
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem 1rem 0 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}
.hero-section .content .buttons .btn.orange {
  background-color: #d68600;
  color: #fff;
  border: 2px solid transparent;
}
.hero-section .content .buttons .btn.orange:hover {
  background-color: #b86e00;
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}
.hero-section .content .scroll-indicator {
  margin-top: 3rem;
  font-size: 2rem;
  color: #b86e00;
  animation: bounce 2s infinite;
}
.hero-section .india-map {
  background-image: url("../images/ngo2-slider-pic1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 25px;
}
.hero-section .india-map .cow-count {
  background: #fff;
  padding: 1.2rem 2.2rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease;
}
.hero-section .india-map .cow-count:hover {
  transform: scale(1.06);
}
.hero-section .india-map .cow-count .count {
  font-size: 3rem;
  font-weight: 800;
  color: #d68600;
}
.hero-section .india-map .cow-count .label {
  margin-top: 0.6rem;
  font-size: 1.1rem;
  color: #555;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.our-gaushala {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f9f9f9, #fafafa);
}
.our-gaushala h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 40px;
  color: #2d402d;
  font-weight: 700;
  position: relative;
}
.our-gaushala h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #d68600;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
.our-gaushala .our-gaushala-content .owl-carousel .item {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  background-color: whitesmoke;
}
.our-gaushala .our-gaushala-content .owl-carousel .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.our-gaushala .our-gaushala-content .owl-carousel .item img {
  width: 100%;
  max-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.our-gaushala .our-gaushala-content .owl-carousel .item img:hover {
  transform: scale(1.05);
}
.our-gaushala .our-gaushala-content .owl-carousel .item p {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #2f2f2f;
}
.our-gaushala .our-gaushala-content .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.our-gaushala .our-gaushala-content .owl-carousel .owl-dots .owl-dot {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  transition: background 0.3s;
}
.our-gaushala .our-gaushala-content .owl-carousel .owl-dots .owl-dot.active {
  background: #d68600;
}
.our-gaushala .our-gaushala-content .owl-carousel .owl-nav {
  display: none;
}

.donation-plans {
  padding: 60px 20px;
}
.donation-plans .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.donation-plans .container h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 600;
  color: #1f2937;
}
.donation-plans .container .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.donation-plans .container .row .donation-box {
  background: #fff;
  border-top: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 25px;
  width: 360px;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.donation-plans .container .row .donation-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.donation-plans .container .row .donation-box img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.donation-plans .container .row .donation-box h3 {
  font-size: 24px;
  color: #f59e0b;
  margin: 20px 0 10px;
  font-weight: 600;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 10px;
}
.donation-plans .container .row .donation-box p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 20px;
}
.donation-plans .container .row .donation-box button {
  background-color: #f59e0b;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.donation-plans .container .row .donation-box button:hover {
  background-color: #d97706;
}

.counter-section {
  padding: 60px 0;
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  /* Responsive styles */
}
.counter-section .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2d2d2d;
}
.counter-section .counter-text .stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.counter-section .counter-text .stats .stat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.counter-section .counter-text .stats .stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.counter-section .counter-text .stats .stat .circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-top: 6px;
}
.counter-section .counter-text .stats .stat .circle.green {
  background-color: #7bb62f;
}
.counter-section .counter-text .stats .stat .circle.blue {
  background-color: #4a90e2;
}
.counter-section .counter-text .stats .stat .circle.pink {
  background-color: #ec407a;
}
.counter-section .counter-text .stats .stat .circle.pulse {
  animation: pulse 2s infinite;
}
.counter-section .counter-text .stats .stat .stat-content h2 {
  font-size: 36px;
  color: #111;
  margin: 0;
  font-weight: 600;
}
.counter-section .counter-text .stats .stat .stat-content p {
  font-size: 16px;
  color: #555;
  margin-top: 6px;
  max-width: 400px;
  margin-bottom: 0;
  line-height: 1.7;
}
.counter-section .counter-image {
  text-align: center;
}
.counter-section .counter-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}
@media (max-width: 991.98px) {
  .counter-section {
    padding: 60px 20px;
  }
  .counter-section .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .counter-section .counter-text .stats {
    gap: 30px;
  }
  .counter-section .counter-text .stats .stat {
    padding: 14px 20px;
    gap: 15px;
  }
  .counter-section .counter-text .stats .stat .circle {
    width: 46px;
    height: 46px;
    margin-top: 4px;
  }
  .counter-section .counter-text .stats .stat .stat-content h2 {
    font-size: 28px;
  }
  .counter-section .counter-text .stats .stat .stat-content p {
    font-size: 14px;
    max-width: 100%;
  }
  .counter-section .counter-image img {
    max-width: 100%;
    border-radius: 12px;
  }
}
@media (max-width: 575.98px) {
  .counter-section {
    padding: 30px 15px 0;
  }
  .counter-section .section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
  }
  .counter-section .row {
    flex-direction: column;
  }
  .counter-section .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .counter-section .counter-text .stats .stat {
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
  }
  .counter-section .counter-text .stats .stat .circle {
    width: 65px;
    height: 40px;
    margin-top: 0;
  }
  .counter-section .counter-text .stats .stat .stat-content h2 {
    font-size: 24px;
  }
  .counter-section .counter-text .stats .stat .stat-content p {
    font-size: 13px;
    margin-bottom: 0;
  }
  .counter-section .counter-image {
    margin-bottom: 0;
  }
  .counter-section .counter-image img {
    border-radius: 10px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.how-it-works {
  background: linear-gradient(135deg, #de8f16, #ffba42);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.how-it-works h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
}
.how-it-works .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.how-it-works .column {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-it-works .column:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}
.how-it-works .column .icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}
.how-it-works .column h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #de8f16;
}
.how-it-works .column p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
.how-it-works .know-more {
  margin-top: 50px;
}
.how-it-works .know-more a {
  background-color: #fff;
  color: #de8f16;
  padding: 14px 32px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border-radius: 6px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.how-it-works .know-more a:hover {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #d57a00;
}

.help-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/We-cant.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  color: #fff;
}
.help-section .help-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.help-section .help-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.help-section .help-content .help-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.help-section .help-content .help-buttons .btn {
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.help-section .help-content .help-buttons .btn.primary {
  background-color: #ff9800;
  color: white;
}
.help-section .help-content .help-buttons .btn.primary:hover {
  background-color: #e68900;
  transform: translateY(-2px);
}
.help-section .help-content .help-buttons .btn.secondary {
  background-color: transparent;
  border: 2px solid #ff9800;
  color: #ff9800;
}
.help-section .help-content .help-buttons .btn.secondary:hover {
  background-color: #ff9800;
  color: white;
  transform: translateY(-2px);
}

.about-us {
  padding: 40px 20px;
}
.about-us .content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.about-us .content-container .left-column,
.about-us .content-container .right-column {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}
.about-us .content-container .left-column h1,
.about-us .content-container .right-column h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}
.about-us .content-container .left-column p,
.about-us .content-container .right-column p {
  margin-bottom: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
.about-us .content-container .left-column a,
.about-us .content-container .right-column a {
  color: #007bff;
  text-decoration: none;
}
.about-us .content-container .left-column .image-wrapper,
.about-us .content-container .right-column .image-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.about-us .content-container .left-column .image-wrapper img,
.about-us .content-container .right-column .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.about-us .content-container .left-column .image-wrapper.green-brush::before,
.about-us .content-container .right-column .image-wrapper.green-brush::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(green-brush.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  top: 10px;
  left: -10px;
}
.about-us .content-container .left-column .image-wrapper.yellow-brush::before,
.about-us .content-container .right-column .image-wrapper.yellow-brush::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(yellow-brush.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  top: 10px;
  left: -10px;
}

.our-donation-section {
  background-color: #fef9f2;
  padding-bottom: 60px;
}
.our-donation-section .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #4e3400;
  margin-top: 60px;
}
.our-donation-section .section-subtitle {
  font-size: 1.1rem;
  color: #7a5e2e;
}
.our-donation-section .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.our-donation-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.our-donation-section .card .card-img-top {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.our-donation-section .card:hover .card-img-top {
  transform: scale(1.05);
}
.our-donation-section .card .card-body {
  background-color: #fff3e0;
  padding: 20px;
  text-align: center;
}
.our-donation-section .card .card-body .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #5a3e00;
  margin-bottom: 1rem;
}
.our-donation-section .card .card-body .btn-success {
  background-color: #d68600;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}
.our-donation-section .card .card-body .btn-success:hover {
  background-color: #a36600;
}

.donation-section {
  padding-top: 100px;
  background: #f9f9f9;
}
.donation-section .image-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  border-radius: 0;
}
.donation-section .image-wrapper .responsive-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}
.donation-section .image-wrapper .responsive-image:hover {
  transform: scale(1.05);
}

.contact-section {
  width: 100%;
  min-height: 100vh;
  background: url("../images/About-us-Banner-1-1.webp") center/cover no-repeat;
  color: #000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 130px 20px 80px;
  display: flex;
  align-items: center;
  position: relative;
}
.contact-section .container {
  max-width: 1200px;
  margin: auto;
  z-index: 1;
  text-align: center;
}
.contact-section .container h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #e78b00;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.contact-section .container .section-subtext {
  font-size: 1.15rem;
  color: #000;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.contact-section .container .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.contact-section .container .contact-grid .contact-info,
.contact-section .container .contact-grid .contact-map {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(231, 139, 0, 0.3);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .container .contact-grid .contact-info:hover,
.contact-section .container .contact-grid .contact-map:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.contact-section .container .contact-grid .contact-info {
  text-align: left;
}
.contact-section .container .contact-grid .contact-info .contact-block {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.contact-section .container .contact-grid .contact-info .contact-block:last-child {
  border-bottom: none;
}
.contact-section .container .contact-grid .contact-info .contact-block h3 {
  font-size: 1.15rem;
  color: #e78b00;
  margin-bottom: 8px;
}
.contact-section .container .contact-grid .contact-info .contact-block p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}
.contact-section .container .contact-grid .contact-info .contact-block p strong {
  font-weight: bold;
  color: #000;
}
.contact-section .container .contact-grid .contact-map {
  text-align: left;
}
.contact-section .container .contact-grid .contact-map h3 {
  font-size: 1.15rem;
  color: #e78b00;
  margin-bottom: 10px;
}
.contact-section .container .contact-grid .contact-map a {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-section .container .contact-grid .contact-map a:hover {
  color: #e78b00;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
  .contact-section .container h2 {
    font-size: 2.2rem;
  }
  .contact-section .container .section-subtext {
    font-size: 1rem;
  }
}

.forms-section {
  display: flex;
  justify-content: center;
}

.contact-form {
  border: 1px solid #f5a623;
  padding: 30px;
  width: 80%;
  max-width: 1000px;
  box-shadow: 0 3px 5px rgba(245, 166, 35, 0.2);
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form form .form-row input {
  flex: 1;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px 5px;
  font-size: 14px;
  outline: none;
}
.contact-form form .full-width {
  width: 100%;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px 5px;
  font-size: 14px;
  outline: none;
  resize: vertical;
}
.contact-form form textarea.full-width {
  min-height: 100px;
}
.contact-form form button {
  background-color: #e78b00;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s ease;
}
.contact-form form button:hover {
  background-color: #b46c00;
}

.footer {
  background: #f9f9f9;
  padding: 40px 0;
  font-family: "Segoe UI", sans-serif;
  color: #333;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-section {
  flex: 1;
  min-width: 250px;
}
.footer .footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}
.footer .footer-section p {
  font-size: 14px;
  line-height: 1.6;
}
.footer .footer-section ul {
  list-style: none;
  padding: 0;
}
.footer .footer-section ul li {
  margin-bottom: 10px;
}
.footer .footer-section ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.footer .footer-section ul li a:hover {
  color: #d68600;
}
.footer .footer-section i {
  margin-right: 8px;
  color: #d68600;
}
.footer .about .logo {
  width: 80px;
  margin-bottom: 15px;
}
.footer .footer-bottom {
  text-align: center;
  padding: 20px 10px 0;
  border-top: 1px solid #eaeaea;
  font-size: 14px;
}
.footer .footer-bottom p {
  margin-bottom: 0;
}
.footer .footer-bottom span {
  color: #d68600;
  font-weight: 500;
}/*# sourceMappingURL=custom.css.map */