/* <style> */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --dark-gold: #a67c52;
  --brown: #5d432c;
  --light-brown: #7a5c3c;
  --paper: #f5e9c9;
  --paper-dark: #e8d9b0;
  --bg: #e8dfca;
  --shadow: rgba(93, 67, 44, 0.3);
}

body {
  background-color: var(--bg);
  font-family: "Crimson Text", serif;
  color: var(--brown);
  line-height: 1.6;
  background-image: radial-gradient(
    circle,
    rgba(139, 107, 61, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Gujarati Text Styling */
.gujarati {
  font-family: "Hind Vadodara", sans-serif;
  font-weight: 500;
}

/* Title Fonts */
.title-font {
  font-family: "Shrikhand", cursive;
  letter-spacing: 1px;
}

.gujarati-title {
  font-family: "Hind Vadodara", sans-serif;
  font-weight: 700;
  font-size: 1.1em;
}

/* TechVatika Branding Font */
.techvatika {
  font-weight: 200;
  letter-spacing: 1px;
}

/* Particles Container */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #8b6b3d 0%, #5d432c 100%);
  color: var(--paper);
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><path d="M0,50 Q25,40 50,50 T100,50" stroke="%23f5e9c9" fill="none" stroke-width="1"/></svg>'),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.1) 50%,
      transparent 100%
    );
  pointer-events: none;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

/* Enhanced Logo styles */
.logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.nav-link {
  color: var(--paper);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  transition: 0.5s;
}

.nav-link:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-link:hover::before {
  left: 100%;
}

/* Main Content Styles */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 15px;
}

.container {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Enhanced Torn Paper Effect */
.torn-paper {
  background-color: var(--paper);
  padding: 35px 30px;
  position: relative;
  box-shadow: 0 10px 25px var(--shadow), inset 0 0 40px rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(139, 107, 61, 0.4);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.torn-paper::before,
.torn-paper::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  height: 25px;
  background-size: 20px 25px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}

.torn-paper::before {
  top: -12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='25' viewBox='0 0 20 25'%3E%3Cpath d='M0,25 Q5,20 10,25 T20,25 L20,0 L0,0 Z' fill='%23f5e9c9'/%3E%3C/svg%3E");
}

.torn-paper::after {
  bottom: -12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='25' viewBox='0 0 20 25'%3E%3Cpath d='M0,0 Q5,5 10,0 T20,0 L20,25 L0,25 Z' fill='%23f5e9c9'/%3E%3C/svg%3E");
}

.paper-content {
  position: relative;
  z-index: 1;
}

.paper-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      to bottom,
      rgba(213, 180, 111, 0.2) 0%,
      transparent 10%,
      transparent 90%,
      rgba(213, 180, 111, 0.2) 100%
    ),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.03"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%235d432c" stroke-width="1"/></svg>');
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 107, 61, 0.3);
  position: relative;
}

.form-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.form-header h2 {
  color: var(--brown);
  font-family: "Shrikhand", cursive;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.form-header p {
  color: var(--light-brown);
  font-size: 1.2rem;
  font-family: "Hind Vadodara", sans-serif;
  font-weight: 600;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.gujarati-label {
  font-family: "Hind Vadodara", sans-serif;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--dark-gold);
  background-color: rgba(255, 249, 230, 0.8);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--brown);
  font-family: "Crimson Text", serif;
  transition: all 0.4s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 8px rgba(139, 107, 61, 0.4),
    inset 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 253, 245, 0.95);
  transform: translateY(-2px);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-option input {
  width: auto;
}

.radio-option label {
  margin-bottom: 0;
  font-family: "Crimson Text", serif;
  font-weight: normal;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-option input {
  width: auto;
}

.checkbox-option label {
  margin-bottom: 0;
  font-family: "Crimson Text", serif;
  font-weight: normal;
}

.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--dark-gold),
    transparent
  );
  margin: 30px 0;
  position: relative;
}

.divider::before {
  content: "🧘🏻🧘🏻‍♀️🧘🏻‍♂️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 15px;
  color: var(--dark-gold);
  font-size: 1.4rem;
}

.submit-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  color: #fff;
  border: none;
  padding: 16px 35px;
  font-size: 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #e6c34d 0%, #b89470 100%);
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Enhanced Info Panel */
.info-panel {
  background-color: var(--paper);
  padding: 35px 30px;
  position: relative;
  box-shadow: 0 10px 25px var(--shadow), inset 0 0 40px rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(139, 107, 61, 0.4);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.info-panel::before,
.info-panel::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  height: 25px;
  background-size: 20px 25px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}

.info-panel::before {
  top: -12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='25' viewBox='0 0 20 25'%3E%3Cpath d='M0,25 Q5,20 10,25 T20,25 L20,0 L0,0 Z' fill='%23f5e9c9'/%3E%3C/svg%3E");
}

.info-panel::after {
  bottom: -12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='25' viewBox='0 0 20 25'%3E%3Cpath d='M0,0 Q5,5 10,0 T20,0 L20,25 L0,25 Z' fill='%23f5e9c9'/%3E%3C/svg%3E");
}

.info-panel h3 {
  color: var(--brown);
  font-family: "Shrikhand", cursive;
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 1px solid rgba(139, 107, 61, 0.3);
  padding-bottom: 15px;
  position: relative;
}

.info-panel h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 30%;
  right: 30%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Enhanced Map Container Styles */
.map-container {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(93, 67, 44, 0.15),
    0 4px 12px rgba(93, 67, 44, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  transition: all 0.4s ease;
  background: linear-gradient(145deg, #f5e9c9 0%, #e8d9b0 100%);
  padding: 3px;
}

.map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(212, 175, 55, 0.1) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 10px;
}

.map-container iframe {
  border-radius: 10px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.map-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(93, 67, 44, 0.2),
    0 6px 20px rgba(93, 67, 44, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(212, 175, 55, 0.5);
}

.map-container:hover iframe {
  filter: brightness(1.05) contrast(1.02);
}

.venue-info {
  text-align: center;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255, 249, 230, 0.6);
  border-radius: 5px;
  border: 1px dashed var(--dark-gold);
}

.venue-info h4 {
  font-family: "Shrikhand", cursive;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.venue-info p {
  color: var(--light-brown);
  font-size: 1.1rem;
}

.schedule {
  margin-bottom: 30px;
}

.schedule h4 {
  font-family: "Shrikhand", cursive;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 18px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.schedule h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-bottom: 1px dashed rgba(139, 107, 61, 0.3);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.schedule-item:hover {
  background: rgba(255, 249, 230, 0.6);
  transform: translateX(5px);
}

.schedule-date {
  font-weight: bold;
  color: var(--brown);
  font-family: "Playfair Display", serif;
}

.schedule-time {
  color: var(--light-brown);
  font-weight: 600;
}

.contact-info {
  text-align: center;
  padding: 15px;
  background: rgba(255, 249, 230, 0.6);
  border-radius: 5px;
  border: 1px dashed var(--dark-gold);
}

.contact-info h4 {
  font-family: "Shrikhand", cursive;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 15px;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--light-brown);
  font-size: 1.1rem;
}

.contact-number i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #8b6b3d 0%, #5d432c 100%);
  color: var(--paper);
  padding: 30px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.03"><path d="M0,50 Q25,40 50,50 T100,50" stroke="%23f5e9c9" fill="none" stroke-width="1"/></svg>');
  pointer-events: none;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced Footer Logo */
.footer-logo {
  width: 100%;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.footer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
}

/* Contact Links Styling */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
  color: var(--paper);
  text-decoration: none;
}

.contact-link:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--paper);
}

.contact-link i {
  color: var(--gold);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-link {
  color: var(--paper);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px) scale(1.1);
  text-decoration: none;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid rgba(245, 233, 201, 0.3);
  padding-top: 20px;
}

/* SweetAlert Custom Styling */
.instruction-popup {
  border-radius: 15px;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.instruction-title {
  font-family: "Shrikhand", cursive;
  color: var(--brown);
  font-size: 1.8rem;
}

.instruction-content {
  font-family: "Poppins", sans-serif;
}

.instruction-confirm-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* Validation Styles */
.error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 5px rgba(231, 76, 60, 0.5) !important;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  font-family: "Hind Vadodara", sans-serif;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .form-header h2 {
    font-size: 2.5rem;
  }

  .submit-btn {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 45px;
  }

  .contact-details {
    gap: 35px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .form-header h2 {
    font-size: 2.8rem;
  }
}
/* </style> */
