@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Mobile responsive */
@media (max-width: 768px) {
  #contactUs {
    width: fit-content;
    height: 90dvh;
    background-color: transparent;
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 30px;
  }

  .contactPageContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contactPageContainer > .heading {
    grid-area: 1 / 1;
    width: 95dvw;
  }

  .contactPageContainer > .heading > h2 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: black;
    text-align: center;
    letter-spacing: 1mm;
  }

  .contactPageContainer > .heading > p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: black;
    text-align: center;
    width: 80%;
    margin: auto;
    margin-bottom: 80px;
  }

  .contactPageContainer > .contactForm {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    margin: auto;
    text-align: center;
  }

  .contactFormLeft {
    grid-area: 2 / 1;
    width: 95dvw;
    text-align: center;
  }

  label {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }

  #name,
  #email,
  #message {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    height: 25px;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: solid;
    border-color: black !important;
  }

  #name::placeholder,
  #email::placeholder {
    text-align: center !important;
  }

  #name:focus,
  #email:focus,
  #message:focus {
    outline: none;
  }

  #message {
    height: 80px;
    border: solid 2px black;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
  }

  #message:focus {
    outline: none;
  }

  #message::placeholder {
    padding-top: 55px !important;
    text-align: center !important;
  }

  #message:focus::placeholder {
    color: white;
  }

  #sendBtn {
    width: 50%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: white;
    background-color: black;
    border: none;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    transition: all ease-in-out 0.3s;
  }

  #sendBtn:hover {
    cursor: pointer;
    background-color: white;
    color: black;
    border: solid 1px black;
  }

  .contactFormRight {
    grid-area: 3 / 1;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 80px;
    display: none;
  }

  .contactImage {
    width: 30%;
  }

  /* Bottom Row */
  #contactUs .contact-bottom-row {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem 0;
    align-items: center;
    text-align: center;
    background: transparent;
    margin-top: 120px;
  }

  /* Circle Box */
  #contactUs .contact-bottom-row > .box {
    background-color: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: none;
  }

  #contactUs .contact-bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  /* Apps */
  #contactUs .contact-bottom-row > .apps p {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    letter-spacing: 1.2mm;
    margin-bottom: 3px;
  }

  /* Socials */
  #contactUs .contact-bottom-row > .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
  }

  #contactUs .contact-bottom-row > .socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .socials a:hover {
    transform: scale(1.2);
  }

  #contactUs .contact-bottom-row > .socials img {
    width: 25px;
    height: 25px;
  }

  /* SweetAlert2 custom styles */
  .swal-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000; /* CAM primary color */
  }

  .swal-text {
    font-family: "Poppins", sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    color: black !important;
  }

  .swal-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: black;
    color: white !important;
    border-radius: 50px;
    width: 200%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #contactUs {
    width: auto;
    height: 120dvh;
    background-color: transparent;
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0px;
  }

  .contactPageContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: -200px;
  }

  .contactPageContainer > .heading {
    grid-area: 1 / 1;
    margin-top: 0px;
    margin-bottom: 100px;
  }

  .contactPageContainer > .heading > h2 {
    font-family: "Poppins", sans-serif;
    font-size: 45px;
    font-weight: 400;
    color: black;
    text-align: center;
    letter-spacing: 1.2mm;
  }

  .contactPageContainer > .heading > p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: black;
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: -20px;
  }

  .contactPageContainer > .contactForm {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .contactFormLeft {
    grid-area: 2 / span 2;
    text-align: left;
    width: 50%;
    margin-left: 50px;
  }

  label {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: black;
  }

  #name,
  #email,
  #message {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    height: 25px;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: solid;
    border-color: black;
  }

  #name:focus,
  #email:focus,
  #message:focus {
    outline: none;
  }

  #message {
    height: 80px;
    border: solid 2px black;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
  }

  #message:focus {
    outline: none;
  }

  #message::placeholder {
    padding-top: 55px !important;
  }

  #message:focus::placeholder {
    color: white;
  }

  #sendBtn {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: black;
    border: none;
    padding: 15px;
    border-radius: 50px;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    cursor: pointer;
    background-color: white;
    color: black;
    border: solid 1px black;
  }

  .contactFormRight {
    grid-area: 2 / span 3;
    text-align: left;
    margin-right: 0px;
  }

  .contactImage {
    width: 60%;
  }

  /* Contact Page Container */
  /* #contactUs .contactPageContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  } */

  /* Contact Form Layout */
  /* #contactUs .contactForm {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }

  #contactUs .contactFormLeft {
    flex: 1;
  }

  #contactUs .contactFormRight {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #contactUs .contactFormRight .contactImage {
    max-width: 100%;
    height: auto;
  } */

  /* Bottom Row */
  #contactUs .contact-bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 0;
    align-items: center;
    text-align: center;
    background: transparent;
    margin-bottom: -0px;
  }

  /* Circle Box */
  #contactUs .contact-bottom-row > .box {
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  /* Apps */
  #contactUs .contact-bottom-row > .apps p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 1mm;
  }

  /* Socials */
  #contactUs .contact-bottom-row > .socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin-right: 50px;
  }

  #contactUs .contact-bottom-row > .socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #contactUs .contact-bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }

  /* SweetAlert2 custom styles */
  .swal-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000; /* CAM primary color */
  }

  .swal-text {
    font-family: "Poppins", sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    color: black !important;
  }

  .swal-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: black;
    color: white !important;
    border-radius: 50px;
    width: 200%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #contactUs {
    width: auto;
    height: 120dvh;
    background-color: transparent;
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0px;
  }

  .contactPageContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: -200px;
  }

  .contactPageContainer > .heading {
    grid-area: 1 / 1;
    margin-top: 0px;
    margin-bottom: 100px;
  }

  .contactPageContainer > .heading > h2 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: black;
    text-align: center;
    letter-spacing: 1.2mm;
  }

  .contactPageContainer > .heading > p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: black;
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: -20px;
  }

  .contactPageContainer > .contactForm {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .contactFormLeft {
    grid-area: 2 / span 2;
    text-align: left;
    width: 50%;
    margin-left: 50px;
  }

  label {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }

  #name,
  #email,
  #message {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    height: 25px;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: solid;
    border-color: black;
  }

  #name:focus,
  #email:focus,
  #message:focus {
    outline: none;
  }

  #message {
    height: 80px;
    border: solid 2px black;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
  }

  #message:focus {
    outline: none;
  }

  #message::placeholder {
    padding-top: 55px !important;
    font-size: 12px;
  }

  #message:focus::placeholder {
    color: white;
  }

  #sendBtn {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: white;
    background-color: black;
    border: none;
    padding: 15px;
    border-radius: 50px;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    cursor: pointer;
    background-color: white;
    color: black;
    border: solid 1px black;
  }

  .contactFormRight {
    grid-area: 2 / span 3;
    text-align: left;
    margin-right: 0px;
  }

  .contactImage {
    width: 60%;
  }

  /* Contact Page Container */
  /* #contactUs .contactPageContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  } */

  /* Contact Form Layout */
  /* #contactUs .contactForm {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }

  #contactUs .contactFormLeft {
    flex: 1;
  }

  #contactUs .contactFormRight {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #contactUs .contactFormRight .contactImage {
    max-width: 100%;
    height: auto;
  } */

  /* Bottom Row */
  #contactUs .contact-bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 0;
    align-items: center;
    text-align: center;
    background: transparent;
    margin-bottom: -0px;
  }

  /* Circle Box */
  #contactUs .contact-bottom-row > .box {
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  /* Apps */
  #contactUs .contact-bottom-row > .apps p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 1mm;
  }

  /* Socials */
  #contactUs .contact-bottom-row > .socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin-right: 50px;
  }

  #contactUs .contact-bottom-row > .socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #contactUs .contact-bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }

  /* SweetAlert2 custom styles */
  .swal-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000; /* CAM primary color */
  }

  .swal-text {
    font-family: "Poppins", sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    color: black !important;
  }

  .swal-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: black;
    color: white !important;
    border-radius: 50px;
    width: 200%;
  }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #contactUs {
    width: auto;
    height: 120dvh;
    background-color: transparent;
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0px;
  }

  .contactPageContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: -200px;
  }

  .contactPageContainer > .heading {
    grid-area: 1 / 1;
    margin-top: 0px;
    margin-bottom: 100px;
  }

  .contactPageContainer > .heading > h2 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: black;
    text-align: center;
    letter-spacing: 1.2mm;
  }

  .contactPageContainer > .heading > p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: black;
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: -20px;
  }

  .contactPageContainer > .contactForm {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .contactFormLeft {
    grid-area: 2 / span 2;
    text-align: left;
    width: 50%;
    margin-left: 50px;
  }

  label {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }

  #name,
  #email,
  #message {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    height: 25px;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: solid;
    border-color: black;
  }

  #name:focus,
  #email:focus,
  #message:focus {
    outline: none;
  }

  #message {
    height: 80px;
    border: solid 2px black;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    font-size: 12px;
  }

  #message:focus {
    outline: none;
  }

  #message::placeholder {
    padding-top: 55px !important;
  }

  #message:focus::placeholder {
    color: white;
  }

  #sendBtn {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: white;
    background-color: black;
    border: none;
    padding: 15px;
    border-radius: 50px;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    cursor: pointer;
    background-color: white;
    color: black;
    border: solid 1px black;
  }

  .contactFormRight {
    grid-area: 2 / span 3;
    text-align: left;
    margin-right: 0px;
  }

  .contactImage {
    width: 60%;
  }

  /* Bottom Row */
  #contactUs .contact-bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 0;
    align-items: center;
    text-align: center;
    background: transparent;
    margin-bottom: -0px;
  }

  /* Circle Box */
  #contactUs .contact-bottom-row > .box {
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  /* Apps */
  #contactUs .contact-bottom-row > .apps p {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    letter-spacing: 1mm;
  }

  /* Socials */
  #contactUs .contact-bottom-row > .socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin-right: 50px;
  }

  #contactUs .contact-bottom-row > .socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #contactUs .contact-bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }

  /* SweetAlert2 custom styles */
  .swal-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000; /* CAM primary color */
  }

  .swal-text {
    font-family: "Poppins", sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    color: black !important;
  }

  .swal-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: black;
    color: white !important;
    border-radius: 50px;
    width: 200%;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  #contactUs {
    width: auto;
    height: 110dvh;
    background-color: transparent;
    margin: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0px;
  }

  .contactPageContainer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-top: -200px;
  }

  .contactPageContainer > .heading {
    grid-area: 1 / 1;
    margin-top: 0px;
    margin-bottom: 100px;
  }

  .contactPageContainer > .heading > h2 {
    font-family: "Poppins", sans-serif;
    font-size: 45px;
    font-weight: 400;
    color: black;
    text-align: center;
    letter-spacing: 1.2mm;
  }

  .contactPageContainer > .heading > p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: black;
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: -20px;
  }

  .contactPageContainer > .contactForm {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .contactFormLeft {
    grid-area: 2 / span 2;
    text-align: left;
    width: 50%;
    margin-left: 50px;
  }

  label {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: black;
  }

  #name,
  #email,
  #message {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    height: 25px;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom-style: solid;
    border-color: black;
  }

  #name:focus,
  #email:focus,
  #message:focus {
    outline: none;
  }

  #message {
    height: 80px;
    border: solid 2px black;
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
  }

  #message:focus {
    outline: none;
  }

  #message::placeholder {
    padding-top: 55px !important;
  }

  #message:focus::placeholder {
    color: white;
  }

  #sendBtn {
    width: 80%;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: white;
    background-color: black;
    border: none;
    padding: 15px;
    border-radius: 50px;
    transition: all ease-in-out 0.2s;
  }

  #sendBtn:hover {
    cursor: pointer;
    background-color: white;
    color: black;
    border: solid 1px black;
  }

  .contactFormRight {
    grid-area: 2 / span 3;
    text-align: left;
    margin-right: 0px;
  }

  .contactImage {
    width: 60%;
  }

  /* Contact Page Container */
  /* #contactUs .contactPageContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  } */

  /* Contact Form Layout */
  /* #contactUs .contactForm {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }

  #contactUs .contactFormLeft {
    flex: 1;
  }

  #contactUs .contactFormRight {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #contactUs .contactFormRight .contactImage {
    max-width: 100%;
    height: auto;
  } */

  /* Bottom Row */
  #contactUs .contact-bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 0;
    align-items: center;
    text-align: center;
    background: transparent;
    margin-bottom: -0px;
  }

  /* Circle Box */
  #contactUs .contact-bottom-row > .box {
    background-color: black;
    width: 30px;
    height: 30px;
    margin-left: 50px;
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  /* Apps */
  #contactUs .contact-bottom-row > .apps p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    letter-spacing: 1mm;
  }

  /* Socials */
  #contactUs .contact-bottom-row > .socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin-right: 50px;
  }

  #contactUs .contact-bottom-row > .socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
  }

  #contactUs .contact-bottom-row > .socials a:hover {
    transform: scale(1.2);
    cursor: pointer;
  }

  #contactUs .contact-bottom-row > .socials img {
    width: 30px;
    height: 30px;
  }

  /* SweetAlert2 custom styles */
  .swal-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #000; /* CAM primary color */
  }

  .swal-text {
    font-family: "Poppins", sans-serif !important;
    font-weight: 300 !important;
    font-size: 16px !important;
    color: black !important;
  }

  .swal-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    background-color: black;
    color: white !important;
    border-radius: 50px;
    width: 200%;
  }
}

/* XXX-Large devices (larger desktops, 1920px and up) */
@media (min-width: 1920px) {
}
