@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* Theme Colors (1 to 10) */
  --themeprimaryclr: #1f05e2;
  --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: #FF42B3;
  --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;
}

body {
  font-family: var(--sixthfont);
  color: var(--bodyclr);
  background-color: var(--lightbg);
}

.social-three h1 {
  color: var(--themeprimaryclr);
  font-weight: 600;
}

.social-three .social-card {
  position: relative;
  margin-bottom: 1.4rem;
  border-radius: 13px;
  overflow: hidden;
  z-index: 1;
}

.social-three .social-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--themeprimaryclr);
  z-index: 2;
}

/* Animated border */
.social-three .social-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  border: 2px solid var(--themeprimaryclr);
  pointer-events: none;
  z-index: 3;
  clip-path: polygon(0% 100%, 0% 100%, 0% 100%, 0% 100%);
  transition: none;
}

/* Trigger the clockwise animation */
.social-three .social-card:hover::after {
  animation: borderClockwiseDraw 1.5s ease-out forwards;
}

/* Animate left -> top -> right */
@keyframes borderClockwiseDraw {
  0% {
    clip-path: polygon(0% 100%, 0% 100%, 0% 100%, 0% 100%);
  }
  25% {
    /* Left border appears (bottom-left to top-left) */
    clip-path: polygon(0% 100%, 0% 0%, 0% 0%, 0% 100%);
  }
  50% {
    /* Top border appears (top-left to top-right) */
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 0% 100%);
  }
  75% {
    /* Right border appears (top-right to bottom-right) */
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%);
  }
  100% {
    /* Completed path excluding bottom (already there via ::before) */
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%);
  }
}
.social-three .social-card-body {
  padding: 1.5rem;
}

.social-three .social-card-body p {
  line-height: 25px;
}

.social-three .card-footer {
  background: transparent;
  padding: 1rem;
}

.social-three .card-footer .social-card-icons-list i.fa-facebook-f {
  color: var(--fbclr);
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-three .card-footer .social-card-icons-list i.fa-facebook-f:hover {
  color: var(--darkclr);
}

.social-three .card-footer .social-card-icons-list i.fa-linkedin-in {
  color: var(--lnclr);
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-three .card-footer .social-card-icons-list i.fa-linkedin-in:hover {
  color: var(--darkclr);
}

.social-three .card-footer .social-card-icons-list i.fa-youtube {
  color: var(--ytclr);
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-three .card-footer .social-card-icons-list i.fa-youtube:hover {
  color: var(--darkclr);
}

.social-three .timeline-cards p {
  display: none;
}

.btn-theme-one {
  background-color: var(--themeprimaryclr);
  padding: 0.4rem 0.75rem 0.3rem;
  padding: 0.4375rem 1.1875rem;
  min-height: 2.25rem;
  font-size: 1rem;
  color: var(--plainclr);
  font-family: var(--primaryfont);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.625rem;
  font-weight: 400 !important;
  transition: all 0.5s linear;
  text-transform: capitalize !important;
}

@media (max-width: 1199px) {
  .btn-theme-one img {
    width: 1.25rem;
  }
}
@media (max-width: 1100px) {
  .btn-theme-one {
    font-size: 0.8rem;
  }
}
@media (max-width: 575px) {
  .btn-theme-one img {
    width: 0.875rem;
    margin-left: 0.1875rem !important;
  }
}
.btn-theme-one:hover {
  background-color: var(--themesecondaryclr);
  color: var(--plainclr);
}

.btn:active {
  background-color: var(--themesecondaryclr) !important;
  color: var(--plainclr) !important;
}/*# sourceMappingURL=socialDesign3.css.map */