* {
  margin: 2px;
  padding: 2px;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/*.services {
  position: relative;
  display: grid;
  grid-template-columns: 45% 1fr;
  min-height: 420px;
}

/* Left intro panel *
.services__intro {
  background: #eceafc;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: darkblue;
    text-align: center;
}

.headline {
  font-size: 3rem;
    line-height: 1.4;
    font-weight: 800;
    color: #111827;
    text-align: center;   /* 2nd New Update *
}



.subtext {
  font-size: 1.5rem;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 47px;
    max-width: 340px;
    /* padding-left: -45px; *
    text-align: center;
    /* margin-left: 10rem !important;  2nd New Update  *
}

.services__intro .subtext{
  margin-left: 12rem;/* 2nd New Update *
}

.services .cta{
  margin-left: 17rem;
}
.subtext-service{
  font-size: 1.5rem;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 47px;
    max-width: 340px;
    padding-left: -45px;
    text-align: center;
    margin-left: 6rem;/* 2nd New Update *
    margin-top: 2rem;  /* 2nd New Update *
}
.cta {
  background: #2f27ce;
  color: #ffffff;
  border: none;
  padding: 17px 51px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
  /* margin-right: 1.1rem; *
}
.cta-service {
  background: #2f27ce;
  color: #ffffff;
  border: none;
  padding: 17px 51px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
  margin-left: 10rem;
}

.cta:hover {
  background: #241db8;
}
/**********************************************************************************************/
/*Google Gemini only left Panel Updated*/

/* Left intro panel - Flexbox Container *
.services__intro {
  background: #eceafc;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;     /* Centers all children horizontally *
  justify-content: center; /* Centers content vertically *
  gap: 1.5rem;             /* Automatically controls spacing between all elements *
  box-sizing: border-box;
}

.services__intro .eyebrow {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: darkblue;
  text-align: center;
  margin: 0;               /* Spacing is handled by flex gap *
}

.services__intro .headline {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin: 0;               /* Spacing is handled by flex gap *
}

.services__intro .subtext-service {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #4b5563;
  text-align: center;
  max-width: 420px;
  margin: 0;               /* Removed margin-left: 6rem & padding-left hack *
}

.services__intro .cta-service {
  background: #2f27ce;
  color: #ffffff;
  border: none;
  padding: 17px 51px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
  margin: 0;               /* Removed margin-left: 10rem *
}

.services__intro .cta-service:hover {
  background: #241db8;
}

/*888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888*/


/* Right grid of cards *
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
gap: 14px 10px;
    padding: 10px 10px;
}

.service-card__img {
  width: 420px;
  height: 290px;
  /* border-radius: 0 50px 50px 50px; *
  overflow: hidden;
margin-bottom: -99px;
}

.service-card__img img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
  align-self: center;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 260px;
}

/* Scroll-to-top button *
.scroll-top {
  position: absolute;
  right: 40px;
  bottom: 30px;
  background: #2f27ce;
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.scroll-top:hover {
  background: #241db8;
}

/*************************************************************************************888 */
}

/* ==========================================
   MAIN SECTION CONTAINER (Side-by-Side Split)
   ========================================== */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Splits screen 50% Left, 50% Right */
  width: 100%;
  min-height: 100vh;             /* Ensures full height filling */
  box-sizing: border-box;
}

/* ==========================================
   LEFT PANEL (Lavender Intro Box)
   ========================================== */
.services__intro {
  background: #eceafc;   /* Lavender Background */
  padding: 60px 40px;
  
  /* Centered Flex Layout */
  display: flex;
  flex-direction: column;
  align-items: center;     /* Centers all content horizontally */
  justify-content: center; /* Centers content vertically */
  gap: 1.5rem;             /* Uniform gap between title, text, button */
  box-sizing: border-box;
}

.services__intro .eyebrow {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: darkblue;
  text-align: center;
  margin: 0;
}

.services__intro .headline {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin: 0;
}

.services__intro .subtext-service {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #4b5563;
  text-align: center;
  max-width: 420px;
  margin: 0;
}

.services__intro .cta-service {
  background: #2f27ce;
  color: #ffffff;
  border: none;
  padding: 17px 51px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s ease;
  margin: 0;
}

.services__intro .cta-service:hover {
  background: #241db8;
}

/* ==========================================
   RIGHT PANEL (4 Service Cards Grid)
   ========================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns x 2 rows */
  gap: 2.5rem 2rem;
  padding: 60px 40px;
  align-content: center; /* Vertically centers cards inside right side */
  justify-items: center;
  box-sizing: border-box;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}

.service-card__img img {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.4;
  color: #6b7280;
}

/* ==========================================
   FIXED SCROLL BUTTON
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

/* Responsive */
@media (max-width: 950px) {
  .services {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .services__intro {
    padding: 40px 30px;
  }

  .headline {
    font-size: 26px;
  }

p.subtext-service {
    margin-left: 1rem;
}

.cta-service{
  margin-left: 6rem;
}

.service-card h3 {
text-align: center;
}

.service-card p {
text-align: center;
    margin-left: 4rem;
}
} */


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


.service-card__img img {
border-radius: 0% !important;
}
.service-card__img h3 {
font-size:1rem;
}


@media(min-width:1300px){
margin-left:5rem;
}
