/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Base Styles === */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo Bhai 2', cursive;
}

/* === Top Bar === */
.top-bar {
  background-color: #ef5c22;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.top-bar .contact-info,
.top-bar .lang-select {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar .contact-info i {
  margin-right: 5px;
}

/* === Navigation === */
nav {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo img {
  max-height: 60px;
}
.nav-links {
  display: flex;
  gap: 35px;
  font-size: 24px;
}
.nav-links a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #de3636;
}
.cta-button {
  padding: 8px 16px;
  background-color: #ef5c22;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #d84b10;
}

/* === Hero Section === */
.hero {
  position: relative;
  background: url('images/Group%2018.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* === DRC Emergency Section === */
.drc-emergency-section {
  background-color: #fff;
  padding: 60px 20px;
}
.drc-emergency-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drc-image-wrapper {
  flex: 1;
  margin-right: 20px;
}
.drc-image-wrapper img {
  width: 100%;
  border-radius: 8px;
}
.drc-content {
  flex: 1.3;
  padding-left: 50px;
}
.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6600;
  margin-bottom: 8px;
}
.drc-content h2 {
  font-size: 2rem;
  /* color: #222; */
  margin-bottom: 16px;
}
.drc-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .drc-emergency-section .container {
    flex-direction: column;
  }
  .drc-image-wrapper,
  .drc-content {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}

/* === Donation Cards === */
.donation-cards-section {
  background-color: #fff;
  padding: 60px 20px;
}
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  background-color: #fff;
  border: 1px solid #eb3e3e;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}
.card h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 10px;
}
.card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.btn-card {
  display: inline-block;
  background-color: #ef5c22;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-card:hover {
  background-color: #d84b10;
}
@media (max-width: 992px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 576px) {
  .cards-grid {
    flex-direction: column;
  }
  .card {
    flex: 1 1 100%;
  }
}

/* === Give With Confidence === */
.give-confidence-section {
  background: url('images/Group%2017%20(1).jpg') no-repeat center top;
  text-align: center;
  padding: 80px 20px;
}
.give-confidence-section h2 {
  font-size: 2.5rem;
  /* color: #333; */
  margin-bottom: 20px;
}
.give-confidence-section h2 span {
  color: #ef5c22;
}
.subtitle {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.cta-btn {
  background-color: #ef5c22;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.cta-btn:hover {
  background-color: #d84b10;
}

/* === Split Image/Text Section === */
.section {
  width: 100%;
}
.content {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
}
.image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 40px;
}
.text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  
}
.text p {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 500px;
  color: #555;
}
.btn {
  width: 170px;
  text-align: center;
  background-color: #ff6b2c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #e25c1d;
}
.image-left .image {
  order: 1;
}
.image-left .text {
  order: 2;
}
.image-right .image {
  order: 2;
}
.image-right .text {
  order: 1;
}
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }
  .image, .text {
    order: unset !important;
  }
  .text {
    padding: 30px 0px;
    margin-left: 20px !important;
  }
}

/* === Pray With Us Section === */
.pray-section {
  background: url('images/Group%2017.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  
}
.pray-section .overlay {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.pray-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pray-section h2 span {
  color: #ff6a2f;
}
.pray-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}
.email-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.email-form input[type="email"] {
  padding: 14px 20px;
  border-radius: 5px;
  border: none;
  width: 300px;
  font-size: 1rem;
}
.email-form button {
  background-color: #ff6a2f;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.email-form button:hover {
  background-color: #e05721;
}

/* === Footer === */
.site-footer {
  background: url('images/Group%2016%20(1).jpg') no-repeat center center/cover;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.newsletter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-size: 24px;
  font-weight: bold;
}
.newsletter-text p {
  margin-top: 10px;
  font-size: 16px;
  max-width: 400px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  width: 250px;
}
.newsletter-form button {
  background-color: #ff6a2f;
  color: #fff;
  border: none;
  padding: 12px 60px;
  border-radius: 5px;
  cursor: pointer;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid #aaa;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
}


@media (max-width: 768px){

  .drc-content{
    padding-left: 0px !important;
  }

  .drc-emergency-section{
    padding: 33px 0px !important;
  }

  .donation-cards-section {
    
    padding: 60px 0px !important;
}

.give-confidence-section {
 
  padding: 27px 0px !important;
}


.pray-section {
  
  padding: 30px 0px !important;
  
  margin-top: 20px !important;
}

.email-form input[type="email"] {
  
  width: 255px !important;
  
}


}


.goog-te-gadget-simple{
  display: flex !important;
}
.VIpgJd-ZVi9od-xl07Ob-lTBxed{

display: flex !important;
}