:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ddb1f0f */.ravie-contact-pro {
  position: relative;
  padding: 100px 0;
  font-family: "Afacad", Sans-serif;
  overflow: hidden;
  transition: .4s;
}

/* BACKGROUND SHAPES */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(80px);
  animation: float 8s infinite ease-in-out;
}

.shape1 {
  width: 350px;
  height: 350px;
  background: #00c853;
  top: -80px;
  left: -80px;
}

.shape2 {
  width: 280px;
  height: 280px;
  background: #00c853;
  bottom: 50px;
  right: -60px;
}

.shape3 {
  width: 200px;
  height: 200px;
  background: #00c853;
  top: 40%;
  left: 60%;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0px); }
}

/* MAIN CONTAINER */
.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

.contact-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.contact-subheading {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: #444;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

/* LEFT SIDE INFO */
.contact-info h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #000;
}

.contact-info .info {
  margin-bottom: 25px;
}

.contact-info .info p {
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.contact-info a {
  text-decoration: none;
  color: #00a848;
  font-size: 18px;
  transition: .3s;
}

.contact-info a:hover {
  color: #007a33;
}

/* FORM CARD */
.contact-form-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  animation: fadeUp .8s ease forwards;
  transform: translateY(25px);
  opacity: 0;
}

@keyframes fadeUp {
  to { opacity:1; transform: translateY(0); }
}

/* FLOATING LABEL INPUTS */
.input-group {
  position: relative;
  margin-bottom: 2px;
  line-height: 12px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  background: transparent;
  transition: .3s;
}

.input-group label {
  position: absolute;
  top: 3px;
  left: 14px;
  color: #666;
  font-size: 14px;
  transition: .3s;
  pointer-events: none;
}

/* FLOAT UP */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 13px;
  padding: 0 4px;
  background: #fff;
  color: #00c853;
}

/* ERROR HANDLING */
.error-msg {
  display: none;
  color: red;
  margin-top: 4px;
  font-size: 14px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #00c853;
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: .3s;
}

.submit-btn:hover {
  background: #009844;
}

/* DARK MODE */
.dark-mode {
  background: #111;
}

.dark-mode .contact-heading,
.dark-mode .contact-info h3,
.dark-mode .contact-info p,
.dark-mode .contact-subheading {
  color: #fff;
}

.dark-mode .info p,
.dark-mode .info a {
  color: #00e676;
}

.dark-mode label {
  background: #111;
}

.dark-mode .contact-form-card {
  background: rgba(30,30,30,0.7);
  border-color: #333;
}

.dark-mode input,
.dark-mode textarea {
  border-color: #444;
  color: #fff;
}
#themeToggle {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #2b2828;
    border: 1px solid #8c8f8d;
    padding: 10px 13px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

#themeToggle:hover {
  background: #009844;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-grid { grid-template-columns:1fr; }
  .contact-heading { font-size: 36px; }
  #themeToggle { top: 10px; right: 10px; }
}/* End custom CSS */