
    /* body {
 
  background-color: #0e0e0e;
  color: #fff;
  margin: 0;
  padding: 0;
} */
 body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}


/* Hero Section */
.contact-main-content section {
    position: relative;
    padding: 80px 40px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-hero {
    position: relative;
    height: 60vh; /* Shorter hero section for about page */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-attachment: fixed; /* Parallax effect */
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
     /* For any internal sparkles */
}


.hero-content {
    z-index: 10;
}

.contact-hero h1 {
  
    font-size: 4em;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.5em;
    color: #bbb;
    margin-top: 0;
}

.animated-heading {
  font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite; /* Reusing shine animation */
    letter-spacing: 2px;
    margin-bottom: 25px;
}



@keyframes shine {
  to {
    background-position: -200% center;
  }
}

.floating-dots::before, .floating-dots::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 300%;
  top: -100%;
  left: -50%;
  background: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBg 15s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.floating-dots::after {
  animation-direction: reverse;
  opacity: 0.5;
}


@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes moveBg {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10%, 10%); }
} 
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .floating-dots::before,
  .floating-dots::after {
    background: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 60px 60px;
  }
}

.contact-section {
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #000;
  }

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  z-index: 3;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
    font-family: 'Cinzel Decorative', serif;

  font-size: 28px;
  color: #fadd7e;
}

.contact-info p {
  margin: 12px 0;
  font-size: 16px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: #fadd7e;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.3);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  transition: border-color 0.3s;
}
.form-row {
  display: flex;
  gap: 16px;
}

.form-row input {
  flex: 1;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fadd7e;
  outline: none;
}

.contact-form button {
  background: linear-gradient(to right, #fadd7e, #ffffff);
  color: #222;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  /* transition: background 0.3s, transform 0.3s; */
}

.contact-form button:hover {
  background: #fadd7e;
  transform: scale(1.05);
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(250, 221, 126, 0.2);
  z-index: 3;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

 .fade-in-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Keyframes for fade and upward slide */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.diamond-1{
  top: 30% !important;
  left: 20% !important;
}



@media (max-width: 992px) {
 
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .contact-main-content section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }


}


