/* RESET & BASIC */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9fb;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  padding: 20px;
}

/* HEADER */
.get-in-touch {
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
  padding: 0 15px;
}

.get-in-touch h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0c0c0c;
  margin-bottom: 12px;
}

.get-in-touch p {
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.5;
}

/* CONTACT CARDS SECTION */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: #fff;
  width: 320px;
  padding: 30px 20px 40px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(100, 100, 111, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(100, 100, 111, 0.3);
}

/* Highlighted Card */
.card.active {
  border: 2px solid #6c63ff;
  box-shadow: 0 12px 45px rgba(108, 99, 255, 0.3);
}

/* ICON CIRCLE */
.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f4ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #6c63ff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card:hover .icon {
  background: #6c63ff;
  color: #fff;
}

/* Specific Icon Colors */
.icon.red {
  background: #fee8e6;
  color: #d8312b;
}

.icon.red:hover {
  background: #d8312b;
  color: #fff;
}

.icon.purple {
  background: #f5f4ff;
  color: #6c63ff;
}

.icon.purple:hover {
  background: #6c63ff;
  color: #fff;
}

.icon.dark {
  background: #f7f3f9;
  color: #451e3f;
}

.icon.dark:hover {
  background: #451e3f;
  color: #fff;
}

/* CARD TEXT */
.card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(18 18 18);
}

.card p {
  font-size: 0.9rem;
  color: #666;
  margin-top: -6px;
}

.card h4 {
  font-weight: 700;
  color: #000000;
  margin-top: 5px;
  font-size: 1rem;
}

/* CONTACT FORM SECTION */
.contact-form {
  background: #fff;
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(100, 100, 111, 0.15);
  z-index: 2;
}

.form-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}

.form-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

/* FORM ELEMENTS */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  gap: 20px;
}

.row input {
  flex: 1;
  padding: 12px 15px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.row input:focus {
  outline: none;
  border-color: #6c63ff;
  box-shadow: 0 0 8px rgba(108, 99, 255, 0.4);
}

textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

textarea:focus {
  outline: none;
  border-color: #6c63ff;
  box-shadow: 0 0 8px rgba(108, 99, 255, 0.4);
}

/* BUTTON */
button[type="submit"] {
  background: #6c63ff;
  color: white;
  border: none;
  padding: 15px 0;
  font-size: 1.15rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #554fcf;
}

/* RESPONSIVE */

/* Small devices */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .row {
    flex-direction: column;
  }
}

/* Very small devices */
@media (max-width: 400px) {
  .contact-form {
    padding: 25px 20px;
  }
}



/* bgshaps    */
.bgShapesUltraX99 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

/* Common */
.shapeUltraX99 {
    position: absolute;
    opacity: 0.5;
    animation: floatUltraX99 14s infinite ease-in-out;
}

/* Circle */
.circleUltraX99 {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, #ff4d4d, transparent);
    border-radius: 50%;
    top: 10%;
    left: 12%;
}

/* Square */
.squareUltraX99 {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.25);
    transform: rotate(45deg);
    top: 65%;
    left: 10%;
    animation: rotateUltraX99 12s linear infinite;
}

/* Star */
.starUltraX99 {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 36px solid #ffd700;
    top: 20%;
    left: 80%;
}

/* Moon */
.moonUltraX99 {
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    box-shadow: -18px 0 0 #1a1a2e;
    top: 70%;
    left: 78%;
}

/* Birds */
.birdUltraX99 {
    width: 20px;
    height: 20px;
    border-top: 3px solid #333;
    border-right: 3px solid transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
    animation: flyUltraX99 18s linear infinite;
}

/* Bird positions */
.bird1UltraX99 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.bird2UltraX99 {
    top: 25%;
    left: -15%;
    animation-delay: 5s;
}

.bird3UltraX99 {
    top: 8%;
    left: -20%;
    animation-delay: 9s;
}

/* Small versions */
.smallUltraX99 {
    transform: scale(0.5);
    opacity: 0.3;
}

.circleUltraX99.smallUltraX99 {
    top: 80%;
    left: 40%;
}

.squareUltraX99.smallUltraX99 {
    top: 30%;
    left: 50%;
}

.starUltraX99.smallUltraX99 {
    top: 55%;
    left: 85%;
}

/* Animations */
@keyframes floatUltraX99 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
    100% { transform: translate(0, 0); }
}

@keyframes rotateUltraX99 {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes flyUltraX99 {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateX(50vw) translateY(-30px) rotate(-45deg);
    }
    100% {
        transform: translateX(110vw) translateY(10px) rotate(-45deg);
    }
}



/* CONTACT FORM PROFESSIONAL UI */
.contact-form {
    padding: 60px 20px;
    background: linear-gradient(135deg,#f5f7fb,#eef1ff);
    display: flex;
    justify-content: center;
}

.form-box {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    width: 100%;
    max-width: 750px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.form-box:hover {
    transform: translateY(-3px);
}

.form-box h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #222;
}

.form-box p {
    color: #777;
    margin-bottom: 25px;
}

.form-box .row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 6px rgba(108,99,255,0.25);
    outline: none;
}

.form-box textarea {
    min-height: 120px;
    resize: none;
    margin-bottom: 15px;
}

.form-box button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#6c63ff,#4a42d4);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-box button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* MOBILE */
@media(max-width:600px){
    .form-box .row {
        flex-direction: column;
    }
}.bgShapesUltraX99 {
    pointer-events: none;
}