/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700;900&display=swap");
:root {
  /* Theme Colors (1 to 10) */
  --themeprimaryclr: #E2058F;
  --themesecondaryclr: #5D5D5D;
  --themethirdclr: #1BB174;
  --themefourthclr: #1C1C1C;
  --themefifthclr: #FF42B3;
  --themesixthclr: #554B4E;
  --themeseventhclr: #FF0099;
  --themeeighthclr: #6E6C6C;
  --themeninthclr: #212529BF;
  --themetenthclr: #F7CD73;
  --plainclr: #fff;
  --darkclr: #000;
  --lightbg: #fafafa;
  --bodyclr: #696969;
  --body-bgclr: #afb3ab;
  --headerclr: #fff;
  --headerbgclr: #defffc;
  --footerclr: #ffdada;
  --footerbgclr: #eebbbb;
  --headingclr: #000000;
  --li-clr: #dfd8d8;
  --lihover-clr: #474747;
  --anchorclr: #cdcdcd;
  --btnhover: #6c63ff;
  --anchor-hover-clr: #ffa1a1;
  --linkclr: #7cb5ff;
  --link-hover-clr: #3288f8;
  /* newly added colors */
  --link-hover-bg-clr: #f5f5f5;
  --link-bg-clr: #f0f0f0;
  --hoverclr: #000;
  --iconclr: #ff0000;
  --icon-hover-clr: #fff000;
  --tablehover: #cdcdcd;
  /* dark mode clrs*/
  --dark-text-color: #c0aaaa;
  --dark-section-color: #2a2a2a;
  --dark-menu-bg-color: #3f404e;
  --dark-menu-icon-color: #404654;
  /* borderclrs */
  --main-border: #e0e0e0;
  --light-border: #51535f;
  --borderone: #cdcdcd;
  --bordertwo: #dcdc45;
  --border-three: #ff0000;
  /* section colors */
  --section-color: #fafafa;
  --section-color-two: #000000;
  --section-color-three: #9b9b9b;
  --section-color-four: #313131;
  --section-color-five: #f8bfbf;
  /* Named Colors */
  --greenclr: #1bb174;
  --orangecolor: #ff9900;
  --redclr: #ff2b2b;
  --yellowclr: #f7cd73;
  /* badges color */
  --badge-danger: #ff0000;
  --badge-warning: #ff9900;
  --badge-success: #1bb174;
  --badge-light: #eff0f6;
  --badge-dark: #343a40;
  --badge-semi-dark: #495057;
  --badge-semi-light: #f8f9fa;
  --badge-info: #17a2b8;
  --fbclr: #1877F2;
  /* Facebook */
  --ytclr: #FF0000;
  /* YouTube */
  --twclr: #1DA1F2;
  /* Twitter (X) */
  --igclr: #C13584;
  /* Instagram */
  --lnclr: #0A66C2;
  /* LinkedIn */
  --ghclr: #333333;
  /* GitHub */
  --waclr: #25D366;
  /* WhatsApp */
  --scclr: #FFFC00;
  /* Snapchat */
  --rdclr: #FF4500;
  /* Reddit */
  --tiktokclr: #010101;
  /* TikTok */
  /* Optional extra */
  --pinterestclr: #E60023;
  /* Pinterest */
  /* Overlay Colors */
  --overlayone: rgba(0, 0, 0, 0.3);
  /* Light black overlay */
  --overlaytwo: rgba(0, 0, 0, 0.5);
  /* Medium black overlay */
  --overlaythree: rgba(0, 0, 0, 0.7);
  /* Dark black overlay */
  --overlayfour: rgba(255, 255, 255, 0.2);
  /* Light white overlay */
  --overlayfive: rgba(226, 5, 143, 0.4);
  /* Themed pink overlay */
  /* Gradient Backgrounds */
  --gradientone: linear-gradient(135deg, #E2058F, #FF42B3);
  /* Pink blend */
  --gradienttwo: linear-gradient(135deg, #1bb174, #43a700);
  /* Green blend */
  --gradientthree: linear-gradient(135deg, #ff6600, #ff9900);
  /* Orange blend */
  --gradientfour: linear-gradient(135deg, #000000, #434343);
  /* Dark blend */
  --gradientfive: linear-gradient(135deg, #f7cd73, #ffcc00);
  /* Yellow gold blend */
  --gradientsix: linear-gradient(135deg, #5d5d5d, #1c1c1c);
  /* Grey-black blend */
  /* Box Shadows */
  --shadowone: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadowtwo: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadowthree: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadowfour: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadowfive: 0 20px 40px rgba(0, 0, 0, 0.25);
  /* Font Families (1 to 6) */
  --primaryfont: "Lato", sans-serif;
  --secondaryfont: "Inter", sans-serif;
  --thirdfont: "Roboto", sans-serif;
  --fourthfont: "Montserrat", sans-serif;
  --fifthfont: "Open Sans", sans-serif;
  --sixthfont: "Poppins", sans-serif;
}

.edu-card {
  position: relative;
  background: var(--plainclr);
  border-radius: 1rem;
  box-shadow: var(--shadowthree);
  padding: 2.5rem 2rem 2rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  font-family: var(--fifthfont);
}
.edu-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadowfour);
}
@media (max-width: 768px) {
  .edu-card {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .edu-card {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}
.edu-card .ribbon {
  position: absolute;
  top: 1rem;
  right: -1rem;
  color: var(--plainclr);
  font-weight: 700;
  padding: 0.25rem 1.5rem;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px var(--overlayone);
  font-size: 10px;
  letter-spacing: 0.05em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.edu-card .edu-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px var(--shadowone);
  transition: background 0.3s ease, color 0.3s ease;
}
@media (max-width: 480px) {
  .edu-card .edu-icon {
    width: 55px;
    height: 55px;
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
.edu-card .edu-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.6rem;
  color: var(--headingclr);
}
@media (max-width: 480px) {
  .edu-card .edu-title {
    font-size: 16px;
  }
}
.edu-card .edu-desc {
  color: var(--bodyclr);
  font-size: 15px;
  line-height: 1.5;
  min-height: 70px;
}
@media (max-width: 480px) {
  .edu-card .edu-desc {
    font-size: 14px;
    min-height: auto;
  }
}
.edu-card .edu-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.edu-card .btn-learn {
  border: none;
  color: var(--plainclr);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px var(--shadowthree);
}
.edu-card .btn-learn:hover {
  box-shadow: 0 6px 20px var(--shadowfive);
}
@media (max-width: 480px) {
  .edu-card .btn-learn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}
.edu-card[data-color=blue] .ribbon {
  background: var(--themeprimaryclr);
}
.edu-card[data-color=blue] .edu-icon {
  background: rgba(226, 5, 143, 0.2);
  color: var(--themeprimaryclr);
  box-shadow: 0 4px 12px rgba(226, 5, 143, 0.2);
}
.edu-card[data-color=blue]:hover .edu-icon {
  background: rgba(226, 5, 143, 0.33);
  color: #b1037a;
}
.edu-card[data-color=blue] .btn-learn {
  background-color: var(--themeprimaryclr);
}
.edu-card[data-color=blue] .btn-learn:hover {
  background-color: #b1037a;
}
.edu-card[data-color=green] .ribbon {
  background: var(--themethirdclr);
}
.edu-card[data-color=green] .edu-icon {
  background: rgba(27, 177, 116, 0.2);
  color: var(--themethirdclr);
  box-shadow: 0 4px 12px rgba(27, 177, 116, 0.2);
}
.edu-card[data-color=green]:hover .edu-icon {
  background: rgba(27, 177, 116, 0.33);
  color: #138c66;
}
.edu-card[data-color=green] .btn-learn {
  background-color: var(--themethirdclr);
}
.edu-card[data-color=green] .btn-learn:hover {
  background-color: #138c66;
}
.edu-card[data-color=purple] .ribbon {
  background: var(--themeseventhclr);
}
.edu-card[data-color=purple] .edu-icon {
  background: rgba(255, 0, 153, 0.2);
  color: var(--themeseventhclr);
  box-shadow: 0 4px 12px rgba(255, 0, 153, 0.2);
}
.edu-card[data-color=purple]:hover .edu-icon {
  background: rgba(255, 0, 153, 0.33);
  color: #b7007a;
}
.edu-card[data-color=purple] .btn-learn {
  background-color: var(--themeseventhclr);
}
.edu-card[data-color=purple] .btn-learn:hover {
  background-color: #b7007a;
}
.edu-card[data-color=orange] .ribbon {
  background: var(--orangecolor);
}
.edu-card[data-color=orange] .edu-icon {
  background: rgba(255, 153, 0, 0.2);
  color: var(--orangecolor);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
}
.edu-card[data-color=orange]:hover .edu-icon {
  background: rgba(255, 153, 0, 0.33);
  color: #cc7a00;
}
.edu-card[data-color=orange] .btn-learn {
  background-color: var(--orangecolor);
}
.edu-card[data-color=orange] .btn-learn:hover {
  background-color: #cc7a00;
}
.edu-card[data-color=red] .ribbon {
  background: var(--redclr);
}
.edu-card[data-color=red] .edu-icon {
  background: rgba(255, 43, 43, 0.2);
  color: var(--redclr);
  box-shadow: 0 4px 12px rgba(255, 43, 43, 0.2);
}
.edu-card[data-color=red]:hover .edu-icon {
  background: rgba(255, 43, 43, 0.33);
  color: #b72323;
}
.edu-card[data-color=red] .btn-learn {
  background-color: var(--redclr);
}
.edu-card[data-color=red] .btn-learn:hover {
  background-color: #b72323;
}
.edu-card[data-color=teal] .ribbon {
  background: var(--badge-info);
}
.edu-card[data-color=teal] .edu-icon {
  background: rgba(23, 162, 184, 0.2);
  color: var(--badge-info);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
}
.edu-card[data-color=teal]:hover .edu-icon {
  background: rgba(23, 162, 184, 0.33);
  color: #117a8b;
}
.edu-card[data-color=teal] .btn-learn {
  background-color: var(--badge-info);
}
.edu-card[data-color=teal] .btn-learn:hover {
  background-color: #117a8b;
}

.section1 {
  margin-bottom: 100px;
}
@media (max-width: 480px) {
  .section1 {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=serviceDesign4.css.map */