* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
}

.logo img {
    height: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar ul li a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px;
    
}
.cta-button {
    background: #2e8b57;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #256a45;
}
/*header end*/
/*section*/

.cards-sect {
  padding: 60px 20px;
  background-color: #fff;
}

.card-cont {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.info {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.info h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.read-more-btn {
  display: inline-block;
  margin: 15px 0 25px;
  padding: 10px 20px;
  font-size: 15px;
  color: white;
  background-color: #196bca;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.read-more-btn i {
  margin-right: 8px;
}

.read-more-btn:hover {
  background-color: #0f4c9b;
}

.info-card:hover {
  transform: translateY(-5px);
}
/*footerstart*/
.footer {  
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 40px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-logo {
    width: 40px;
    margin-bottom: 10px;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a img {
    background: white;
    border-radius: 4px;
    padding: 5px;
    width: 30px;
    height: 30px;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom hr {
    border: 0.5px solid #444;
    margin-bottom: 10px;
}

.footer-bottom p {
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
/*footer end*/
.blog-section {
  padding: 40px ;
  background-color: #f5f5f5;
  text-align: center;
}

.blog-section h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

.blog-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-post {
  text-align: left;
}

.blog-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  background: #0066cc;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
}

.read-more:hover {
  background-color: #004c99;
}


.blog-post h2 {
  color: #2c3e50;
  font-size: 1.5em;
}

.blog-post p {
  color: #555;
  margin: 10px 0;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: black;
  text-decoration: underline;
}
.Two {
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
  font-size: 30px;
}

.Two-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  
}

.Two-text button {
  padding: 10px 25px;
  background-color: #2e7d32;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
/* ---------- RESPONSIVE BREAKPOINTS ---------- */
.menu-toggle {
  display: none; 
  font-size: 28px;
  cursor: pointer;
  color: #333; 
}

/* Show menu icon on tablets and phones */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar ul {
    display: none; 
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px; 
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin: 10px 0;
  }
}
