  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            max-width: none;
            margin: 0 auto;
            padding: 20px;
            background-color: #14283c;
        }
        header {
	background-color: #14283c;
	height: auto;
	overflow: visible;
}
.blog-body-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    font-family: Roboto, sans-serif;
    line-height: 1.6;
}
.custom-hero-container {
	display: flex;
    width: auto;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background-color: #007acc;
	color: #ffffff;
}

.custom-hero-logo img {
	max-width: 50px;
	max-height: 50px;
}

.custom-hero-title {
	flex: 1;
	text-align: center;
	max-width: 1000px;
	font-size: 30px;
	margin: 0;
}

.custom-hero-nav {
	display: flex;
	gap: 12px;
}

.custom-hero-nav a {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	transition: color 0.3s ease;
}

.custom-hero-nav a:hover {
	color: #ffffff;
}

        h1 {
            font-size: 2.5em;
            text-align: center;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .subtitle {
            text-align: center;
            color: #cdd8d8;
            margin-bottom: 30px;
        }
        .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
}

.blog-card {
    background-color: #1a1a1a; /* Darker background for contrast */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    background: #007acc;
}

h2 {
    font-size: 21px;
    color: #ffffff;
    margin: 0 0 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1em;
    color: #f0f0f0;
    line-height: 1.5;
}

.blog-link {
    display: inline-block;
    margin-top: 15px;
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-link:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: scale(1.05);
}

/* Sticky */
.Sticky-text {
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 0;
	color: #cdd8d8;
	font-size: 15px;
	font-weight: 700;
	left: 0;
	padding: 10px;
	position: fixed;
	right: 0;
	z-index: 10;
	text-align: left;
	font-family: consolas;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Socila Icons */
.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	text-decoration: none;
	color: white;
	padding: 5px;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease;
}

.social-icons a .facebook {
	background-color: #3b5998;
}

.social-icons a .twitter {
	background-color: #1da1f2;
}

.social-icons a .linkedin {
	background-color: #0077b5;
}

.social-icons a .whatsapp {
	background-color: #25D366;
}

.social-icons a:hover {
	opacity: 0.8;
}
/* Icon styles */
.icon {
  vertical-align: middle;
  margin-right: 8px;
  font-size: 20px; /* Adjust icon size as needed */
}
/* List (bullet list */
custom-list-item {
  display: block; /* Display as block to ensure it takes full width */
  text-align: left; /* Aligns text to the left */
  unicode-bidi: isolate; /* Prevents mixing of different scripts in the text */
  margin: 10px 0; /* Adds spacing between list items */
  padding: 8px 12px; /* Adds padding to make the items look more spacious */
  border-radius: 5px; /* Rounded corners for a softer look */
  border: 1px solid #ffffff; /* Subtle border to define each item */

}
/* hr style */
hr {
    height: 2px;
    border: 0;
	box-shadow: inset 0 12px 12px -12px rgba(0, 122, 204, 0.5);

}
/* Faq  */     
.faq-container {
  width: 90%;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-header {
  display: block;
  background: #007acc;
  color: white;
  padding: 16px;
  cursor: pointer;
  font-size: 21px;
  font-weight: bold;
  position: relative;
  transition: background 0.3s cubic-bezier(0.42, 0, 0.05, 0.97);
}


.button-container {
    display: flex; /* Enables flexbox layout */
    align-items: flex-start; /* Aligns items at the start of the cross-axis (top of the container) */
    justify-content: space-around; /* Distributes items evenly with space around each item */
    align-content: center; /* Centers the flex lines within the container (if multiple lines) */
    flex-wrap: wrap; /* Allows the items to wrap onto multiple lines if necessary */
    flex-direction: column-reverse; /* Arranges items in reverse order along the column (vertical axis) */
    height: 9vh; /* Sets the container height to 9% of the viewport height */
}


.animated-button-link {
    text-decoration: none; /* Removes underline from the link */
}

.animated-button {
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
}

.animated-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 123, 255, 0.5);
}

.faq-header:hover {
  background: #0056b3;
}

.faq-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + label::after {
  content: "-";
  transform: rotate(0deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background: #14283c;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 15px;
}

input[type="checkbox"]:checked ~ .faq-content {
  max-height: 500px; /* Increase as needed */
  padding: 15px;
}

.faq-content p {
  margin: 0;
  padding: 15px 0;
}

      
/* Special Footer Container */
.special-footer {
  background-color: #007acc;
  color: #fff;
  padding: 10px 33px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 42px auto;
}

/* Footer Sections Container */
.special-footer .footer-sections {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
}

/* Individual Footer Section */
.special-footer .footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  text-align: center;
}

/* Section Paragraphs */
.special-footer .footer-section p {
  font-size: 17px;
  line-height: 1.6;
}

/* Links Lists */
.special-footer .footer-section ul {
  list-style-type: none;
  padding: 0;
}

.special-footer .footer-section ul li {
  margin-bottom: 10px;
}

.special-footer .footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s;
}

.special-footer .footer-section ul li a:hover {
  color: #ffeb3b;
}

/* Social Media Icons */
.special-footer .social-icons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.special-footer .social-icons a {
  margin: 0 8px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.special-footer .social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}
      

/* Copyright Text */
.special-footer .copyright {
  margin-top: 20px;
  font-size: 13px;
  color: #fff;
}
