/* Start custom CSS for html, class: .elementor-element-a1181a1 */.header1 {
      background: linear-gradient(135deg, #494276, #2a214e);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 0 0 20px 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      margin-bottom: 40px;
    }
    .header1 h1 {
      font-size: 36px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }
     @media (max-width: 768px) {
      .header1 h1 {
        font-size: 28px;
      }}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0bf2202 *//* Container for the cards */
        .cards-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
        }

        /* Card Styling */
        .contact-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid #e5e5e5;
            text-align: center;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        /* Card Header */
        .card-header {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }

        .card-header i {
            font-size: 30px;
            color: #4A4A4A;
            margin-right: 10px;
        }

        /* Enhanced Heading */
        .card-header h2 {
            font-size: 24px;
            font-weight: 700; /* Increased weight */
            color: #333;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin: 0;
            position: relative;
        }

        /* Hover effect on Heading */
        .card-header h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background-color: #494276;
            left: 25%;
            bottom: -5px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .card-header h2:hover::after {
            opacity: 1;
            left: 0;
            width: 100%;
        }

        /* Card Content */
        .card-content {
            font-size: 16px;
            color: #4A4A4A;
        }

        .card-content p {
            margin-bottom: 10px;
        }

        .card-content a {
            color: #494276;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            transition: color 0.3s ease;
        }

        .card-content a:hover {
            color: #494276;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cards-container {
                flex-direction: column;
                align-items: center;
            }
            .contact-card {
                width: 100%;
                max-width: 350px;
                margin-bottom: 20px;
            }
        }/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-4e30d41 *//* contact-form-style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f7fa;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

.wpcf7 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wpcf7-form {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.wpcf7-form:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.wpcf7-form label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  color: #494276;
  font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form textarea {
  height: 120px;
  resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #494276;
  box-shadow: 0 0 5px rgba(73, 66, 118, 0.3);
}

.wpcf7-form input[type="submit"] {
  background: #494276;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  margin-top: 20px;
}

.wpcf7-form input[type="submit"]:hover {
  background: #2a214e;
}

@media (max-width: 768px) {
  .wpcf7-form {
    padding: 20px;
  }
}/* End custom CSS */