* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
 body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
     padding-top: 100px; 
    background: linear-gradient(135deg, #081C35, #0A2540, #004AAD);
    text-align: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #f0f2f3;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  position: fixed; /* ✅ Sticky instead of fixed */
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 2px 8px rgba(5, 17, 31, 0.438);
}

.op {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004AAD;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

  .logo {
    font-size: 10px;
    font-weight: bold;
    color: #ebeef2;
  }
  
 .nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
  
  .nav-links a {
    position: relative;
    padding-top: 10px;
    text-decoration: none;
    color: #1c0303;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #0a4ec3;
  }
  
  .cta-btn {
    background: linear-gradient(135deg, #004AAD, #007BFF);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .cta-btn:hover {
    background: linear-gradient(135deg, #003A8C, #005FCC);
    transform: scale(1.01);
    box-shadow: 0px 6px 20px rgba(0, 91, 204, 0.7);
  }
  
  /* Mobile Menu */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 5%;
    background: #f0f2f3;
    width: 200px;
    box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.407);
    border-radius: 10px;
    padding: 20px;
  }

  .nav-links a {
    padding: 10px;
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}

/* Blog Content Fix */
.blog-content {
  padding-top: 130px; /* Push content below the fixed navbar */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Card Styling */
.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
  margin: 20px auto;
  text-align: left;
}

.card h2 {
  font-size: 1.2rem;
  color: #000;
  margin-top: 15px;
}

  .logo img {
    width: 120px;
  }
  /* hero section */
  .hero {
    height: 100vh;
    padding: 100px 20px;
    /* background: linear-gradient(135deg, #B6A6F7, #E3E0FF); */
}
.hero h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 24px;
    margin-top: 10%;
    color: #ECE9E6;
}
.hero h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 32px;
    color: #ECE9E6;
}

.big{
    font-size:20px;
}
.search-bar {
    margin: 20px auto;
    display: flex;
    align-items: center;
    width: 400px;
    background: white;
    border-radius: 25px;
    border: 1px solid #ccc;
    padding: 8px 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px;
    font-size: 16px;
    color: black;
    border-radius: 20px;
}
.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: black;
    padding: 5px;
}
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.categories button {
    background: black;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}
.categories button:hover {
    background: #A1FFC7;
    color: black;
}
@media (max-width: 768px) {
  .hero h2 {
      font-size: 26px;
  }
  .hero h1 {
      font-size: 44px;
  }
  .search-bar {
      width: 100%;
  }
  .categories button {
      padding: 8px 18px;
      font-size: 14px;
  }
  
  .logo{
      
       width: 120px;
  }

}
@media (max-width: 350px) {
  
  .hero h2 {
      font-size: 22px;
  }
  .hero h1 {
      font-size: 36px;
  }
  .categories {
      flex-direction: column;
      align-items: center;
      gap: 10px;
  }
  .categories button {
      width: 80%;
      font-size: 14px;
      padding: 10px;
  }
}
/* cards section */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin-block: 2rem;
  gap: 2rem;
}

.card {
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  height: 550px; /* ✅ Add this fixed height */
  display: flex;
  overflow: hidden;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  background: linear-gradient(to right, #FFFFFF, #ECE9E6);
}


/* Card Image */
.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
}

.card__body h4 {
  font-size: 1.5rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show 3 lines only */
  -webkit-box-orient: vertical;
}

.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}


.tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}

.tag + .tag {
  margin-left: .5em;
}

.tag-blue {
  background: #56CCF2;
background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}

.tag-green {
  background: #D1913C;
background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}

.tag-yellow {
  background: #cb2d3e;
background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}

.card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}

.card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

.user {
  display: flex;
  gap: .5rem;
}

.user__image {
  width: 3rem;
      height: 3rem;
      border-radius: 50%;
}

.user__info > small {
  color: #666;
}
  /* footer section */
  footer {
    width: 100%;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 60px 10%;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    font-size: 14px;
    line-height: 24px;
     box-shadow: 0px -4px 16px rgba(87, 126, 170, 0.385);
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}
.logo {
    width: 150px; /* Adjust as needed */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center align */
    padding: 10px 0;
}

.col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.email-id {
    border-bottom: 1px solid blue;
    display: inline-block;
    padding-bottom: 5px;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 12px;
}

ul li a {
    text-decoration: none;
    color: #a1a1a2;
    transition: 0.3s;
}

ul li a:hover {
    color: #fff;
}

.social-icons .fa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #fff;
    transition: 0.3s;
}

.social-icons .fa:hover {
    background: #fff;
    color: #000;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ccc;
    padding: 8px;
   
}

.newsletter button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.newsletter button i {
    font-size: 18px;
    color: #ccc;
}

@media (max-width: 768px) {
    .row {
        /* flex-direction: column; */
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }
}
/* whtsapp section */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
}

.whatsapp-text {
    background-color: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    position: absolute;
    right: 70px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.whatsapp-float {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

/* Show text on hover */
.whatsapp-container:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-container:hover .whatsapp-float {
    background-color: #1EBE5D;
}


