/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Base Styles === */
body {
  font-family: 'Poppins', 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 .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;
  font-weight: bold;
}

.nav-links a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ef5c22;
}

.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 18 (1).jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  
}

.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;
}

/* === Section Wrapper === */
.section-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.section-title span {
  color: #f26522;
}

/* === Tab Menu === */
.tab-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  font-weight: 600;
}

.tab-menu a {
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
}

.tab-menu .active {
  background-color: #f26522;
  color: #fff;
}

/* === Tab Content === */
.content-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 100px;
}

.content-image,
.content-text {
  flex: 1;
  min-width: 300px;
}

.content-image img {
  border-radius: 8px;
}

.content-text h4 {
  color: #f26522;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* === Statistics === */
.stats-section {
  background-image: url('images/Vector 2.png');
  padding: 60px 20px;
  text-align: center;
}

.stats-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.stats-title span {
  color: #f26522;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  flex: 1 1 250px;
  max-width: 300px;
}

.stat-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f26522;
}

.stat-item .label {
  font-size: 1rem;
  font-weight: 600;
}

/* === Crisis Section === */
.section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding-left: 30px;
}

.text-column,
.image-column {
  flex: 1;
}

.text-column {
  padding: 60px 40px;
  background: #fff;
}

.text-column h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 30px;
  
}

.text-column h2 span {
  color: #f26522;
  
}

.text-column ul {
  list-style: disc;
  padding-left: 20px;
}

.image-column img {
  width: 100%;
  border-radius: 8px;
}

/* === Hero Message Section === */
.hero-message {
  padding: 30px 20px;
  text-align: center;
  background-color: #fff;
  color: #000;
}

.hero-message h4 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 550;
}

.hero-message h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-message .highlight-orange {
  color: #f26522;
  display: inline-block;
  margin-top: 5px;
}

.hero-message p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

/* === Hero Section (Background) === */
.hero-section {
  position: relative;
  background-image: url('images/Group 19.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  margin: 40px;
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #eee;
}

.highlight {
  color: #f26522;
}

/* === Cards === */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  justify-content: space-between;
}

.card {
  flex: 1 1 calc(33% - 20px);
  border: 2px solid #f26522;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 1.4rem;
  font-weight: 800;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card button {
  background-color: #f26522;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.card button:hover {
  background-color: #d5531d;
}

/* === Pray Section === */
.pray-section {
  background: url('images/Group 20.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.pray-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pray-section h2 span {
  color: #ff6a2f;
}

.pray-section p {
  font-size: 1.1rem;
  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;
}

.email-form button {
  background-color: #ff6a2f;
  color: white;
  padding: 14px 24px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

/* === 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;
}

/* === Responsive === */
@media (max-width: 992px) {
  .cards-container .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }

  .text-column, .image-column {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .cards-container .card {
    flex: 1 1 100%;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }
}


@media (max-width: 768px){
  .section{
    padding-left: 0px !important;
  }

  .text-column h2 {
    font-size: 2rem !important;
   
}

.hero-section{
    padding: 0px !important; 
    border-radius: 0px !important;
    margin: 0px !important;
    height: 450px !important;
}

.hero-message h1 {
  font-size: 2rem !important;
 
}

.hero-message {
  padding: 30px 0px;
  
}

.email-form input[type="email"] {
  
  width: 255px !important;
}
}



.goog-te-gadget-simple{
    display: flex !important;
}
.VIpgJd-ZVi9od-xl07Ob-lTBxed{
 
  display: flex !important;
}
