/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

p {
  margin: 0 0 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  background: #FCF5ED;
  border-bottom: 1px solid #eee;
  padding: 5px 0;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-logo img {
  height: 100px ;
  width: auto !important;
  max-width: 350px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Styles */
.main-navigation {
  position: relative;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-size: 19px;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
  padding: 10px 0;
}

.main-navigation a:hover {
  color: #dc2626;
}

/* Dropdown Menu Styles */
.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  flex-direction: column;
  gap: 0;
}

.main-navigation ul ul li {
  width: 100%;
}

.main-navigation ul ul a {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

.main-navigation ul ul a:hover {
  background: #f8f9fa;
  color: #dc2626;
}

.main-navigation li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Third level dropdown */
.main-navigation ul ul ul {
  top: 0;
  left: 100%;
}

/* Apply Now Button */
.apply-now-btn {
  background: #dc2626;
  color: white !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.apply-now-btn:hover {
  background: #ee4141;
  color: white !important;
}

/* Main Content */
.site-main {
  padding: 40px 0;
  min-height: 60vh;
}

.content-area {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.post {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.post-title {
  font-size: 2em;
  margin-bottom: 15px;
}

.post-title a {
  text-decoration: none;
  color: #333;
}

.post-title a:hover {
  color: #dc2626;
}

.post-meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.post-content {
  line-height: 1.8;
}

.read-more {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

/* Sidebar */
.sidebar {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 5px;
}

.widget {
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #333;
}

/* Footer */
.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0 10px;
  margin-top: 50px;
}

.site-footer a {
  color: #fff;
}

/* Contact Form Styles */
.wevics-contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wevics-contact-form .form-group {
  margin-bottom: 13px;
}

.wevics-contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.wevics-contact-form input,
.wevics-contact-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.wevics-contact-form textarea {
  height: 90px;
  resize: vertical;
}

.wevics-contact-form button {
  background: #dc2626;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.wevics-contact-form button:hover {
  background: #ee4141;
}

/* Visa Application Form Styles */
.wevics-apply-form {
  max-width: 800px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
}

.wevics-apply-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.wevics-apply-form .form-group {
  margin-bottom: 20px;
}

.wevics-apply-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.wevics-apply-form input,
.wevics-apply-form select,
.wevics-apply-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.wevics-apply-form input:focus,
.wevics-apply-form select:focus,
.wevics-apply-form textarea:focus {
  outline: none;
  border-color: #dc2626;
}

.wevics-apply-form textarea {
  height: 100px;
  resize: vertical;
}

.wevics-apply-form button {
  background: #dc2626;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
}

.wevics-apply-form button:hover {
  background: #ee4141;
}

/* Message Styles */
.contact-message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}

.contact-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Pagination */
.pagination {
  margin: 40px 0;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #dc2626;
}

.pagination a:hover {
  background: #dc2626;
  color: white;
}

.pagination .current {
  background: #dc2626;
  color: white;
}

/* Search Form */
.search-form {
  display: flex;
  margin-bottom: 20px;
}

.search-field {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.search-submit {
  padding: 10px 20px;
  background: #dc2626;
  color: white;
  border: 1px solid #dc2626;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.search-submit:hover {
  background: #005a87;
}

/* Comments */
.comments-area {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.comment-list {
  list-style: none;
}

.comment {
  margin-bottom: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 5px;
}

/* Footer Navigation */
.footer-bottom{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-navigation {
}

.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-content {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .site-logo img {
    height: 80px !important;
  }
  .header-right {

    justify-content: space-between;
    order: 2;
  }

  .menu-toggle {
    display: flex;
    order: 1;
  }

  .apply-button-wrapper {
    order: 2;
	display: none;
  }

  .main-navigation {
    width: 100%;
    order: 3;
  }

  .main-navigation ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 80px 0 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-navigation ul.active {
    left: 0;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-navigation a {
    padding: 15px 25px;
    color: #333;
  }

  .main-navigation a:hover {
    background: #f8f9fa;
    color: #dc2626;
  }

  /* Mobile Dropdown Styles */
  .main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-navigation li.menu-item-has-children > a::after {
    content: "+";
    float: right;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s;
  }

  .main-navigation li.menu-item-has-children.active > a::after {
    transform: rotate(45deg);
  }

  .main-navigation li.menu-item-has-children.active > ul {
    max-height: 500px;
  }

  .main-navigation ul ul a {
    padding: 12px 45px;
    border-bottom: 1px solid #e0e0e0;
  }

  /* Mobile Overlay */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .content-area {
    grid-template-columns: 1fr;
  }

  .wevics-apply-form .form-row {
    grid-template-columns: 1fr;
  }

  .wevics-apply-form {
    padding: 20px;
  }

  /* Footer Mobile */
  .footer-menu {
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .site-header {
    padding: 15px 0;
  }

  .apply-now-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .main-navigation ul {
    width: 100%;
  }
}
