/* General css */
:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --color-primary: #6c63ff;
  --color-default: #3f3d56;
  --color-white: #fff;
  --color-secondary: #090814;
  --color-p-background: #f2f2f2;
  --color-s-background: #6c63ff;
  --color-ss-background: #d6d6e3;
  --color-link: #6c63ff;
  --color-link-hover: #5a51e6;
  --button-gradient: linear-gradient(135deg, #6c63ff, #5a51e6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background-color: var(--color-p-background);
  margin: 0;
}


/* margin */
.mt-100 {
  margin-top: 100px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-0 {
  margin-top: 0;
}

/* margin bottom */
.mb-100 {
  margin-bottom: 100px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-0 {
  margin-bottom: 0;
}

/* margin both */
.m-0 {
  margin: 0;
}

/* padding */

/* margin */
.pt-100 {
  padding-top: 100px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-0 {
  padding-top: 0;
}

/* margin bottom */
.pb-100 {
  padding-bottom: 100px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-0 {
  padding-bottom: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-default);
}

h1 {
  font-size: 40px;
  margin: 0;
}

h2 {
  font-size: 32px;
  margin: 0;
}

h3 {
  font-size: 28px;
  margin: 0;
}

h4 {
  font-size: 24px;
  margin: 0;
}

h5 {
  font-size: 20px;
  margin: 0;
  font-weight: 400;
}

h6 {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
}

p {
  font-size: 16px;
  color: var(--color-default);
  margin: 0;
  line-height: 1.5;
}

a {
  font-size: 16px;
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

span {
  color: inherit;
}

.white {
  color: var(--color-white);
}

.f80 {
  font-size: 80px;
}

.f70 {
  font-size: 70px;
}

.f60 {
  font-size: 60px;
}

.f50 {
  font-size: 50px;
}

.fw900 {
  font-weight: 900;
}

.fw800 {
  font-weight: 800;
}

.fw700 {
  font-weight: 700;
}

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 500;
}

.fw400 {
  font-weight: 400;
}

.s100 {
  margin: 120px 0;
}

/* header css */
.myheader-container {
  width: 100%;
  max-width: 95%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  transition: background 0.3s ease-in-out;
  z-index: 1;
}

.myheader-container.scrolled {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
}

.myheader-logo {
  font-size: 35px;
  font-weight: bold;
  font-family: cursive;
  color: var(--color-default);
}

.myheader-container a {
  text-decoration: none;
}

.myheader-logo span {
  color: var(--color-primary)
}

.myheader-nav {
  display: flex;
  gap: 20px;
}

.myheader-nav a {
  text-decoration: none;
  color: var(--color-default)
}

.myheader-btn {
  background: var(--button-gradient);
  color: var(--color-white);
  padding: 15px 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .myheader-container {
    padding: 15px 20px;
  }

  .myheader-nav {
    display: none;
  }
}

/* hero banner css */
.hero-top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0 0 0;
  max-width: 1200px;
  height: 85vh;
  margin: auto;
  flex-wrap: wrap;
}

.hero-top-text {
  max-width: 50%;
}

.hero-top-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-top-image-container img {
  max-height: 120%;
  width: 120%;
  object-fit: cover;
}

.hero-top-text h1 {
  text-transform: capitalize;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  text-shadow: none;
  margin: 20px 0 40px 0;
}

.hero-top-text h1 span {
  color: var(--color-primary);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
}

.hero-top-text h3 {
  margin-top: 50px;
  color: var(--color-secondary);
}

.hero-top-text h5 {
  font-weight: 400;
  color: var(--color-default);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-top-container {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 30px;
  }

  .hero-top-text,
  .hero-top-image-container {
    max-width: 100%;
  }

  .hero-top-text h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hero-top-text h1 {
    font-size: 3.2rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  .hero-top-text h4 {
    font-size: 1.1rem;
  }

  .hero-top-image-container {
    justify-content: center;
    align-items: center;
    height: auto;
  }

  .hero-top-image-container img {
    width: 80%;
    height: auto;
  }
}

/* below main banner css */
.belowMain_banner {
  background-color: var(--color-s-background);
  text-align: center;
  padding: 30px 100px;
}

/* about me css */
.aboutMe-section-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  background: var(--color-white);
  padding: 0px 50px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.aboutMe-section-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  box-sizing: border-box;
}

.aboutMe-section-left img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  image-rendering: auto;
}

.aboutMe-section-right {
  flex: 1;
  width: 50%;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.aboutMe-section-right h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
}

.aboutMe-section-right h2 {
  margin-bottom: 25px;
  color: var(--color-secondary);
}

.aboutMe-section-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.aboutMe-section-info div {
  flex: 1;
  min-width: 200px;
  margin: 5px 10px;
  text-align: left;
}

.aboutMe-section-info strong {
  display: block;
  margin-bottom: 5px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .aboutMe-section-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .aboutMe-section-left,
  .aboutMe-section-right {
    width: 100%;
  }

  .aboutMe-section-left img {
    max-width: 100%;
  }

  .aboutMe-section-right {
    padding-left: 0;
    margin-top: 20px;
  }
}

/* service offered css */
.serviceOffer-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.serviceOffer-header h1 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.serviceOffer-header p {
  margin-bottom: 80px;
}

.serviceOffer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.serviceOffer-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.serviceOffer-icon {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--color-white);
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.serviceOffer-icon::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--color-s-background);
  border-radius: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.serviceOffer-icon::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-s-background);
  border-radius: 50%;
  z-index: 0;
}

.serviceOffer-icon i {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.serviceOffer-icon:hover::after {
  background-color: var(--color-s-background);
}

.serviceOffer-text {
  flex: 1;
}

.serviceOffer-text h3 {
  font-size: 18px;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.serviceOffer-text p {
  font-size: 14px;
  max-width: 300px;
}


@media (max-width: 768px) {
  .serviceOffer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .serviceOffer-grid {
    grid-template-columns: 1fr;
  }

  .serviceOffer-item {
    flex-direction: column;
    text-align: center;
  }

  .serviceOffer-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .serviceOffer-text p {
    max-width: 100%;
  }
}

/* work done css */
.workDone-body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  margin: 0;
  overflow: hidden;
}

.workDone-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.workDone-circle {
  position: relative;
  width: 35vw;
  height: 35vw;
  max-width: 250px;
  max-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-p-background);
  border-radius: 50%;
  flex-direction: column;
}

.workDone-inner {
  width: 70%;
  height: 70%;
  background-color: var(--color-s-background);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

.workDone-label {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .workDone-container {
    flex-direction: column;
    gap: 20px;
  }

  .workDone-circle {
    width: 60vw;
    height: 60vw;
    max-width: 250px;
    max-height: 250px;
  }

  .workDone-inner {
    font-size: 5vw;
  }

  .workDone-label {
    font-size: 4vw;
  }
}

/* Trusted company css */
.trustedCompanyHeader {
  margin-bottom: 30px;
  text-align: center;
}

.trustedCompanyBrands {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trustedCompanyBrands img {
  height: 40px;
  width: auto;
}

/* Project done */
.theProjects-body {
  margin: 0;
  padding: 0;
}

.theProjects-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.theProjects-title {
  margin-bottom: 10px;
  color: var(--color-primary);
}

.theProjects-subtitle {
  margin-bottom: 80px;
  color: var(--color-secondary);
  font-size: 18px;
}

.theProjects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.theProjects-card {
  background: var(--color-white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theProjects-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theProjects-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background: var(--color-s-background);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.theProjects-icon i {
  font-size: 55px;
  color: var(--color-white);
}

.theProjects-content {
  flex: 1;
  text-align: left;
}

.theProjects-category {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 15px;
}

.theProjects-title-card {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-secondary);
  margin-bottom: 5px;
}

.theProjects-description {
  font-size: 14px;
  margin-top: 5px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .theProjects-grid {
    grid-template-columns: 1fr;
  }

  .theProjects-card {
    flex-direction: column;
    text-align: center;
  }

  .theProjects-content {
    text-align: center;
    /* Center text for mobile */
  }
}


/* Pricing css */
.thePricingContainer {
  text-align: center;
  padding: 0px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.thePricingHeader {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.thePricingSubheader {
  font-size: 18px;
  color: var(--color-secondary);
  margin-bottom: 80px;
  font-weight: 600;
}

.thePricingGrid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.thePricingCard {
  background-color: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 250px;
  position: relative;
  transition: transform 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thePricingCard:hover {
  transform: translateY(-5px);
}

.thePricingFeatured {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 5px 15px;
  font-size: 16px;
  border-radius: 0 10px 0 10px;
}

.thePricingPlan {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.thePricingPlan.basic {
  color: #ffaa00;
}

.thePricingPlan.professional {
  color: #28a745;
}

.thePricingPlan.enterprise {
  color: var(--color-primary);
}

.thePricingPrice {
  font-size: 38px;
  font-weight: bold;
  color: var(--color-default);
  margin-bottom: 25px;
}

.thePricingPrice span {
  font-size: 18px;
  color: var(--color-default);
}

.thePricingDescription {
  font-size: 16px;
  color: var(--color-default);
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}

.thePricingButton {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.thePricingButton:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .thePricingHeader {
    font-size: 2rem;
  }

  .thePricingSubheader {
    font-size: 0.9rem;
  }

  .thePricingCard {
    max-width: 100%;
    margin-bottom: 20px;
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .thePricingHeader {
    font-size: 1.5rem;
  }

  .thePricingSubheader {
    font-size: 0.8rem;
  }

  .thePricingPrice {
    font-size: 2rem;
  }

  .thePricingButton {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .thePricingCard {
    min-height: 300px;
  }
}

/* Skills css */
.ourSkills-body {
  background: var(--color-white);
}

.ourSkills-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ourSkills-title {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.ourSkills-subtitle {
  font-size: 16px;
  ;
  color: var(--color-secondary);
  margin-bottom: 40px;
}

.ourSkills-skillsSection {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 400px;
}

.ourSkills-imageWrapper {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ourSkills-image {
  max-width: 85%;
  height: auto;
}

.ourSkills-skillsContent {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ourSkills-skillsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.ourSkills-skillItem {
  display: flex;
  align-items: center;
  background-color: var(--color-p-background);
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.ourSkills-checkmark {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 10px;
}

.ourSkills-skillName {
  font-size: 16px;
  color: var(--color-default);
  flex-grow: 1;
  padding-right: 40px;
}

.ourSkills-skillPercentage {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  width: 50px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 5px;
}

@media (max-width: 768px) {
  .ourSkills-skillsSection {
    flex-direction: column;
    min-height: auto;
  }

  .ourSkills-imageWrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  .ourSkills-skillsContent {
    width: 100%;
  }

  .ourSkills-skillsGrid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ourSkills-title {
    font-size: 2em;
  }

  .ourSkills-subtitle {
    font-size: 0.9em;
  }

  .ourSkills-skillItem {
    padding: 8px;
  }

  .ourSkills-skillName,
  .ourSkills-skillPercentage {
    font-size: 1em;
  }
}

/* reference css */
.referenceClientContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.referenceClientImage {
  flex: 1;
  max-width: 45%;
}

.referenceClientImage img {
  width: 100%;
  height: auto;
  display: block;
}

.referenceClientContent {
  flex: 1;
  max-width: 50%;
}

.referenceClientHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.referenceClientTitle {
  font-size: 36px;
  font-weight: 700;
  color: #141414;
}

.referenceClientSubHeading {
  font-size: 16px;
  color: #4A3AFF;
  font-weight: 600;
  margin-top: 5px;
}

.referenceClientStats {
  display: flex;
  gap: 15px;
}

.referenceClientStatBox {
  padding: 15px 20px;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  text-align: center;
  min-width: 100px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.referenceClientStatBox:hover {
  transform: translateY(-5px);
}

.referenceClientReviews {
  background: linear-gradient(135deg, #4A3AFF, #715AFF);
}

.referenceClientRating {
  background: linear-gradient(135deg, #19A974, #32C18D);
}

.referenceClientStatBox span {
  display: block;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
}

.referenceClientText {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
}

.referenceClientAuthor {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.referenceClientRole {
  font-size: 16px;
  color: #4A3AFF;
  font-weight: 500;
}

@media (max-width: 768px) {
  .referenceClientContainer {
    flex-direction: column;
    text-align: center;
  }

  .referenceClientImage {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .referenceClientContent {
    max-width: 100%;
  }

  .referenceClientHeader {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .referenceClientStats {
    justify-content: center;
    margin-top: 15px;
  }
}

/* Contact css */
.contactForm-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 50px;
  background: var(--color-white);
}

.contactForm-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contactForm-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactForm-left img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.contactForm-right {
  flex: 1.5;
  max-width: 50%;
}

.contactForm-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.contactForm-subtitle {
  font-size: 16px;
  color: var(--color-secondary);
  margin-bottom: 50px;
}

.contactForm-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactForm-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.contactForm-row .contactForm-input {
  width: 100%;
  flex: 1;
  min-width: 0;
}

.contactForm-input:focus,
.contactForm-textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.contactForm-input,
.contactForm-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-s-background);
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.contactForm-textarea {
  height: 140px;
  resize: none;
  font-family: var(--font-body);
}

.contactForm-button {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
}

.contactForm-button:hover {
  background: var(--color-primary);
}

@media (max-width: 992px) {
  .contactForm-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contactForm-right {
    max-width: 100%;
  }

  .contactForm-row {
    flex-direction: column;
  }

  .contactForm-left img {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .contactForm-left img {
    max-width: 300px;
  }
}

/* Footer css */
.myfooter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.myfooter-box {
  text-align: center;
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.myfooter-icon {
  color: var(--color-primary);
  font-size: 30px;
  margin-bottom: 25px;
}

.myfooter-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.myfooter-text {
  color: var(--color-default);
}

@media (max-width: 768px) {
  .myfooter-container {
    flex-direction: column;
    text-align: center;
  }
}

.copyRight {
  margin: 50px 0 0 0;
  padding: 30px;
  background-color: var(--color-white);
  color: var(--color-default);
  text-align: center;
}

.form-message {
  display: none;
  margin-top: 15px;
  font-size: 16px;
}

.form-message.success {
  color: #1c901d;
  background-color: var(--color-white);
}

.form-message.error {
  color: var(--color-primary);
  background-color: var(--color-white);
}