/* Nav Bar Styles */
.navbar-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand img {
    width: 120px;
  }
  
  .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 400;
  }
  
  .navbar-nav .nav-item:hover .nav-link {
    color: #17b832 !important;
  }
  
  .navbar-custom .social-icons i {
    color: #ffffff;
    margin-right: 15px;
    font-size: 18px;
  }
  
  .navbar-custom .contact-info {
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  
  .navbar-custom .contact-info i {
    margin-right: 8px;
    color: #ffc107;
  }
  
  .navbar-custom .navbar-toggler {
    border: none;
    color: #ffffff;
  }
  
  @media (max-width: 991.98px) {
    .navbar-custom .social-icons {
        display: none;
    }
    .navbar-custom .contact-info {
        display: none;
    }
  }
  
  /* End Nav Bar Styles */





/* Fade-in Animation */
@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .blog-post .fadein {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    transition: transform 0.3s ease-in-out;
  }
  
  /* Delay fade-in for sequential appearance */
  .blog-post:nth-child(1) .fadein {
    animation-delay: 0.2s;
  }
  .blog-post:nth-child(2) .fadein {
    animation-delay: 0.4s;
  }
  .blog-post:nth-child(3) .fadein {
    animation-delay: 0.6s;
  }
  
  /* Hover effect for blog post cards */
  .blog-post .card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
  }
  
  /* General Styling */
  h1 {
    font-weight: bold;
  }
  
  .card-title {
    font-weight: 600;
    color: #333;
  }
  
  .card-text {
    color: #555;
  }
  
  .blog-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .container h1 {
    margin-bottom: 1rem;
  }
  
  .container p {
    color: #666;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.75rem;
    }
  
    .card-title {
      font-size: 1.25rem;
    }
  
    .card-text {
      font-size: 0.95rem;
    }
  }
  

/* Parallax Background for Call to Action Section */
.cta-section {
    background: url('/assets/4\ →\ 2.jpg.jpg') no-repeat center center/cover;
    height: 70vh;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
    color: white;
   
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text pop */
    z-index: -1;
  }
  
  /* Call to Action Title Styling */
  .cta-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: initial;
  }
  
  .cta-text {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .btn-primary {
    background-color: #f9a826;
    border: none;
    padding: 10px 30px;
  }
  
  .btn-primary:hover {
    background-color: #ffa500;
  }
  
  /* Responsive Styles */
  @media (max-width: 767px) {
    .cta-title {
      font-size: 2.5rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  }
  
  
  /* footer scetion */

.footer {
    background-color: #1e1e1e;
    color: #bbb;
    padding: 0px 0;
    padding-top: 30px;
    
  }
  .footer h5 {
    color: #fff;
  }
  .footer .social-icons a {
    margin: 10px;
    color: #bbb;
    font-size: 1.5rem;
  }
  .footer a {
    color: #bbb;
    text-decoration: none;
  }
  .footer a:hover {
    color: #ffd343;
  }
  .footer .subscribe-form input[type="email"] {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
  }
  .footer .subscribe-form button {
    border: none;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
  }
  .footer-bottom {
    background-color: #151515;
    color: #bbb;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-social-icons {
    padding-bottom: 20px;
    padding-top: 20px;
  
  }
  
  