/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #000;
}

/* Header */
.site-header {
  background: #000;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #ccc;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .navbar ul {
    flex-direction: column;
  }

  .navbar ul li {
    margin: 12px 0;
  }

  .menu-toggle {
    display: block;
  }

  .navbar.active {
    display: flex;
  }
}
.blog-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.blog-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #555;
}

/* -------------------- Responsive Styles -------------------- */

@media (max-width: 1024px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .blog-title {
    font-size: 1.1rem;
  }

  .blog-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-title {
    font-size: 1rem;
  }

  .read-more {
    font-size: 0.9rem;
  }
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "Georgia", "Times New Roman", serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fff;
}

.footer-col p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: #000;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }
}
.blog-detail {
  background: #fff;
  color: #000;
  padding: 60px 20px;
  font-family: "Georgia", "Times New Roman", serif;
}

.blog-detail .container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.blog-meta {
  color: #555;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 25px;
}

.blog-meta span {
  font-weight: 600;
}

.blog-image {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 30px;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin: 25px 0 10px;
  color: #000;
  text-align: left;
}

blockquote {
  background: #f9f9f9;
  border-left: 4px solid #000;
  padding: 15px 20px;
  margin: 25px 0;
  font-style: italic;
  color: #333;
}

/* Share Buttons */
.share-section {
  margin-top: 40px;
  text-align: center;
}

.share-section h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-buttons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  font-size: 0.9rem;
}

.share-buttons a:hover {
  background: #444;
}

/* Author Box */
.author-box {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #ccc;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-title {
    font-size: 1.7rem;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-box img {
    margin-bottom: 10px;
  }
}

.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fafafa;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
  color: #000;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
  outline: none;
}

.btn-submit {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }
}
/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  margin-bottom: 30px;
  font-size: 1rem;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  border-bottom: 1px solid #000;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fafafa;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
  color: #000;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
  outline: none;
}

.btn-submit {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background: #fff;
  color: #000;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

/* About Content */
.about-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
}

.about-content h3 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.about-content ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.about-content ul li:last-child {
  border-bottom: none;
}

.about-content a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: 0.3s ease;
}

.about-content a:hover {
  color: #555;
  border-color: #555;
}

/* Blockquote Style */
.about-content blockquote {
  background: #f9f9f9;
  border-left: 4px solid #000;
  padding: 15px 20px;
  margin: 25px 0;
  font-style: italic;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .about-content {
    font-size: 0.95rem;
  }

  .about-content h3 {
    font-size: 1.1rem;
  }
}

/* Privacy Policy Section */
.privacy-section {
  padding: 60px 20px;
  background: #fff;
  color: #000;
}

.privacy-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

.privacy-content h3 {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #000;
}

.privacy-content p {
  margin-bottom: 15px;
  color: #222;
  line-height: 1.8;
}

.privacy-content ul {
  list-style: none;
  margin-top: 10px;
}

.privacy-content ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.privacy-content a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: 0.3s ease;
}

.privacy-content a:hover {
  color: #555;
  border-color: #555;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .privacy-content h3 {
    font-size: 1.1rem;
  }

  .privacy-content p {
    font-size: 0.95rem;
  }
}
/* ====== Common Section Style ====== */
.privacy-section, 
.terms-section, 
.disclaimer-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

.privacy-section .container,
.terms-section .container,
.disclaimer-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== Title ====== */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 8px;
}

/* ====== Content ====== */
.privacy-content,
.terms-content,
.disclaimer-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
}

.privacy-content h3,
.terms-content h3,
.disclaimer-content h3 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}

.privacy-content p,
.terms-content p,
.disclaimer-content p {
  margin-bottom: 16px;
  color: #333;
}

.privacy-content ul,
.terms-content ul,
.disclaimer-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.privacy-content ul li,
.terms-content ul li,
.disclaimer-content ul li {
  margin-bottom: 8px;
  color: #333;
  font-size: 0.98rem;
}

.privacy-content a,
.terms-content a,
.disclaimer-content a {
  color: #000;
  text-decoration: underline;
  transition: 0.3s ease;
}

.privacy-content a:hover,
.terms-content a:hover,
.disclaimer-content a:hover {
  color: #555;
}

/* ====== Last Updated ====== */
.privacy-content p strong,
.terms-content p strong,
.disclaimer-content p strong {
  color: #000;
  font-weight: 600;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .privacy-content h3,
  .terms-content h3,
  .disclaimer-content h3 {
    font-size: 1.15rem;
  }

  .privacy-content,
  .terms-content,
  .disclaimer-content {
    font-size: 0.95rem;
  }
}
.hero-section {
    background: linear-gradient(135deg, #f9f9f9, #e6f0ff);
    text-align: center;
    padding: 100px 20px;
    color: #222;
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: #444;
}

.hero-section .btn {
    background: #0078ff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-section .btn:hover {
    background: #005fcc;
}
