/* CSS Reset */
body {
  font-family: "Inter", sans-serif;
}

.top-header {
  background-color: #003366;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-header .social-icons a {
  color: #ffffff;
  margin-right: 12px;
  text-decoration: none;
}

.top-header .contact-info i {
  margin-right: 6px;
  color: #ffc107;
}

.navbar-nav .nav-link {
  padding: 30px 0px;
}

.top-header .contact-info span {
  display: inline-block;
  margin-left: 15px;
}

.main-header {
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
  color: #003366;
}

.navbar-brand img {
  width: 200px;
}

.nav-link {
  color: #003366;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover {
  color: #003366;
}

.btn-login,
.btn-connect {
  margin-right: 10px;
  border-radius: 50px;
  padding: 5px 30px;
}

.btn-outline-primary {
  border-color: #003366;
  color: #003366;
}

.btn-primary {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50px;
}

.btn-secondary {
  background-color: #003366;
  border: 1px solid white;
  border-radius: 50px;
}

.btn-outline-primary:hover {
  border-color: white;
  color: blue;
  background-color: #003366;
}

.btn-primary:hover {
  border-color: white;
  color: white;
  background-color: #003366;
}

.btn-secondary:hover {
  border-color: #003366;
  color: #003366;
  background-color: white;
}

.video-banner {
  position: relative;
}

.video-banner .banner-content {
  position: absolute;
  color: #ffffff;
  text-align: center;
  width: 100%;
  top: 25%;
  bottom: 50%;
}

.carousel-item {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
}

.carousel-caption h5 {
  font-size: 2rem;
  color: #fff;
}

.carousel-caption p {
  font-size: 1rem;
  color: #ddd;
}

.about-images img {
  width: 40%;
  height: auto;
  border-radius: 0px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 20px;
}

.about-images img.office {
  transform: translateY(50px);
}

.about-links {
  display: grid;
}

.about-links a {
  text-decoration: none;
  color: #003366;
  border-bottom: 1px solid #003366;
  /* max-width: 415px; */
}

.about {
  padding-top: 10px;
  padding-bottom: 10px;
}

.about-details h2 {
  margin-bottom: 20px;
}

.service-heading {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-subheading {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 30px;
}

.industry-card {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0px;
  transition: transform 0.3s;
  overflow: hidden;
  position: relative;
}

.industry-card .image1 {
  background-image: url(./Images/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
}

.industry-card .grad {
  background: #ffffff;
  background: linear-gradient(360deg,
      rgb(0, 51, 102) 0%,
      rgba(255, 255, 255, 0) 100%);
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.industry-card .image1:hover .grad {
  background: linear-gradient(20deg,
      rgb(0, 51, 102) 20%,
      rgba(255, 255, 255, 0.2) 100%);
  transition: all 0.5s ease-in-out;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.industry-card .details {
  position: absolute;
  color: #ffffff;
  padding: 10px 20px;
  transition: all 0.5s ease-in-out;
  text-align: left;
  bottom: -150px;
}

.industry-card .image1:hover .details {
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
}

.industry-card .description {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.industry-card .image1:hover .details .description {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.industry-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.industry-card .industry-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: 600;
}

.industry-card .industry-subheading {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 0;
}

.service-card {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0px;
  transition: transform 0.3s;
  overflow: hidden;
  position: relative;
}

.service-card .image1 {
  background-image: url(./Images/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
}

.service-card .grad {
  background: #ffffff;
  background: linear-gradient(360deg,
      rgb(0, 51, 102) 0%,
      rgba(255, 255, 255, 0) 100%);
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service-card .service-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: 600;
}

.service-card .service-subheading {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 0;
}

.service-card .details {
  position: absolute;
  color: #ffffff;
  padding: 10px 20px;
  transition: all 0.5s ease-in-out;
  text-align: left;
  bottom: -220px;
}

.service-card .image1:hover .details {
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
}

.service-card .description {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.service-card .image1:hover .details .description {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service-card .industry-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: 600;
}

.service-card .industry-subheading {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 0;
}

.certification-section {
  background-color: #e8f1f7;
  /* light blue like the screenshot */
  padding: 30px 0;
}

.certification-logo {
  max-width: 200px;
  margin: 40px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
}

.text-blue {
  color: #003366;
}

.service {
  background-color: #003366;
  color: white;
}

.img-container {
  overflow: hidden;
  margin-bottom: 12px;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-200 {
  height: 200px;
}

.h-400 {
  height: 400px;
}

.h-190 {
  height: 190px;
}

.h-100-px {
  height: 200px;
}

.bg-light-blue {
  background-color: #f0f3f7;
}

.bg-dark-blue {
  background-color: #003366;
}

.bg-darker-blue {
  background-color: #00264d;
}

.partner-logo {
  height: 80px;
  border: none;
}

.footer-divider {
  border-top: 1px solid white;
}

.bg-footer {
  background-color: #004589;
  border-radius: 5px;
}

footer ul li a {
  color: rgba(255, 255, 255, .5) !important;
  margin-bottom: .5rem !important;
  font-weight: 500;
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0 !important;
}

.wide-footer ul {
  display: flex;
  justify-content: space-between;
}

.wide-footer li a {
  color: #fff !important;
}

.blog-badge {
  background-color: #001f3f;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.3rem;
}

.blog-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.blog-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.blog-date {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .carousel-caption {
    padding: 10px 15px;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .navbar-center {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .navbar-right {
    order: 2;
  }

  .navbar-brand {
    order: 1;
  }
}

@media (max-width: 576px) {
  .top-header .d-flex {
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }

  .top-header .contact-info {
    margin-top: 5px;
  }
}

.left-column ul, .middle-column ul, .right-column ul {
  padding: 0 !important;
  margin: 0;
  list-style: none;
}

/*# sourceMappingURL=style.css.map */


/*# Blog page css */

.category-pill {
  display: inline-block;
  border-radius: 25px;
  padding: 10px 20px;
  margin: 8px 8px;
  font-size: 14px;
  text-align: center;
  background-color: #e6eff7;
  cursor: pointer;
  color: #0d3c61;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  font-weight: normal;
}

.category-pill.active {
  background-color: #003366;
  color: white;
}

.categories-title {
  font-weight: 800;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .category-pill {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.newsletter-box {
  background-color: #003366;
  /* Deep blue */
  color: white;
  padding: 100px 100px;
  border-radius: 10px;
  text-align: center;
  margin: auto;
}

.newsletter-box h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.newsletter-box p {
  font-size: 14px;
  margin-bottom: 20px;
}

.subscribe-btn {
  border: 1px solid white;
  color: white;
  background-color: transparent;
  padding: 6px 20px;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.subscribe-btn:hover {
  background-color: white;
  color: #003366;
}

/* Industry */

.highlight-blue {
  color: #008cba;
}

.logo-container img {
  max-height: 50px;
  margin: 0 10px;
}

.stats-box {
  background-color: #f0f7ff;
  padding: 30px 20px;
  border-radius: 12px;
  margin-top: 40px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #002f6c;
}

.placeholder-box {
  background-color: #cbd5e1;
  height: 200px;
  border-radius: 12px;
}

.testimonial-section {
  background-color: #003366;
  color: white;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  color: #000;
  border-radius: 10px;
  padding: 20px;
  min-height: 220px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #333;
  font-size: 1.2rem;
}

.testimonial-title {
  font-weight: bold;
  color: #0074b7;
  margin-top: 10px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #333;
}

@media (max-width: 767px) {
  .testimonial-title-block {
    text-align: center;
    margin-bottom: 30px;
  }
}

.cta-section {
  background-color: #e8f0f6;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
}

.cta-section h4 {
  font-weight: 700;
  color: #003366;
}

.cta-section p {
  color: #444;
  max-width: 600px;
  margin: 10px auto 30px;
}

.cta-btn {
  border: 1px solid #003366;
  color: #003366;
  background-color: transparent;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.cta-btn:hover {
  background-color: #003366;
  color: #fff;
}

.section-title {
  color: #002c5f;
  font-weight: 700;
}

.step-card {
  background-color: #003366;
  color: white;
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  position: relative;
}

.step-number {
  font-size: 14px;
  opacity: 0.8;
}

.step-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.step-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* Staggered steps effect */
.step-container .step-card:nth-child(2) {
  margin-top: 40px;
}

.step-container .step-card:nth-child(3) {
  margin-top: 80px;
}

.step-container .step-card:nth-child(4) {
  margin-top: 120px;
}

.tools-section {
  padding: 60px 20px;
  background-color: #003366;
  color: white;
}

.tools-box {
  background-color: #E3EBF0;
  border-radius: 16px;
  padding: 30px;
  margin-top: 30px;
}

.tools-box h5 {
  font-weight: bold;
  color: #002c5f;
}

.tool-item {
  background-color: white;
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tool-name {
  color: #002c5f;
  font-weight: 500;
}

.tool-logo {
  width: 24px;
  height: 24px;
}

.animated-title {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MEGA MENU */
.services-column {
  background-color: #0d274d;
  color: white;
  padding: 40px 30px;
  min-height: 50vh;
}

.software-column {
  background-color: #064b8c;
  color: white;
  padding: 40px 30px;
  min-height: 50vh;
}

.custom-column {
  background-color: #e2ecfc;
  color: #003366;
  padding: 40px 30px;
  min-height: 50vh;
}

.mega-menu-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.service-menu {
  position: absolute;
  z-index: 99;
  left: 0;
  right: 0;
}

.service-menu ul {
  list-style: none;

}

.service-menu ul a {
  color: #fff;
  text-decoration: none;
  line-height: 35px;
}

.service-menu ul a {
  color: #fff;
  text-decoration: none;
  line-height: 35px;
}

.service-menu ul li .active {
  color: #036;
  text-decoration: none;
  background-color: #fff;
}

.service-menu .custom-column ul a {
  color: #003366;
  text-decoration: none;
}

.services-column .subsection-title {
  margin-top: 25px;
}

.column-item {
  font-size: 15px;
  margin-bottom: 12px;
}

/*///////////////////*/
.left-column .active {
  background: #064b8c;
  color: #fff;
}

.middle-column .active,
.middle-column .active a {
  background: #e2ecfc;
  color: #036;
}


.right-column .services-group li {
  width: 100%;
    color: #fff !important;
}

.right-column .services-group li:hover {
  width: 100%;
  background-color: #003366;
  color: #fff !important;
}

.right-column .services-group li:hover a {
  width: 100%;
  background-color: #003366;
  color: #fff !important;

}



/* Arrow color: white when in .left-column (dark background) */
/* Make the anchor a flex container */
.left-column .main-service>a,
.middle-column .category-item>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0px 20px; */
}

/* Style the arrow pseudo-element */
.left-column .main-service.active>a::after,
.middle-column .category-item.active>a::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  /* fa-chevron-right */
  font-weight: 900;
  color: inherit;
  /* Inherit text color */
  margin-left: auto;
}






/*///////////////////
    ////////////////////
     SINGLE BLOG PAGE 
     ///////////////////
     */



.category {
  color: #003366;
  font-weight: bold;
}

.post-title {
  font-weight: 700;
  font-size: 3rem;
}

.author-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.share-icons i {
  font-size: 1.2rem;
  margin-right: 10px;
  cursor: pointer;
}

.post-date,
.read-time {
  font-size: 0.95rem;
}

.meta-info i {
  margin-right: 5px;
}

.meta-info span {
  margin-right: 15px;
}

.breadcrumb-item {
  color: gray;
}

.text-grey {
  color: #948e8e;
}

.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.social-icons a:hover {
  background: #000;
  color: #fff;
}

.layout {
  display: flex;
  /* height: 100vh; */
}

.sidebar {
  /* box-sizing: border-box;
  background: #fff;
  flex-shrink: 0;
  overflow-y: auto; */
}

.content-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 0px 10px;
  background: #fff;
}

html,
body {
  height: 100%;
  margin: 0;
}

.layout {
  /* display: grid; */
  grid-template-columns: 200px 1fr 200px;
  /* Adjust widths as needed */
  /* height: 100vh; Full height of the viewport */
}

.sidebar {
  /* background-color: #f0f0f0; */
  /* padding: 1rem; */
  /* overflow: auto; Just in case content inside needs to scroll */
}

.content-wrapper {
  overflow: hidden;
  /* Prevent scroll on wrapper itself */
}

.scrollable-content {
  height: 100%;
  overflow-y: auto;

  /* Hide scrollbar for Webkit-based browsers (Chrome, Safari) */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.scrollable-content::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Optional for visibility */

.scrollable-content {
  background-color: #fff;
}

.position-sticky {
  position: sticky;
  top: 20px;
  align-self: start;
}

.sidebar.left {
  background-color: #fff;
  position: sticky;
  top: 0;
  align-self: flex-start;
}

.sidebar.right {
  background-color: #fff;
  position: sticky;
  top: 0;
  align-self: flex-start;
}

.toc-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.toc-list {
  /* list-style: none; */
  padding: 0;
  margin: 0;
}

.toc-list li {
  color: #948e8e;
  margin-bottom: 0.75rem;
  position: relative;
  list-style: none;
}

.toc-list li.active {
  color: #003366;
  /* pink for active */
  font-weight: 500;
}

.toc-list li.active::before {
  position: absolute;
  left: 0;
  color: #003366;
  font-size: 20px;
  line-height: 1;
}

.summary-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0.75rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.summary-box .summary-label {
  color: #003366;
  font-style: italic;
}

p {
  font-weight: 350;
}

.cta-banner img,
.infographic img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.faq-container {
  border-radius: 12px;
  border: 1px solid #ccc;
  overflow: hidden;
  max-width: 700px;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-question {
  background: #fff;
  padding: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  background: #f9f9f9;
  padding: 20px;
  display: none;
  font-size: 16px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(0deg);
}

.faq-item:first-child {
  border-top: none;
}

.author-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  border: 1px solid #ccc;
  max-width: 800px;
  margin: 0 auto;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f8f9fa;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.written-by {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

.author-bio {
  color: #495057;
  line-height: 1.6;
  margin-top: 15px;
  font-size: 0.95rem;
}

.social-buttons {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.linkedin {
  background-color: #0077b5;
}

.facebook {
  background-color: #1877f2;
}

.twitter {
  background-color: #1da1f2;
}

.pinterest {
  background-color: #bd081c;
}

.link {
  background-color: #6c757d;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 15px;
}

.nav-btn {
  padding: 12px 30px;
  border: 2px solid #dee2e6;
  background: white;
  color: #6c757d;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.nav-btn:hover {
  border-color: #007bff;
  color: #007bff;
  text-decoration: none;
}

.nav-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 576px) {
  .author-card {
    padding: 20px;
    margin: 0 10px;
  }

  .author-image {
    width: 60px;
    height: 60px;
  }

  .author-name {
    font-size: 1.3rem;
  }

  .navigation-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-btn {
    width: 100%;
    max-width: 200px;
  }
}

.related-post {
  border-bottom: 1px solid #ddd;
}

.related-post:last-child {
  border-bottom: none;
}

.newsletter-section {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 25px;
  padding: 40px 20px;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-tag {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.newsletter-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.email-form {
  background: white;
  border-radius: 50px;
  padding: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.email-input {
  border: none;
  background: transparent;
  padding: 15px 25px;
  font-size: 1rem;
  color: #333;
  flex: 1;
  outline: none;
}

.email-input::placeholder {
  color: #999;
}

.subscribe-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.illustration {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
}

.browser-window {
  background: white;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.browser-header {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #28ca42;
}

.character {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.character-1 {
  background: #6366f1;
  top: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.character-2 {
  background: white;
  color: #333;
  bottom: -40px;
  left: -30px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.envelope {
  background: #6366f1;
  width: 60px;
  height: 40px;
  position: relative;
  margin: 10px auto;
}

.envelope::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 25px solid #8b5cf6;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .illustration {
    display: none;
  }

  .newsletter-section {
    text-align: center;
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 2.2rem;
  }

  .email-form {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
  }

  .email-input {
    width: 100%;
    text-align: center;
  }

  .subscribe-btn {
    width: 100%;
    border-radius: 15px;
  }

  .newsletter-section {
    padding: 40px 20px;
  }
}

@media (max-width: 576px) {
  .newsletter-title {
    font-size: 1.8rem;
  }
}

.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  height: 200px;
}

.blog-card-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
}

.blog-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-meta i {
  color: var(--primary-color);
}

.contact-section {
  color: black;
  padding: 60px 0;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: black;
  color: white;
}

.form-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  border: 1px solid #e0e0e0;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #003366;
  transform: translateY(-2px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

.country-select {
  border-right: 1px solid #e0e0e0;
  padding-right: 15px;
  margin-right: 15px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .contact-section {
    padding: 40px 0;
  }

  .form-section {
    padding: 30px 20px;
  }
}

.single-blogs img.size-full {
  border-radius: 10px;
  box-shadow: 0px 0px 20px #eee;
}

.related-post a:hover {
  color: #003366 !important;
  border-left: 3px solid #003366;
  padding-left: 5px;
  transition: 0.5s;
}

.single-blogs .custom-card {
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: 0.5s;
}

.single-blogs .custom-card:hover {
  margin-top: -10px;
  box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.1);
  transition: 0.5s;

}

.single-blogs img.img-fluid {
  border-radius: 15px 15px 0px 0;
}

.custom-card .blog-content {
  padding: 10px;
}
