/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-buttons button {
  width: 40% !important;
  padding: 8px !important;
  background: linear-gradient(to right, #3b82f6, #2563eb) !important;
  color: white !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  text-align: center !important;
}

.contact-buttons button:hover {
  background: linear-gradient(to left, #3b82f6, #2563eb) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
}

.contact-buttons button:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3) !important;
}

/* Compact Form Section */
.apply-form-section {
  padding-top: 1.5rem; /* Reduced from py-8 (2rem) */
  padding-bottom: 1.5rem;
}

.apply-form-container {
  max-width: 900px; /* Reduced from max-w-4xl (1024px) */
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Single column on small screens */
  gap: 1rem; /* Reduced from gap-6 (1.5rem) */
}

.apply-form-box {
  padding: 1rem; /* Reduced from p-6 (1.5rem) */
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.apply-form-box h2 {
  font-size: 1.5rem; /* Reduced from text-2xl (2rem) */
  margin-bottom: 0.75rem; /* Reduced from mb-4 (1rem) */
  font-weight: 700;
  color: #0d9488;
}

.apply-form-box form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Reduced from space-y-4 (1rem) */
}

.apply-form-box label {
  font-size: 0.875rem; /* Same as text-sm */
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem; /* Reduced */
}

.apply-form-box input,
.apply-form-box textarea {
  padding: 0.5rem; /* Reduced from px-3 py-2 */
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem; /* Reduced for consistency */
  width: 100%;
  box-sizing: border-box;
}

.apply-form-box button {
  padding: 0.5rem 1rem; /* Reduced from py-2 */
  font-size: 0.875rem;
  background-color: #0d9488;
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}

.apply-form-box button:hover {
  background-color: #0b8276;
}

/* Social Media Login Section */
.apply-social-box {
  padding: 1rem; /* Reduced from p-6 */
}

.apply-social-box h2 {
  font-size: 1.5rem; /* Reduced from text-2xl */
  margin-bottom: 0.75rem;
}

.apply-social-box button {
  padding: 0.5rem; /* Reduced */
  font-size: 0.875rem;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #34495e;
  list-style: none;
  min-width: 150px;
  border-radius: 5px;
}
.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: white;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('/images/cuba.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}


/* Info Section */
.info {
  padding: 60px 20px;
  background: #f4f4f4;
}
.info-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.info-container h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.info-item {
  text-align: center;
}
.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
  object-fit: cover;
}
.info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.info-item p {
  color: #666;
  font-size: 1rem;
  text-align: justify;
}

/* Process Section */
.process {
  padding: 60px 20px;
  background: #fff;
}
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.process-container h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.step {
  position: relative;
  padding-top: 40px;
}
.step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  line-height: 30px;
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.step h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.step p {
  color: #666;
  text-align: justify;
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
  background: #f4f4f4;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-container h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-question {
  font-size: 1.3rem;
  cursor: pointer;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}
.faq-answer {
  display: none;
  padding: 15px;
  color: #666;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #fff;
}
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-container h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-container p {
  margin-bottom: 30px;
  color: #666;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
#contact-form textarea {
  resize: vertical;
}
#contact-form button {
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#contact-form button:hover {
  background: #2980b9;
}
#contact-message {
  margin-top: 15px;
  color: green;
}

/* Travel Tips Section */
.travel-tips {
  padding: 60px 20px;
  background: #f4f4f4;
}
.tips-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.tips-container h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.tip-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.tip-item p {
  color: #666;
}

/* Dashboard Styles */
.container {
  max-width: 1200px;
  margin: 80px auto 20px;
  padding: 20px;
}
.dashboard-actions {
  margin: 20px 0;
}
#applications-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
#applications-table th,
#applications-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
#applications-table th {
  background: #3498db;
  color: white;
}
#applications-table tr:nth-child(even) {
  background: #f4f4f4;
}
#no-applications {
  text-align: center;
  color: #666;
  margin-top: 20px;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Form Styles (for other pages) */
label {
  display: block;
  margin: 10px 0 5px;
}
input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
}
button {
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
button:hover {
  background: #2980b9;
}
#message, #agentMessage {
  margin-top: 15px;
  color: green;
}
.two-column .columns {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}
.form-column, .info-column { flex: 1; padding: 1rem; }
.form-column form { display: flex; flex-direction: column; }
.form-column label { margin-top: 0.5rem; }
.form-column input { margin-bottom: 1rem; padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; }
.form-column button { padding: 0.75rem; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer; }
.form-column button:hover { background-color: #0056b3; }
.info-column { background-color: #f8f9fa; border-radius: 8px; }
.cuba-flag { width: 100%; max-width: 200px; display: block; margin: 0 auto 1rem; }
.info-column h3 { margin-bottom: 1rem; }
.info-column p { margin-bottom: 1rem; line-height: 1.6; }
.visa-form-phase {
  transition: opacity 0.3s ease;
}

.visa-form-phase[style*="display: none"] {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.visa-form-phase[style*="display: block"] {
  opacity: 1;
}

.visa-form-phase h3 {
  margin-bottom: 1rem;
}

.visa-form-phase button {
  margin-top: 1rem;
  margin-right: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.visa-form-phase button:hover {
  background-color: #0056b3;
}

#visaFormPhase3 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

#visaFormPhase3 li {
  margin-bottom: 0.5rem;
}

#visaFormPhase3 li strong {
  display: inline-block;
  width: 150px;
}

/* Ensure form inputs remain consistent */
.form-column input {
  width: 100%;
  box-sizing: border-box;
}


.visa-form-phase input[type="file"] {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Review section adjustments */
#visaFormPhase3 ul li span {
  word-break: break-all;
}

/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  background: #0d9488;
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
}
.header-container {
  max-width: 1200px;
  background-color: #0d9488;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.logo {
  font-size: 1.5rem;
}
.nav-menu {
  position: relative;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav-links li a:hover {
  color: #3498db;
}

/* Hero */
.hero {
  background: #3498db;
  color: white;
  text-align: center;
  padding: 100px 20px;
  margin-top: 60px;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.cta-button {
  background: #2c3e50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}
.cta-button:hover {
  background: #34495e;
}


.info-item {
  text-align: center;
}
.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
  object-fit: cover;
}
.info-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.info-item p {
  color: #666;
  font-size: 1rem;
  text-align: justify;
}

/* Process Section */
.process {
  padding: 60px 20px;
  background: #fff;
}
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.process-container h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.step {
  position: relative;
  padding-top: 40px;
}
.step-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  line-height: 30px;
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.step h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.step p {
  color: #666;
  text-align: justify;
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
  background: #f4f4f4;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-container h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-question {
  font-size: 1.3rem;
  cursor: pointer;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}
.faq-answer {
  display: none;
  padding: 15px;
  color: #666;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #fff;
}
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-container h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-container p {
  margin-bottom: 30px;
  color: #666;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
#contact-form textarea {
  resize: vertical;
}
#contact-form button {
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#contact-form button:hover {
  background: #2980b9;
}
#contact-message {
  margin-top: 15px;
  color: green;
}

/* Travel Tips Section */
.travel-tips {
  padding: 60px 20px;
  background: #f4f4f4;
}
.tips-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.tips-container h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.tip-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.tip-item p {
  color: #666;
}

/* Dashboard Styles */
.container {
  max-width: 1200px;
  margin: 80px auto 20px;
  padding: 20px;
}
.dashboard-actions {
  margin: 20px 0;
}
#applications-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
#applications-table th,
#applications-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}
#applications-table th {
  background: #3498db;
  color: white;
}
#applications-table tr:nth-child(even) {
  background: #f4f4f4;
}
#no-applications {
  text-align: center;
  color: #666;
  margin-top: 20px;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Form Styles (for other pages) */
label {
  display: block;
  margin: 10px 0 5px;
}
input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
}
button {
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
button:hover {
  background: #2980b9;
}
#message, #agentMessage {
  margin-top: 15px;
  color: green;
}
.two-column .columns {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}
.form-column, .info-column { flex: 1; padding: 1rem; }
.form-column form { display: flex; flex-direction: column; }
.form-column label { margin-top: 0.5rem; }
.form-column input { margin-bottom: 1rem; padding: 0.5rem; border: 1px solid #ccc; border-radius: 4px; }
.form-column button { padding: 0.75rem; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer; }
.form-column button:hover { background-color: #0056b3; }
.info-column { background-color: #f8f9fa; border-radius: 8px; }
.cuba-flag { width: 100%; max-width: 200px; display: block; margin: 0 auto 1rem; }
.info-column h3 { margin-bottom: 1rem; }
.info-column p { margin-bottom: 1rem; line-height: 1.6; }
.visa-form-phase {
  transition: opacity 0.3s ease;
}

.visa-form-phase[style*="display: none"] {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.visa-form-phase[style*="display: block"] {
  opacity: 1;
}

.visa-form-phase h3 {
  margin-bottom: 1rem;
}

.visa-form-phase button {
  margin-top: 1rem;
  margin-right: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.visa-form-phase button:hover {
  background-color: #0056b3;
}

#visaFormPhase3 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

#visaFormPhase3 li {
  margin-bottom: 0.5rem;
}

#visaFormPhase3 li strong {
  display: inline-block;
  width: 150px;
}

/* Ensure form inputs remain consistent */
.form-column input {
  width: 100%;
  box-sizing: border-box;
}


.visa-form-phase input[type="file"] {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Review section adjustments */
#visaFormPhase3 ul li span {
  word-break: break-all;
}

.facebook-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 10px;
  border: 1px solid #1877F2;
  border-radius: 4px;
  background-color: #fff;
  color: #1877F2;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.facebook-login-button:hover {
  background-color: #f8f9fa;
}

.facebook-login-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.google-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 10px;
  border: 1px solid #4285F4;
  border-radius: 4px;
  background-color: #fff;
  color: #4285F4;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.google-login-button:hover {
  background-color: #f8f9fa;
}

.google-login-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.signup-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  padding: 10px;
  border: 1px solid #28a745;
  border-radius: 4px;
  background-color: turquoise;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.signup-button:hover {
  background-color: blue;
}

.dropdown-menu a.active {
  font-weight: bold;
  color: #28a745; /* Or your preferred color */
}

/* Responsive Design */
@media (max-width: 768px) {
	
	  .contact-buttons button {
    padding: 6px !important;
    font-size: 10px !important;
  }
	.apply-form-container {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 0.75rem;
  }

  .apply-form-box,
  .apply-social-box {
    padding: 0.75rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #2c3e50;
    width: 200px;
    padding: 20px;
  }
  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: #34495e;
  }
  .dropdown:hover .dropdown-menu {
    display: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .hero {
    padding: 60px 20px;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
  #applications-table {
    font-size: 0.9rem;
  }

 .two-column .columns { flex-direction: column; gap: 1rem; }
  .form-column, .info-column { padding: 0; }
  .social-button {
    font-size: 0.9rem;
  }
  .visa-form-phase button {
  width: 100%;
  margin-bottom: 0.5rem;
  }

    .visa-form-phase input[type="file"] {
    font-size: 0.9rem;
  }
}