/* Theme Name: VisaConsult Theme */
/* Updated for light colors, sans-serif, and responsiveness */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
	padding:0;
	height: 100%;
	display: grid;
    flex-direction: column;
	min-height: 100dvh;
    grid-template-rows: auto 1fr auto;
  }
.page-wrapper {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
}

main {
  flex: 1 !important;
}
  
  a { color: #1a73e8; text-decoration: none; }
  a:hover { text-decoration: none; }
  
  header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #f0f4f8, #ffffff);
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #d2e3fc;
}

.site-branding h1 {
  margin: 0;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li a {
  font-size: 1rem;
  font-weight: 500;
  color: #1a73e8;
  padding: 8px 0;
  transition: color 0.3s;
  position: relative;
}

nav li a:hover,
nav li a:focus {
  color: #0c57c1;
}

nav li a::after {
  content: '';
  display: block;
  height: 2px;
  background: #0000;
  width: 0%;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

nav li a:hover::after {
  width: 100%;
}

#loginBtn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

#loginBtn:hover {
  background: #0c57c1;
}
  
  .hero {
  background: #ffffff;
  padding: 4rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-left img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-right h2 {
  font-size: 2.5rem;
  color: #1a73e8;
  margin-top: 0;
}

.hero-right p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}


.hero img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-content > div {
  flex: 1 1 45%;
  min-width: 280px;
  text-align: left;
}
  .hero img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
  }
  .hero div {
    flex: 1;
  }
  .hero h2 {
    font-size: 2.5rem;
    margin-top: 0;
    color: #1a73e8;
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  #visa-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  background: radial-gradient(circle at center, #1e3a8a, #0f172a);;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 1000px;
  margin: 2rem auto;
  }
  #visa-widget select{
  flex: 1 1 180px;
  padding: 0.75rem 1.5rem;
  background-color: #ffff;
  color: #030303;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}
  #visa-widget button {
    width: 100%;
    max-width: 200px;
    padding: .3rem;
    margin: .2rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  #visa-widget button {
    background: #1a73e8;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  #visa-widget button:hover {
  background-color: #1d4ed8;
  }
/* Eligibility result message */
#eligibility-result {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: #16a34a; /* green */
} 
  .blogs {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
  }
  .blogs h2 {
    margin-bottom: 1rem;
    color: #1a73e8;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .blog-post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform .2s;
  }
  .blog-post:hover {
    transform: translateY(-4px);
  }
  .blog-post img {
    display: block;
    width: 100%;
    height: auto;
  }
  .blog-post h3 {
    margin: .5rem 1rem;
    font-size: 1.25rem;
  }
  .blog-post p {
    margin: .5rem 1rem 1rem;
    color: #555;
  }
  
  .site-footer {
  background-color: #f2f6fb;
  border-top: 2px solid #d2e3fc;
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #333;
  margin-top: auto;
  height:20px;  
	  
}

.footer-left a,
.footer-right a {
  margin-right: 1rem;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.footer-left a:hover,
.footer-right a:hover {
  text-decoration: underline;
  color: #0c57c1;
}

.footer-right {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
/* General menu styling (adjust if needed) */
/* Fix submenu dropdown */
.main-menu .menu-item-has-children {
  position: relative;
}

/* Initially hide submenu */
.main-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1d2939;
  border-radius: 999px;
  z-index: 999;
  min-width: 180px;
}

/* Show submenu on hover */
.main-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Submenu items */
.main-menu .sub-menu li {
  padding: 4px 10px;
  text-align: left;
}

.main-menu .sub-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    display: inline-block;
    transition: color 0.3s;
}

.main-menu .sub-menu li:hover {
  background-color: #2d3b50;
	 border-radius: 999px;
}

  
  @media (max-width: 768px) {
   .main-menu {
	position: absolute;
    display: none !important;;
    flex-direction: column !important;
    position: absolute !important;
    top: 60px;
	right: auto;
    background-color: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 160px !important;
    transition: all 0.3s ease;
	gap:0rem !important;   
  }
	  #nav ul{
		  gap:1rem;
	  }
	.main-menu.show {
    display: flex !important;
  }
.main-menu li {
    text-align: left;
    margin: 0.5rem 0;
  }
	.main-menu a {
    color: black!important;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem;
    display: block;
    border-radius: 5px;
  }
  .menu-toggle {
    display: block !important;
    font-size: 2rem;
    background: none;
    color: black !important;
    border: none;
    margin-left: auto;
    z-index: 1100;
	}
	
	  .nav-wrapper {
		  padding:0 !important;
		  order:1;
	  }

	  .site-branding {
    order: 2 !important; /* Move to center */
    flex-grow: 1;
	display: flex;
	  }
	   .rounded-nav {
		   background-color:white;
  }
	  #user-menu {
		  order:3;
	  }

  .login-button {
    order: 3; /* Move to right */
    margin-left: 0;
  }
   .main-menu a:hover {
    background-color: #334155;
  }
   .hero-content { 
	  flex-direction: column; text-align: center;}
    nav ul { flex-direction: column; }
    nav li { margin: .5rem 0; }
	  .hero-section {
		 padding: 0 !important;
	  } 
	  h2 {
    font-size: 1.5rem !important;
	  }
      p {
			 font-size:1rem !important; 
		  }

	  .login-button {
    align-self: flex-end;
    margin-top: 0.5rem;
  }
	  .single-post-layout {
    flex-direction: column;
    padding: 1rem;
  }

  .post-sidebar, .single-post {
    width: 100%;
  }

  .post-sidebar {
    order: 2; /* Sidebar below post by default */
    margin-top: 2rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Enhanced navigation menu */
nav > ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  color: #1a73e8;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}
nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: #1a73e8;
  width: 0%;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}
nav a:hover::after {
  width: 100%;
}

/* Hero section update */
.hero {
  background: #fff;
  padding: 4rem 2rem;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero img {
  max-width: 100%;
  height: auto;
  flex: 1 1 50%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.hero div {
  flex: 1 1 45%;
  min-width: 300px;
}
.hero h2 {
  font-size: 2.5rem;
  color: #1a73e8;
  margin-top: 0;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
	height: fit-content;  
  }

  .footer-right {
    justify-content: center;
  }
}
.blog-page {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.blog-page h2 {
  margin-bottom: 2rem;
  color: #1a73e8;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-post {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform .2s;
}

.blog-post:hover {
  transform: translateY(-4px);
}

.blog-post img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post h3 {
  margin: 1rem;
  font-size: 1.2rem;
}
/* Section headings */
.eligibility-box {
  text-align: center;
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.blog-post p {
  margin: 0 1rem 1rem;
  color: #555;
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}

.pagination .page-numbers {
  margin: 0 5px;
  padding: 8px 12px;
  background: #f0f4f8;
  border-radius: 4px;
  text-decoration: none;
  color: #1a73e8;
}

.pagination .current {
  background: #1a73e8;
  color: white;
}
.single-post main,
.single-post .content-area,
.single-post .site-main,
.single-post .post,
.single-post article,
.single-post .entry-content {
  max-width: 900px;
  background-color: #ffff;
  width: 100%;
  margin: 0 auto;
  padding: 0rem 1rem;
  box-sizing: border-box;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 0;
}

.single-post h1 {
  font-size: 2rem;
  color: #000000;
}

.post-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.post-thumbnail img {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 6px;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.post-tags {
  margin-top: 2rem;
  font-size: 0.95rem;
}

.post-share {
  margin-top: 2rem;
  font-size: 0.95rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  font-weight: bold;
}

.post-navigation a {
  color: #1a73e8;
  text-decoration: none;
}

.post-navigation a:hover {
  text-decoration: underline;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;	
}

.blog-post {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border-color:#3333;
}

.blog-post:hover {
  transform: translateY(-6px);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post h3 {
  font-size: 1.2rem;
  padding: 1rem 1rem 0 1rem;
  color: #111827;
}

.blog-post p {
  padding: 0 1rem 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}
.btn-primary, .blog-post a.read-more {
  display: inline-block;
  background-color: #3b82f6;
  color: #fff;
  padding: 0.6rem 1.2rem;
  margin: 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover,
.blog-post a.read-more:hover {
  background-color: #2563eb;
}
.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag-filters .tag {
  background: #e0e7ff;
  color: #1d4ed8;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}

.tag-filters .tag:hover {
  background: #c7d2fe;
}
.section-divider {
  background: #ffffff;
  height: 60px;
  width: 100%;
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0% 100%);
  margin-top: -40px;
}
.hero-section {
  width: 100%;
  min-height: unset;
  padding: 3rem 2rem;
  background: radial-gradient(circle at center, #1e3a8a, #0f172a);
  color: white;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 50%;
  min-width: 280px;
}

.hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.hero-left .highlight {
  color: #60a5fa; /* light blue */
}

.hero-left p {
  margin: 1rem 0 2rem;
  color: #e2e8f0;
  font-size: 1.1rem;
  max-width: 90%;
}

.hero-buttons a {
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  margin-right: 1rem;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.btn-filled {
  background: #60a5fa;
  color: #fff;
}
.btn-filled:hover {
  background: #2563eb;
}

.hero-right {
  flex: 1 1 45%;
  text-align: center;
  min-width: 280px;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.site-header {
  width:100%
  background-color: #f9fafb; /* or transparent if preferred */
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}
.nav-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* Branding */
.site-branding {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-title {
  font-size: 1.3rem;
}

/* Capsule Menu */
.rounded-nav {
  display: flex;
  align-items: center;
  background-color: #1e293b;
  padding: 0.6rem 1 rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-right: 1rem;
}

.main-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  display: inline-block;
  transition: color 0.3s;
}

.main-menu li a:hover {
  color: #60a5fa;
}

/* Login Button */
.login-button {
  display: flex;
  align-items: center;
  justify-content: center; /* center text inside */
  background: #007BFF;
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  min-width: 100px;  /* button won’t shrink smaller than this */
  margin-left: 1rem;
  border: none;
  margin: 0;
  white-space: nowrap; /* prevents text from breaking into 2 lines */
}

.login-button:hover {
  background: #0f52ba;
}
#visa-widget + p {
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.related-tag-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-tag-posts li {
  margin-bottom: 0.5rem;
}

.related-tag-posts a {
  display: block;
  color: #1e40af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.related-tag-posts a:hover {
  color: #2563eb;
  text-decoration: underline;
}
.post-sidebar {
  flex: 0 0 250px;
  margin: 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.single-post-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin: 0 auto;
  box-sizing: border-box;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
@media (max-width: 700px) {
  #visa-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  #visa-widget select,
  #visa-widget button {
    width: 100%;
	flex:none;
	align-self: anchor-center;
    padding: .8rem;  
 }
}
header .site-title a  {	
  text-decoration: none;
  color: #1e3a8a !important; /* default color */
  transition: color 0.3s ease; /* smooth color transition */
}
header .site-title a:hover {
  color: #1a73e8 !important; /* color on hover */
}
.visa-types-list {
  list-style: none;
  padding: 0;
}

.visa-types-list li {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #c8f7ed;
  transition: box-shadow 0.3s ease;
}

.visa-types-list li:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.visa-types-list strong {
  font-size: 1.2em;
  color: #333;
}

.visa-types-list a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.visa-types-list a:hover {
  background-color: #0056b3;
}
.visa-directory h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0049b7;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.visa-directory p{
   font-size: 15px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#visa-countries-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}

#visa-countries-list li {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#visa-countries-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#visa-countries-list li img {
  width: 50px;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

#visa-countries-list li a {
  display: block;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  font-size: 1.1em;
}

#visa-countries-list li a:hover {
  text-decoration: underline;
  color: #0056b3;
}
.visa-directory {
  padding: 30px;
}

.visa-directory h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.visa-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.visa-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease;
}

.visa-card:hover {
  transform: translateY(-5px);
}

/* Flag Container */
.flag-wrapper {
  width: 100%;
  height: 120px;   /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
	background-color:#F2F2F2;
}

/* Flag Image Control */
.flag-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain; /* Prevents stretching */
}

.visa-country-name {
  padding: 15px;
  font-size: 1.1em;
  font-weight: bold;
  color: #222;
}
:root{
  --bg: #f8fafc;
  --card: #fff;
  --muted: #6b7280;
  --accent-1: #6c5ce7;
  --accent-2: #09c6f9;
  --danger: #ef4444;
  --success: #10b981;
  --radius: 12px;
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.08);
  --ui-font: Inter, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
#visa-detail-page{
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding: 2rem;
}
#visa-detail-page{
  max-width: 1000px;
  margin: 0 15rem;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.visa-content-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;	
  align-content: center;
  justify-content: center;
}

.visa-info {
  background: #0d1117;
  width: 300px;
  flex-shrink: 0;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 	
}
#visa-content-section {
  flex: 1;
}
.visa-info h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.visa-info p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.visa-info ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.visa-info ul li {
  margin: 0.5rem 0;
  font-size: 1rem;
}

#visa-form-section, #visa-form-extra-fields {
  padding: 2rem;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

#visa-form-section, #visa-form-extra-fields{
  margin-top: 0;
  font-size: 1rem;
  color: #001989;
	    border: 1px solid;
    border-color: #737373;
    border-radius: 10px
}

#visa-form, #extra-fields-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns */
  gap: 1.5rem 2rem;
  width: 100%;
  max-width: 100%;
}

#visa-form label, #extra-fields-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 14px;
  color: #333;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field input[type="number"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
  width:100%;
  box-sizing:border-box;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid;
  background:#fff;
  font-size:0.95rem;
  color:#0f1724;
  transition: border-color .12s, box-shadow .12s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
 outline: none;
  border-color: #0073e6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.1);
	border-width: 2px;
}

/* floating-ish left "icon" or label column if you want */
.form-field .field-meta {
  width:110px;
  min-width:110px;
  display:flex;
  align-items:flex-start;
  flex-direction:column;
}

.form-field.error { border-color: rgba(239,68,68,0.2); box-shadow: 0 6px 18px rgba(239,68,68,0.06); }
.form-field.error .field-label { color: var(--danger); }
.form-field .err-msg { color:var(--danger); font-size:0.86rem; margin-top:6px; }

#visa-form a, #extra-fields-form a {
  color: #c2185b;
  text-decoration: underline;
  font-weight: 600;
}

#next-step-btn, #next-step-btn-extra {
  background: #c2185b;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

#next-step-btn:hover, #next-step-btn-extra:hover {
  background: #ad1457;
}

#visa-faq-section {
  padding: 1rem;
  background: #e8f5e9;
}

#visa-faq-section h2 {
  font-size: 1rem;
  color: #2e7d32;
}

#visa-faqs {
  list-style: none;
  padding: 0;
}

#visa-faqs li {
  margin: 1rem 0;
  padding: 1rem;
  border-left: 5px solid #66bb6a;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#visa-faqs li strong {
  color: #1b5e20;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  #visa-detail-page {
    padding: 1rem;
	  margin:0;
  }

  .visa-info h1 {
    font-size: 2rem;
  }

  #visa-form-section h2,
  #visa-faq-section h2 {
    font-size: 1.5rem;
  }
	.rounded-nav {
  background-color: white;
  border-radius: 0px;
  box-shadow: none;
}
.visa-info .visa-details {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.visa-info .visa-details div {
  background: #161b22;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}
	.visa-directory h1 {
		font-size:1.4rem;
	}
}
/* Responsive Adjustments */
@media (max-width: 600px) {
  .visa-info .visa-details {
    flex-direction: column;
    align-items: center;
  }
}
/* Responsive */
@media (max-width: 768px) {
  #visa-detail-page {
    flex-direction: column;
  }

  .visa-info {
    width: 100%;
  }
}
.visa-info, #visa-form-section {
  flex: 1;
}

.visa-faqs {
  width: 100%;
}
.coming-soon-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  background-color: #f1f5f9;
  padding: 2rem;
}

.coming-soon-content h1 {
  font-size: 2rem;
  color: #2563eb;
}

.coming-soon-content p {
  font-size: 1.2rem;
  color: #334155;
  margin: 1rem 0;
}
.contact-page {
  padding: 2rem;
  background-color: #f9fafb;
  text-align: center;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-info li {
  margin: 0.5rem 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 2rem auto;
  gap: 1rem;
}

.contact-form input, .contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
}

.contact-form button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #1e40af;
}
.about-page {
  padding: 2rem;
  background-color: #ffffff;
  text-align: center;
}

.about-content p {
  max-width: 700px;
  margin: 1rem auto;
  color: #475569;
  line-height: 1.6;
  font-size: 1.1rem;
}
.my-visa-widget
.eligibility-box {
    font-size: 1.5rem;
}
.my-visa-widget #visa-widget {
      justify-content: center; 
       background: none !important;
       padding: 0rem;	
}
.my-visa-widget #visa-widget select {
	border: revert-layer;
	font-size:0.8rem;
}
.visa-page-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  flex-wrap: wrap;
}

.visa-sidebar {
  flex: 0 0 300px;
  background: #f1f5f9;
  border-radius: 8px;
}

.visa-main-content {
  flex: 1;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.visa-sidebar .eligibility-box{
	font-size: 0.9rem;
	font-weight: 700;
}
/* Responsive for mobile */
@media (max-width: 768px) {
  .visa-page-container {
    flex-direction: column;
  }

  .visa-sidebar,
  .visa-main-content {
    width: 100%;
  }
}
.visa-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.visa-popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: popupFade 0.3s ease forwards; /* Ensure 'forwards' to stay visible */;
}

.visa-popup-content h3 {
  margin-top: 0;
  color: #1a73e8;
}

.visa-popup-content p {
  color: #333;
  margin: 1rem 0;
}

.visa-popup-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 24px;
  cursor: pointer;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* modern CSS-only upload UI (no JS required) */
#document-upload-section { max-width:900px; margin:28px auto; padding:30px; background:linear-gradient(180deg,#fbfdff,#f6fbff); border-radius:16px; box-shadow:0 10px 30px rgba(15,23,42,0.06); font-family:Inter,system-ui,Arial; }
#document-upload-section h2 { text-align:center; margin-bottom:20px; font-weight:700; font-size:1.6rem; background:linear-gradient(90deg,#7c3aed,#06b6d4); -webkit-background-clip:text; color:transparent; }

.upload-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:760px){ .upload-grid{grid-template-columns:1fr;} }

.upload-box {
  display:flex; gap:14px; align-items:center;
  background:#fff; border-radius:12px; padding:18px; border:1px solid #e6eef6;
  cursor:pointer; transition:transform .14s ease,box-shadow .14s ease,border-color .14s ease;
  position:relative; overflow:hidden;
}

/* hide the native file input but keep it accessible */
.upload-box input[type="file"]{ position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:pointer; }

/* icon */
.ub-icon { min-width:56px; min-height:56px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700;
  background:linear-gradient(135deg,#7c3aed,#06b6d4); box-shadow:0 6px 18px rgba(99,102,241,0.12);
}

/* main text */
.ub-main .title { font-weight:700; color:#071133; margin-bottom:4px; }
.ub-main .subtitle { font-size:0.92rem; color:#6b7280; margin-bottom:8px; }
.file-preview { font-style:italic; color:#6b7280; font-size:0.9rem; }

/* hover/focus styles (input :focus-within uses file input focus) */
.upload-box:hover, .upload-box:focus-within { transform:translateY(-4px); border-color:#7c3aed; box-shadow:0 12px 30px rgba(99,102,241,0.08); background:linear-gradient(180deg,#fff7ff,#f6fbff); }

/* show required star using :has (modern browsers) */
label.upload-box:has(input[required]) .title::after {
  content: " *"; color:#ef4444; margin-left:6px; font-weight:700;
}

/* show "selected" state when input is valid (HTML5 validity) */
/* NOTE: input:valid works for file inputs only when required & file chosen */
.upload-box input:valid + .ub-icon ~ .ub-main .file-preview,
.upload-box input:valid ~ .ub-main .file-preview {
  content: ""; color:#0f172a; font-weight:700;
}
.upload-box input:valid ~ .ub-main .file-preview::before {
  content: "Selected ✓"; display:inline-block; color:#10b981; font-weight:700;
  margin-right:6px;
}

/* submit */
.submit-row { text-align:center; margin-top:175px; }
.submit-row button { background:linear-gradient(90deg,#7c3aed,#06b6d4); color:#fff; border:none; padding:12px 28px; border-radius:999px; font-weight:700; cursor:pointer; box-shadow:0 8px 24px rgba(99,102,241,0.18); }


#dashboard-app 
{ 
  max-width: 1000px;
  margin: 2rem auto;
  font-family: sans-serif;
  color: #333;
}
#dashboard-app {
  max-width: 1200px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
}

#dashboard-app h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0d47a1;
}

#dashboard-app h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #333;
}

#dashboard-app ul {
  list-style: none;
  padding-left: 0;
}

#dashboard-app ul li {
  padding: 10px 15px;
  margin-bottom: 8px;
  background: #f4f6f8;
  border-radius: 8px;
  transition: background 0.3s ease;
}

#dashboard-app ul li:hover {
  background: #e3f2fd;
}

/* For links inside the list */
#dashboard-app ul li a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

#dashboard-app ul li a:hover {
  text-decoration: underline;
}

#user-menu {
  position: relative;
  display: inline-block;
}

#dropdownMenu {
  position: absolute;
  right: 0;
  background: #fff;
  min-width: 150px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
  border-radius: 8px;
  overflow: hidden;
}

#dropdownMenu a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

#dropdownMenu a:hover {
  background: #f0f0f0;
}
#save-draft-btn, #save-draft-btn-extra {
  background: #c2185b;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

#save-draft-btn:hover, #save-draft-btn-extra:hover {
  background: #ad1457;
}
/* New Horizontal Visa Info Section */
.visa-horizontal-details {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: nowrap;
}

.visa-horizontal-details > div {
  background: #161b22;
  padding: 0.75rem 0.3rem;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  flex: 0 0 calc(33.33% - 1rem); /* 3 equal columns */
  text-align: center;
}

.visa-info-horizontal .visa-title-bar {
  margin-bottom: 1rem;
}

.visa-info-horizontal h1 {
  margin: 0;
}

.visa-info-horizontal p {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.visa-info-horizontal .visa-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.visa-info-horizontal .visa-details div {
  background: #161b22;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}
.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .form-buttons {
    flex-direction: column;
    align-items: stretch;
  }
	.visa-horizontal-details > div {
    flex: 1 1 100%;
  }
	.visa-horizontal-details {
    flex-direction: column;
  }
	.form-group {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  #visa-form, #extra-fields-form {
    grid-template-columns: 1fr; /* One field per row on mobile */
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  p { font-size: 1rem; }
}
@media (max-width: 480px) {
  header {
    height: 30px;
  }
}
/* ----------------------------------------------------------------------------
   DASHBOARD: Accordion & Tables
   ---------------------------------------------------------------------------- */
/* Container styling */

/* Accordion button base */

.accordion-section {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
}
.accordion-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yellow-btn { background: #f1c40f; color: #333; font-weight:600; }
.green-btn  { background: #27ae60; color: #fff; font-weight:600; }

/* Arrow */
.accordion-btn::after {
  content: '▾';
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}
.accordion-btn.active::after {
  transform: rotate(180deg);
}

/* Accordion content wrapper */
.accordion-content {
  display: none;
  padding: .25rem;
  border: 1px solid #ddd;
  border-top: none;
  background: #fafafa;
}

/* ----------------------------------------------------------------------------
   DESKTOP TABLE
   ---------------------------------------------------------------------------- */
/* Table styling */
.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.app-table th,
.app-table td {
  padding: .75rem;
  border: 1px solid #ddd;
  text-align: left;
}
.app-table th {
  background: #0b4f9c;
  color: #fff;
  font-weight: 500;
}

/* Only show on desktop */
@media (min-width: 767px) {
  #draft-mobile-view, #submitted-mobile-view {
    display: none !important;
  }
}

/* ----------------------------------------------------------------------------
   MOBILE “COLLAPSIBLE ROWS”
   ---------------------------------------------------------------------------- */
/* Only show on mobile */
/* ----------------------------------------------------------------------------
   NEW MOBILE STYLES: For <div class="mobile-app-summary/details">
   ---------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .mobile-app-summary {
    background: #e6f2ff;
    padding: 0.75rem 1rem;
    font-weight: bold;
    border: 1px solid #ddd;
    margin-bottom: 4px;
    cursor: pointer;
    position: relative;
  }
	.app-table{
		display:none;
	}

  .mobile-app-summary::after {
    content: '▾';
    font-size: 1.25rem;
    float: right;
    transition: transform 0.3s ease;
  }

  .mobile-app-summary.active::after {
    transform: rotate(180deg);
  }

  .mobile-app-details {
    display: none;
    background: #fafafa;
    border: 1px solid #eee;
    border-top: none;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }

  .mobile-app-details.active {
    display: block;
  }

  .mobile-app-details p {
    margin: 6px 0;
    font-size: 0.95rem;
  }

  .mobile-app-details p strong {
    display: inline-block;
    width: 40%;
    color: #333;
  }
}

/* ----------------------------------------------------------------------------
   PAGINATION BUTTONS
   ---------------------------------------------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.pagination button {
  padding: .5rem .75rem;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
  transition: background .2s;
}
.pagination button:hover:not([disabled]) {
  background: #ddd;
}
.pagination button[disabled] {
  background: #f5f5f5;
  color: #888;
  cursor: not-allowed;
}
.pagination button.active-page {
  font-weight: bold;
  background: #0b4f9c;
  color: #fff;
  border-color: #0b4f9c;
}
.btn-resume, .btn-delete-server, .btn-delete{
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  cursor:pointer;	
}
.btn-delete-server{
	background: #dc3545;
}
.btn-resume{
	  background: #0b4f9c;
}
.spinner {
  border: 4px solid #eee;
  border-top: 4px solid #0b4f9c;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

#fullscreen-spinner .spinner-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.spinner-loader {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

#fullscreen-spinner p {
  font-size: 16px;
  color: #333;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.success-container {
  display: contents;
  align-items: center;
  justify-content: center;
  background-color: #d0fdd8;
}

.success-message {
  display:none;	
  text-align: center;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #2e7d32;
}

.success-message h2 {
  color: #2e7d32;
  font-weight: bold;
}

.btn-filled {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.btn-filled:hover {
  background-color: #1b5e20;
}
.progress-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step {
  text-align: center;
  cursor: pointer;
  flex: 1;
  position: relative;
}

.step .circle {
  width: 40px;
  height: 40px;
  background: #ddd;
  border-radius: 50%;
  margin: auto;
  line-height: 40px;
  font-weight: bold;
  color: #555;
  transition: all 0.3s ease;
}

.step.active .circle {
  background: #3498db;
  color: white;
  transform: scale(1.2);
}

.step.completed .circle {
  background: #2ecc71;
  color: white;
}

.step p {
  margin-top: 8px;
  font-size: 14px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 4px;
  background: #ddd;
  z-index: -1;
}

.step.completed:not(:last-child)::after {
  background: #2ecc71;
}
.status-label {
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.status-label.paid {
  background-color: #28a745; /* green */
}
.status-label.not-paid {
  background-color: #dc3545; /* red */
}
.btn-delete[disabled] {
  background: #ccc !important;
  cursor: not-allowed;
  opacity: 0.6;
}
/* === TEXTAREA === */
textarea {
  width: 100%;
  min-height: 40px;      /* collapsed (like input) */
  max-height: 200px;
  resize: vertical;      /* allow manual resizing too */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;      /* hide until expand */
}

/* Expand smoothly on focus */
textarea:focus {
  min-height: 100px;     /* expands */
  border-color: #0073e6;
  box-shadow: 0 0 5px rgba(0,115,230,0.3);
}


/* === CHECKBOXES & RADIOS === */
.form-field input[type="checkbox"],
.form-field input[type="radio"] {
  display: inline; /* hide native */
}

.form-field input[type="checkbox"] + label,
.form-field input[type="radio"] + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
  user-select: none;
}

/* Custom box/circle */
.form-field input[type="checkbox"] + label::before,
.form-field input[type="radio"] + label::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px; /* radio will override */
  background: #fff;
  transition: all 0.2s ease;
}

.form-field input[type="radio"] + label::before {
  border-radius: 50%;
}

/* Tick/Fill */
.form-field input[type="checkbox"]:checked + label::before {
  background: #0073e6;
  border-color: #0073e6;
}

.form-field input[type="radio"]:checked + label::before {
  background: #0073e6;
  border-color: #0073e6;
}

/* === DATE & TIME === */
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus {
  border-color: #0073e6;
  box-shadow: 0 0 5px rgba(0,115,230,0.3);
}


/* === REPEAT FIELD CONTAINER === */
.repeat-field-group {
  border: 1px dashed #ddd;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #fafafa;
}

.repeat-remove-btn {
  margin-top: 8px;
  background: #ff5a5a;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.repeat-remove-btn:hover {
  background: #e04a4a;
}

label:has(input[required])::after {
  content: " *";
  color: red;
  font-weight: bold;
}
.repeat-add-btn {
  display: inline-block;
  margin-top: 8px;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.repeat-add-btn:hover {
  background: #0056b3;
}
.payment-step-container {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  padding: 20px;
  width: 1200px;
}

.payment-summary {
  display: flex;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
}

/* ----------- Summary Box ----------- */
.summary-box {
  flex: 2;
  background: linear-gradient(135deg, #f5f7fa, #e2e6ec);
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.summary-box h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #222;
}

.summary-details p {
  margin: 10px 0;
  font-size: 1rem;
  color: #444;
}

.total-fee {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-fee h3 {
  margin: 0;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ----------- Payment Box ----------- */
.payment-box {
  flex: 1;
  background: linear-gradient(160deg, #ffffff, #eef0ff 70%);
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* Decorative top gradient strip */
.payment-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #635bff, #5145cd);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.payment-box h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

.payment-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 25px;
}

.stripe-btn {
  background: linear-gradient(135deg, #635bff, #5145cd);
  color: #fff;
  border: none;
  padding: 16px 35px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: inline-block;
  min-width: 180px;
}

.stripe-btn:hover {
  background: linear-gradient(135deg, #5145cd, #4033aa);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(99, 91, 255, 0.3);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #4CAF50;
  background: #f5f9f5;
  border-radius: 8px;
  padding: 8px 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.secure-note img {
  margin-right: 6px;
  height: 18px;
  width: 18px;
}

/* ----------- Responsive ----------- */
@media (max-width: 768px) {
  .payment-summary {
    flex-direction: column;
  }

  .summary-box, .payment-box {
    width: 100%;
  }

  .payment-box {
    padding: 25px 15px;
  }

  .stripe-btn {
    width: 100%;
    min-width: unset;
  }
	.payment-step-container {
		max-width:max-content;
	}
}

/* Fee table container */
.fee-table, .summary-details {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 15px;
  color: #333;
}

/* Each row */
.fee-table tr, .summary-details tr  {
  border-bottom: 1px dashed #ddd;
}

/* Table cells */
.fee-table td, .summary-details td {
  padding: 10px 8px;
}

/* Left column (labels) */
.fee-table td:first-child, .summary-details td:first-child {
  font-weight: 500;
  color: #555;
}

/* Right column (amounts) */
.fee-table td:last-child, .summary-details td:last-child {
  text-align: right;
  font-weight: 600;
  color: #222;
}

/* Highlight total row */
.fee-table .fee-total {
  border-top: 2px solid #333;
  border-bottom: none;
}

.fee-table .fee-total td {
  padding-top: 14px;
  font-size: 16px;
  font-weight: 700;
}

/* Total amount color */
.fee-table .fee-total td:last-child {
  color: #000;
}

/* Currency alignment */
.fee-table span {
  display: inline-block;
  min-width: 40px;
}
/* Info icon container */
.info-tooltip {
  position: relative;
  display: inline-block;
  margin-left: 6px;
  color: #635bff;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

/* Tooltip text */
.info-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 220px;
  background-color: #333;
  color: #fff;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  font-size: 12px;
  line-height: 1.4;
}

/* Tooltip arrow */
.info-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Show on hover (desktop) */
.info-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Show on focus (mobile & keyboard) */
.info-tooltip:focus .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.visa-banner {
  text-align: center;
}

.visa-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Sidebar */
.sidebar-banner img {
  max-width: 300px;
}

/* Full width hero */
.hero-banner img {
  width: 100%;
  border-radius: 0;
}
@media (max-width: 768px) {
  .my-visa-widget {
    display: none !important;
  }
}
.option-inline input[type="radio"],
.option-inline input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.option-inline{
  align-items: center;
  cursor: pointer;
  font-size: 12px;
color:black;
}
.condition-group-active {
  border: 2px solid #0073aa;
  border-radius: 10px;
  padding: 18px;
  margin: 20px 0;
  background: rgba(0,115,170,0.05);
  transition: all 0.3s ease;
}

.condition-group-active .form-field {
  margin-bottom: 15px;
}
.condition-group-active {
  position: relative;
  box-shadow: 0 0 0 2px #0073aa;
  background: rgba(10,132,255,0.06);
  border-radius: 6px;
  transition: 0.3s ease;
}
.condition-overlay {
  position: absolute;
  border: 2px dashed #0073aa;
  pointer-events: none;
  animation: fadeHighlight 1.2s ease;
}
#visa-faqs {
  list-style: none;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Answer hidden by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 500px; /* enough space */
  padding: 10px 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + becomes × */
}
.faq-item {
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  font-size: 15px;
}
@media (max-width: 768px) {

  /* Main heading */
  .single-post h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  /* Subheadings */
  .single-post h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .single-post h3 {
    font-size: 1.15rem;
    margin-top: 16px;
    margin-bottom: 8px;
  }

  /* Paragraph text */
  .post-content {
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.2px;
  }

  /* Paragraph spacing (VERY IMPORTANT) */
  .post-content p {
    margin-bottom: 14px;
  }

  /* Lists */
  .post-content ul,
  .post-content ol {
    padding-left: 18px;
    margin-bottom: 14px;
  }

  .post-content li {
    margin-bottom: 6px;
  }

  /* Links */
  .post-content a {
    color: #0073e6;
    text-decoration: underline;
  }

  /* Strong text */
  .post-content strong {
    font-weight: 600;
  }

  /* Blockquote */
  .post-content blockquote {
    border-left: 3px solid #0073e6;
    padding-left: 12px;
    margin: 12px 0;
    color: #555;
  }
}
@media (max-width: 768px) {
  .post-content {
    max-width: 100%;
    padding: 0 14px;
  }
}
@media (max-width: 768px) {
  .post-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95rem;
}

.post-content th,
.post-content td {
  border: 1px solid #000;
  padding: 10px;
  text-align: left;
}

.post-content th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.post-content tr:nth-child(even) {
  background-color: #fafafa;
}
@media (max-width: 768px) {
  .post-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
