.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.post {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex-wrap: wrap; /* ensures responsiveness */
}

.post-text {
  flex: 1 1 500px;
}

.post-image {
  flex: 1 1 400px;
  text-align: center;
}

.post-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.post h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #111;
}

.post p {
  line-height: 1.9;
  margin-bottom: 20px;
  color: #555;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.read-more:hover {
  background-color: #444;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .post {
    flex-direction: column;
    text-align: center;
  }

  .post-text, .post-image {
    flex: 1 1 100%;
  }

  .post-text {
    margin-bottom: 20px;
  }
}
.blog-heading {
    text-align: center;
    width: 100%;
    font-size: 70px;   /* Yeh size tum change kar sakti ho */
    font-weight: 700;
    margin: 20px 0;
}
/* ===== FOOTER ===== */
.footer {
    background: #000; 
    color: #fff;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT SIDE (FORM) */
.footer-left {
    flex: 1;
    min-width: 320px;
    margin-bottom: 30px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form input,
.footer-form textarea {
    background: #fff;      /* white background */
    color: #000;           /* black text */
    border: 1px solid #ccc;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #555;           /* better placeholder color */
}

.footer-form button {
    background: #ff6a00;
    border: none;
    padding: 14px;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #e45f00;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* LINKS */
.footer-links a {
    display: block;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 6px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
}

/* COPYRIGHT */
.footer-copy p {
    margin: 3px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-right {
        margin-top: 20px;
    }
}



.contact-whatsapp {
    margin-top: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;          /* WhatsApp green */
    color: #fff;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* Icon size support (font-awesome) */
.btn-whatsapp i {
    font-size: 20px;
}



.two-column-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 60px 5%;
    gap: 40px;
    box-sizing: border-box;
}

.two-col-img,
.two-col-content {
    flex: 1;
}

/* Image Styling */
.two-col-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Content Styling */
.two-col-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #111;
}

.two-col-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* Reverse Class */
.two-column-section.reverse {
    flex-direction: row-reverse;
}

/* Responsive */
@media(max-width: 900px) {
    .two-column-section,
    .two-column-section.reverse {
        flex-direction: column;
        text-align: center;
    }

    .two-col-img img {
        height: 400px;
    }
}

.two-col-img,
.two-col-content {
    border: none !important;
    box-shadow: none !important;
}

/* CSS */
.logo-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 120px; /* apni requirement ke mutabiq adjust karein */
    width: auto;
}









