*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins';
}


.topbar {
  background: linear-gradient(90deg, #050b18, #07132d);
  border-bottom: 1px solid rgba(0, 136, 255, 0.25);
  font-size: 14px;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.topbar-container {
  max-width: 1300px;
  margin: auto;
  padding: 8px 16px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 10px;
}

/* ---------- LEFT CONTACT ---------- */
.topbar-left {
  display: flex;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfd8ff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.topbar-item i {
  color: #1e90ff;
  text-shadow: 0 0 6px rgba(30, 144, 255, 0.8);
}

.topbar-item:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* ---------- CENTER MARQUEE ---------- */
.topbar-center {
  overflow: hidden;
  position: relative;
}

.marquee {
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-scroll 20s linear infinite;
  color: #7ecbff;
  text-shadow: 0 0 8px rgba(0, 136, 255, 0.7);
}

/* MARQUEE KEYFRAMES */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------- RIGHT SOCIAL ICONS ---------- */
.topbar-right {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.topbar-right a {
  color: #1e90ff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  background: rgba(30, 144, 255, 0.08);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  list-style: none;
  text-decoration: none;
}

/* ICON HOVER EFFECT */
.topbar-right a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1e90ff, #00c6ff);
  box-shadow: 0 0 12px rgba(30, 144, 255, 0.8);
  transform: translateY(-2px) scale(1.08);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 770px) {
  .topbar-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }

  .topbar-right {
    margin-top: 6px;
  }
}

@media(max-width:378px){
  .topbar-item span{
    font-size: 0.9em;
  }
}

@media(max-width:322px){
  .topbar-item span{
    font-size: 0.7em;
  }
}
@media(max-width:1026px){
  .topbar-left{
    font-size: 0.7em;
  }
}
@media (max-width: 1026px) and (min-width: 901px) {
  .topbar-container {
    grid-template-columns: 1fr 1.5fr 1fr;
    display: grid;
    align-items: center;
  }

  .topbar-left {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    
  }

  .topbar-center {
    text-align: center;
  }

  .topbar-right {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 0;
  }
}

body { 
  background:linear-gradient(135deg, #f0f5ff, #afb9c5); 
  padding-top: 80px;
}



/*HERO SECTION*/

.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;

}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}


.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}


.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 10s ease-in-out infinite;
}

/* Zoom In / Out */
@keyframes zoomEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(90deg,#168aaa,#bbcbdf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 30px;
  font-size: 1.1rem;
  opacity: 0.9;
  color: bisque;
}

.hero-cta {
  padding: 14px 34px;
  background: linear-gradient(90deg,#00c6ff,#4506da);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,198,255,0.7);
}

/*arrows*/
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  z-index: 3;
  opacity: 0.7;
}

.slider-arrow:hover {
  opacity: 1;
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/*dots*/
.slider-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.slider-dots span.active {
  background: #00c6ff;
  box-shadow: 0 0 10px #00c6ff;
}


@media (max-width: 768px) {
  .hero-text {
    font-size: 1rem;
  }

  .slider-arrow {
    font-size: 1.8rem;
  }
}

@media (max-width: 428px){
  .slide-content h1{
    font-size: 1.5rem;
  }
  .slider-arrow.prev { left: 0px; }
.slider-arrow.next { right: 0px; }
.hero-text{
  font-size: 0.9em;
}
  
}

@media (max-width:322px) {
  .slide-content h1{
    font-size: 1.3em;
  }
  
}


/*SECTION 1*/
.services-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #eef6ff, #f9fbff);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: black;
}
.section-title span{
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  color: transparent;
}
.section-subtitle {
  color: navy;
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
}

.card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  animation: imageZoom 8s ease-in-out infinite;
  transition: transform 0.6s ease, filter 0.6s ease;
}
@keyframes imageZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}


.service-card:hover .card-image img {
  transform: scale(1.18);
  filter: blur(2px) brightness(0.6);
}

.card-footer {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 2;
}

.card-footer h3 {
  font-size: 1.25rem;
  color: #0a1a44;
  font-weight: 600;
}

/* Arrow button */
.arrow-btn {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.service-card:hover .arrow-btn {
  transform: rotate(45deg);
}

.card-description {
  position: absolute;
  inset: 0;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(5, 15, 60, 0.96),
    rgba(20, 40, 120, 0.96)
  );
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.55s ease;
  z-index: 5;
}


/* hover*/
.service-card:hover .card-description,
.service-card:focus-within .card-description {
  transform: translateY(0);
  opacity: 1;
}
.service-card:hover .card-description,
.service-card:focus-within .card-description {
  transform: translateY(0);
  opacity: 1;
}

/* responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 220px;
  }
}


/*section 2*/
.verticals-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef6ff, #f9fbff);
  margin-top: -100px;
}

.verticals-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.verticals-header {
  text-align: center;
  margin-bottom: 90px;
}

.verticals-title {
  font-size: 42px;
  color: black;
}

.verticals-title span {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  color: transparent;
}

.verticals-subtitle {
  max-width: 760px;
  margin: 15px auto 0;
  color: navy;
}

/* CATEGORY */
.vertical-category {
  padding: 80px 50px;
  margin-bottom: 90px;
  border-radius: 32px;
  text-align: center;
}

.category-dark {
  background: linear-gradient(135deg, #050b1d, #0b1535);
  color: #fff;
}

.category-light {
  background: linear-gradient(135deg, #196097, #d7efff);
  color: #0b1b3f;
}

/* CATEGORY TEXT */
.category-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.category-desc {
  max-width: 760px;
  margin: 0 auto 55px;
  color: whitesmoke;
  text-align: center;
}

/* GRID */
.verticals-grid {
  display: grid;
  gap: 40px;
  justify-content: center;
}

.verticals-grid.two {
  grid-template-columns: repeat(2, 340px);
}

.verticals-grid.three {
  grid-template-columns: repeat(3, 300px);
}

/* CARD (UNIFORM SIZE) */
.vertical-card {
  height: 500px;
  background: rgba(255,255,255,0.07);
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.5s ease;
}

/* LIGHT CARD */
.category-light .vertical-card {
  background: beige;
  border: 1px solid rgba(0,120,255,0.25);
}

/* GLITTER EFFECT */
.vertical-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255,255,255,0.45) 50%,
    transparent 70%);
  transform: translateX(-120%);
  transition: 0.9s ease;
}

.vertical-card:hover::before {
  transform: translateX(120%);
}

/* IMAGE */
.v-image {
  height: 210px;
  overflow: hidden;
  border-radius: 18px;
}

.v-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: breathe 6s ease-in-out infinite;
}

/* BREATHING ZOOM */
@keyframes breathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* TEXT */
.vertical-card h4 {
  font-size: 18px;
  margin-top: 18px;
}

.vertical-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* BUTTON */
.v-btn {
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s ease;
}
.vertical-card a{
  text-decoration: none;
}
.category-dark .v-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
}

.category-light .v-btn {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
}

.v-btn:hover {
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(0,198,255,0.8);
  background-color: purple;
}

/* CARD HOVER */
.vertical-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 45px rgba(0,198,255,0.35);
}

/* RESPONSIVE *
@media (max-width: 992px) {
  .verticals-grid.two,
  .verticals-grid.three {
    grid-template-columns: 1fr;
  }

  .vertical-card {
    height: auto;
  }
}

@media (max-width: 600px) {
  .verticals-title {
    font-size: 30px;
  }

  .category-title {
    font-size: 26px;
  }
}
@media(max-width:1026px){
  .verticals-grid.three {
  grid-template-columns: repeat(3, 240px);
}

}
/* CARD HOVER */
.vertical-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 40px rgba(0,198,255,0.35);
}

/* RESPONSIVE *
@media (max-width: 992px) {
  .verticals-grid.two,
  .verticals-grid.three {
    grid-template-columns: 1fr;
  }

  .vertical-card {
    height: auto;
  }
}

@media (max-width: 600px) {
  .verticals-title {
    font-size: 30px;
  }
}
/* ===============================
   LARGE TABLETS / SMALL LAPTOPS
   =============================== */
@media (max-width: 1200px) {

  .verticals-container {
    width: 92%;
  }

  .verticals-grid.two {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .verticals-grid.three {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .vertical-category {
    padding: 70px 40px;
  }
}


/* ===============================
   TABLETS (1024px → 768px)
   =============================== */
@media (max-width: 1024px) {

  .verticals-title {
    font-size: 36px;
  }

  .category-title {
    font-size: 28px;
  }

  .verticals-grid.two {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .verticals-grid.three {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .vertical-card {
    height: auto;
  }

  .v-image {
    height: 200px;
  }
}


/* ===============================
   LARGE MOBILE / SMALL TABLET
   =============================== */
@media (max-width: 768px) {

  .verticals-section {
    padding: 70px 0;
  }

  .vertical-category {
    padding: 60px 28px;
    border-radius: 26px;
  }

  .verticals-title {
    font-size: 30px;
  }

  .verticals-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .verticals-grid.two,
  .verticals-grid.three {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vertical-card {
    padding: 22px;
  }

  .v-image {
    height: 190px;
  }
}


/* ===============================
   MOBILE PHONES
   =============================== */
@media (max-width: 480px) {

  .verticals-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .category-title {
    font-size: 22px;
  }

  .category-desc {
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0 5px;
  }

  .vertical-category {
    padding: 50px 18px;
  }

  .vertical-card h4 {
    font-size: 16px;
  }

  .vertical-card p {
    font-size: 13px;
  }

  .v-btn {
    padding: 12px;
    font-size: 14px;
  }

  .v-image {
    height: 170px;
  }
}


/*core problem */
.core-problem-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef6ff, #f9fbff);
  font-family: "Poppins", sans-serif;
  margin-top: -180px;
}

.core-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.core-header {
  text-align: center;
  margin-bottom: 80px;
}

.core-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0a2540;
}

.core-header h2 span {
  color: #2f80ff;
}

.core-header p {
  max-width: 720px;
  margin: 15px auto 0;
  font-size: 16px;
  color: #5c6b7a;
  line-height: 1.7;
}

/* FLOW */
.core-flow {
  position: relative;
  padding: 20px 0;
}

/* Vertical line */
.flow-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #ac2ab8, #1285af);
  transform: translateX(-50%);
  border-radius: 5px;
}

/* FLOW ITEM */
.flow-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 70px;
  position: relative;
}

.flow-item.left {
  justify-content: flex-start;
}

.flow-item.right {
  justify-content: flex-end;
}

.flow-item.left .flow-content {
  margin-left: 40px;
}

.flow-item.right .flow-content {
  margin-right: 40px;
  text-align: right;
}

/* NUMBER */
.flow-number {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid #2f80ff;
  color: #2f80ff;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(47,128,255,0.25);
}

/* CONTENT */
.flow-content {
  max-width: 420px;
}

.flow-content h3 {
  font-size: 22px;
  color: purple;
  margin-bottom: 10px;
}

.flow-content p {
  font-size: 15px;
  line-height: 1.7;
  color: black;
  text-align: justify;
}
.flow-content p span{
  color: gray;
}

/* HIGHLIGHT */
.flow-item.highlight .flow-number {
  background: linear-gradient(135deg, #2f80ff, #6dd5fa);
  color: white;
  border: none;
  box-shadow: 0 0 30px rgba(47,128,255,0.5);
}

.flow-item.highlight h3 {
  color: #2f80ff;
}

/* RESPONSIVE *
@media (max-width: 768px) {
  .flow-line {
    left: 30px;
  }

  .flow-item {
    flex-direction: row;
    justify-content: flex-start !important;
  }

  .flow-content {
    margin-left: 30px !important;
    margin-right: 0 !important;
    text-align: left !important;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .core-header h2 {
    font-size: 30px;
  }

  .flow-number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
@media(max-width:1026px){
  .flow-content {
  max-width: 380px;
}
}

/* ===============================
   SMALL LAPTOPS (1200px → 1024px)
   =============================== */
@media (max-width: 1200px){

  .core-container{
    padding: 0 20px;
  }

  .flow-content{
    max-width: 360px;
  }

  .core-header h2{
    font-size: 38px;
  }
}


/* ===============================
   TABLETS (1024px → 768px)
   =============================== */
@media (max-width: 1024px){

  .core-header h2{
    font-size: 34px;
  }

  .core-header p{
    font-size: 15px;
  }

  .flow-content{
    max-width: 320px;
  }

  .flow-item{
    margin-bottom: 60px;
  }

  .flow-number{
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
}


/* ===============================
   TABLET → MOBILE STACK MODE
   =============================== */
@media (max-width: 900px){

  /* Move vertical line to left */
  .flow-line{
    left: 28px;
    transform: none;
  }

  .flow-item{
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding-left: 70px;
  }

  .flow-number{
    position: absolute;
    left: 0;
  }

  .flow-content{
    margin: 0 !important;
    text-align: left !important;
    max-width: 100%;
  }
}


/* ===============================
   LARGE MOBILES
   =============================== */
@media (max-width: 768px){

  .core-problem-section{
    padding: 80px 16px;
  }

  .core-header{
    margin-bottom: 60px;
  }

  .core-header h2{
    font-size: 30px;
    line-height: 1.3;
  }

  .core-header p{
    font-size: 14px;
    padding: 0 10px;
  }

  .flow-item{
    margin-bottom: 50px;
    padding-left: 65px;
  }

  .flow-content h3{
    font-size: 20px;
  }

  .flow-content p{
    font-size: 14px;
  }
}


/* ===============================
   MOBILE PHONES
   =============================== */
@media (max-width: 480px){

  .core-problem-section{
    padding: 70px 12px;
  }

  .core-header h2{
    font-size: 26px;
  }

  .flow-number{
    width: 45px;
    height: 45px;
    font-size: 15px;
  }

  .flow-item{
    padding-left: 58px;
  }

  .flow-content h3{
    font-size: 18px;
  }

  .flow-content p{
    font-size: 13.5px;
    line-height: 1.6;
  }
}

/*franchise overview*/
/* SECTION */
.franchise-overview-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, #eef6ff, #f9fbff);
  margin-top: -130px;
}

/* HEADER */
.fo-header {
  text-align: center;
  margin-bottom: 60px;
}

.fo-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.fo-header p {
  font-size: 18px;
  color: #555;
}

/* LAYOUT */
.fo-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TOP CARDS */
.fo-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.fo-tab {
  flex: 1;
  padding: 18px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(135deg,#6a5af9,#8b5cf6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(90,90,255,0.35);
  overflow: hidden;
}
.fo-tab span {
  color: bisque;
  margin-left: 10px;
  border: 1px solid #6a5af9;
  border-radius: 50%;
  padding: 0px 2px;
  background-color: #6a5af9;
}
@media(max-width:1026px){
  .fo-tab{
   padding: 25px;
  }
}
/* SHINE */
.fo-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent);
  transform: translateX(-100%);
}

.fo-tab:hover::after {
  animation: shine 1.2s;
}

.fo-tab:hover,
.fo-tab.active {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 30px rgba(100,100,255,0.8);
}

/* CONTENT */
.fo-content {
  position: relative;
  min-height: 420px;
  padding: 40px;
  border-radius: 26px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* PANELS */
.fo-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.6s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fo-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.fo-tab.active {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 30px rgba(100,100,255,0.8);
}


/* TEXT */
.fo-panel h3 {
  font-size: 28px;
  color: purple;
  margin-bottom: 16px;
}

.fo-panel p {
  max-width: 90%;
  font-size: 16px;
  color: black;
}

/* IMAGE */
.fo-panel img {
  max-width: 320px;
  margin-top: 30px;
  border-radius: 18px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

/* VIDEO *
.fo-right video {
  width: 100%;
  height: 300px;
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(0,0,0,0.25);
}*/
/* RIGHT VIDEO ALIGNMENT */
.fo-right{
  display:flex;
  align-items:center;   /* vertical center with left content */
  justify-content:center;
}

/* VIDEO BOX WITH BLACK BACKGROUND */
.video-box{
  width:100%;
  max-width:420px;
  background:#000;
  padding:18px;
  border-radius:26px;
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

/* VIDEO */
.video-box video{
  width:100%;
  height: 400px;
  border-radius:18px;
  display:block;
}

/* CONTROLS WRAPPER */
.video-controls{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* PLAY BUTTON */
#playPauseBtn{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg,#6a5af9,#8b5cf6);
  color:#fff;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.3);
  transition:0.3s;
}
#playPauseBtn:hover{
  transform:scale(1.1);
}

/* PROGRESS BAR */
#videoProgress{
  flex:1;
  height:6px;
  appearance:none;
  background:#444;
  border-radius:10px;
  cursor:pointer;
}
#videoProgress::-webkit-slider-thumb{
  appearance:none;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#8b5cf6;
  cursor:pointer;
}

/* ANIMATIONS */
@keyframes shine {
  to { transform: translateX(100%); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .fo-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fo-tabs {
    flex-direction: column;
  }

  .fo-content {
    min-height: 460px;
  }

  .fo-panel img {
    max-width: 260px;
  }
}


/* WHY PROFENAA FRANCHISE */
.franchise-journey {
  position: relative;
  padding: 140px 8%;
  background: linear-gradient(180deg, #eef6ff, #dbeafe);
  overflow: hidden;
 
}

/* HALF CIRCLE SHAPE */
.journey-bg {
  position: absolute;
  top: -480px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 900px;
  background: radial-gradient(circle, #0b1d3a, #020617);
  border-radius: 50%;
  z-index: 0;
}

/* CONTENT */
.journey-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.journey-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.journey-subtitle {
  opacity: 0.8;
  margin-bottom: 60px;
  color: whitesmoke;
}

/* SLIDER CONTAINER */
.journey-card {
  position: relative;
  height: 260px;
  max-width: 520px;
  margin: auto;
}

/* SLIDES */
.journey-slide {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 42px 30px;
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  transition: all 0.9s ease;
  border: 1px solid rgba(255,255,255,0.35);
  
}

.journey-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  box-shadow:
    0 0 40px rgba(56,189,248,0.45),
    inset 0 0 20px rgba(56,189,248,0.2);
}

/* ICON */
.journey-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 30px rgba(99,102,241,0.9);
}

.journey-icon i {
  font-size: 26px;
  color: gold;
}

.journey-slide h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: navy;
}

.journey-slide p {
  color: black;
}
/* SLIDE EXIT STATE */
.journey-slide.exit {
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .journey-card {
    height: 300px;
  }

  .journey-bg {
    width: 600px;
    height: 600px;
    top: -300px;
  }
  .journey-subtitle{
    font-size: 0.9em;
  }
  .journey-wrapper{
    top: -60px;
  }
}

@media(max-width:1026px){
  .journey-bg { 
  width: 900px;
  height: 900px; 
}
}
@media(max-width:770px){
  .journey-bg { 
  width: 720px;
  height: 900px; 
}
}
@media(max-width:428px){
  .journey-bg { 
  width: 520px;
  height: 800px; 
}
}

/*SUCCESS STORIES SECTION*/

.success-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0d0f2b, #1a1f4d, #232a6f);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Floating bubbles */
.bubbles span {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(12px);
  animation: bubbleMove 18s linear infinite;
}
.bubbles span:nth-child(1){ left:8%; animation-delay:0s;}
.bubbles span:nth-child(2){ left:22%; animation-delay:3s;}
.bubbles span:nth-child(3){ left:38%; animation-delay:6s;}
.bubbles span:nth-child(4){ left:55%; animation-delay:2s;}
.bubbles span:nth-child(5){ left:72%; animation-delay:5s;}
.bubbles span:nth-child(6){ left:88%; animation-delay:8s;}

@keyframes bubbleMove {
  0% { transform: translateY(120vh); opacity:0.5; }
  100% { transform: translateY(-120vh); opacity:0; }
}

/* Container */
.success-container {
  max-width: 1000px; /* CHANGED */
  margin: auto;
  position: relative;
  z-index: 2;
}

.success-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
}

.success-subtitle {
  text-align: center;
  color: #d8dcff;
  margin-bottom: 60px;
}

/* =========================
   SLIDER
========================= */
.success-slider {
  overflow: hidden;
}

.success-track {
  display: flex;
  gap: 24px;
  transition: transform 0.9s ease-in-out;
  will-change: transform;
}

/* =========================
   CARD
========================= */
.success-card {
  flex: 0 0 calc(50% - 12px); /* two cards */
  background: linear-gradient(145deg, #e6d8ff, #cbb4ff);
  border-radius: 22px;
  padding: 38px 32px;
  text-align: center;
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.35),
    inset 0 0 0 rgba(255,255,255,0);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* Shine effect */
.success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transform: translateX(-120%);
  transition: 0.6s;
}

.success-card:hover::before {
  transform: translateX(120%);
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 35px rgba(180,120,255,0.9),
    0 25px 60px rgba(0,0,0,0.4);
}

/* Content */
.success-card img {
  width: 80px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(140,90,255,0.6));
}

.success-card p {
  font-size: 15px;
  line-height: 1.7;
  color: black;
  margin-bottom: 22px;
  font-weight: 500;
  text-align: center;
}

.success-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: purple;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 900px) {
  .success-card {
    flex: 0 0 100%;
  }
  .success-title {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .success-card {
    padding: 30px 24px;
  }
  .success-card img {
    width: 90px;
  }
  .success-card p {
    font-size: 14px;
  }
}

/* APPLY */
/* ===============================
   APPLY FRANCHISE SECTION
================================ */

.apply-franchise-section {
  padding: 120px 8%;
 background: linear-gradient(135deg, #eef6ff, #f9fbff);
  overflow: hidden;
}

/* CONTAINER */
.apply-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
================================ */

.apply-content h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 18px;
}

.apply-content h2 span {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.apply-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 28px;
}

/* POINTS */
.apply-points {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.apply-points li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #0f172a;
}
@media(max-width:770px){
  .apply-points li{
    text-align: justify;
  }
}

/* CTA BUTTONS */
.apply-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.apply-btn {
  position: relative;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* PRIMARY */
.apply-btn.primary {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  box-shadow: 0 0 30px rgba(56,189,248,0.6);
}

/* SECONDARY (WHATSAPP) */
.apply-btn.secondary {
  border: 2px solid #22c55e;
  color: #22c55e;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

/* SHINE EFFECT */
.apply-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.apply-btn:hover::after {
  transform: translateX(100%);
}

.apply-btn:hover {
  transform: translateY(-3px);
}

/* ===============================
   RIGHT IMAGE
================================ */

.apply-visual {
  display: flex;
  justify-content: center;
}

/* GLASS IMAGE CARD */
.image-glass {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 0 40px rgba(56,189,248,0.45),
    inset 0 0 25px rgba(56,189,248,0.25);
  animation: floatImage 6s ease-in-out infinite;
}

.image-glass img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
}

/* FLOATING ANIMATION */
@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .apply-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .apply-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .apply-btn {
    width: 100%;
    text-align: center;
  }

  .image-glass img {
    max-width: 300px;
  }
}


.talk-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  border-radius: 50px;

  background: linear-gradient(135deg, #079e4b, #046419);
  box-shadow:
    0 12px 30px rgba(59,130,246,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.25);

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glow sweep */
.talk-team-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.talk-team-btn:hover::before {
  transform: translateX(120%);
}

.talk-team-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(59,130,246,0.7);
}

/* Phone icon pulse */
.call-icon {
  font-size: 18px;
  animation: callPulse 1.8s infinite;
}

@keyframes callPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}



/*popup form*/
/* POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  display: none; /* 🔥 VERY IMPORTANT */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* POPUP CARD */
.popup-card {
  width: 95%;
  max-width: 420px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 30px;
  color: #fff;
  animation: scaleIn 0.6s ease;
  position: relative;
  box-shadow: 0 0 40px rgba(0,170,255,0.25);
}

.popup-card h4 {
  text-align: center;
  margin-bottom: 20px;
}

/* FORM */
.popup-form input,
.popup-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
}

/* BUTTON */
.popup-form button {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg,#00c6ff,#0072ff);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s;
}

.popup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px #00c6ff;
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media(max-width:480px){
  .popup-card {
    padding: 22px;
  }
}
.result-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  display: none;
  z-index: 10000;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  width: 300px;
}

.result-popup h3 {
  margin-bottom: 10px;
}

/* RESULT POPUP BUTTON */
#resultOverlay .popup-card button {
  display: block;              
  margin: 20px auto 0;         
  padding: 12px 35px;         
  background: linear-gradient(135deg,#00c6ff,#0072ff);
  border: none;
  border-radius: 30px;         
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease;
}

/* Hover effect */
#resultOverlay .popup-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px #0ec54b;
}




/*whatsapp icon*/
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.5),
    0 0 20px rgba(37, 211, 102, 0.6);
  z-index: 9999;
  transition: all 0.35s ease;
  text-decoration: none;
}

/* WhatsApp Icon */
.whatsapp-float i {
  color: #fff;
  font-size: 30px;
}

/* Hover Effects */
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(37, 211, 102, 0.8),
    0 0 35px rgba(37, 211, 102, 0.9);
}

/* Pulse Animation */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    left: 18px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}

/*loader*/
.preloader {
  position: fixed;
  inset: 0;
  background: #020b18;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.loader {
  width: 55px;
  height: 55px;
  border: 5px solid rgba(255,255,255,0.2);
  border-top: 5px solid #00c6ff;
  border-radius: 50%;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/*rocket icon*/
.rocket-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top, #ffffff, #3b82f6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow:
    0 10px 30px rgba(59, 130, 246, 0.6),
    0 0 30px rgba(59, 130, 246, 0.8);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Rocket Icon */
.rocket-top i {
  font-size: 26px;
  color:orangered;
  transform: rotate(-45deg);
}

/* Hover Lift */
.rocket-top:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow:
    0 18px 45px rgba(59, 130, 246, 0.9),
    0 0 45px rgba(59, 130, 246, 1);
}

/* Pulse Ring */
.rocket-top::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.5);
  animation: rocketPulse 2s infinite;
  z-index: -1;
}

@keyframes rocketPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Shine Sweep */
.rocket-top::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: rotate(25deg);
  animation: shineMove 3.5s infinite;
}

@keyframes shineMove {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .rocket-top {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .rocket-top i {
    font-size: 22px;
  }
}


/*icons*/
.social-float-icons {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;

  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(60px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.social-float-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;
  text-decoration: none;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 12px rgba(255,255,255,0.35),
    0 0 22px rgba(255,255,255,0.25);

  animation: pulseGlow 2.5s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.social-float-icons a.facebook {
  background: rgba(24, 119, 242, 0.85);
}

.social-float-icons a.instagram {
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.9),
    rgba(253, 29, 29, 0.9),
    rgba(252, 176, 69, 0.9)
  );
}

.social-float-icons a.linkedin {
  background: rgba(10, 102, 194, 0.85);
}

.social-float-icons a.youtube {
  background: rgba(255, 0, 0, 0.85);
}
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 6px rgba(255,255,255,0.6),
      0 0 14px rgba(0,0,0,0.15),
      0 0 22px var(--glow-color);
  }
  50% {
    box-shadow:
      0 0 10px rgba(255,255,255,0.9),
      0 0 22px rgba(0,0,0,0.25),
      0 0 40px var(--glow-color);
  }
  100% {
    box-shadow:
      0 0 6px rgba(255,255,255,0.6),
      0 0 14px rgba(0,0,0,0.15),
      0 0 22px var(--glow-color);
  }
}
.social-float-icons a {
  --glow-color: rgba(0, 0, 0, 0.4); /* fallback */
}
.social-float-icons a.facebook {
  background: rgba(24, 119, 242, 0.9);
  --glow-color: rgba(24, 119, 242, 0.9);
}

.social-float-icons a.instagram {
  background: linear-gradient(
    135deg,
    rgba(131, 58, 180, 0.95),
    rgba(253, 29, 29, 0.95),
    rgba(252, 176, 69, 0.95)
  );
  --glow-color: rgba(225, 48, 108, 0.9);
}

.social-float-icons a.linkedin {
  background: rgba(10, 102, 194, 0.9);
  --glow-color: rgba(10, 102, 194, 0.9);
}

.social-float-icons a.youtube {
  background: rgba(255, 0, 0, 0.9);
  --glow-color: rgba(255, 0, 0, 0.9);
}
.social-float-icons a {
  animation: pulseGlow 2.4s infinite ease-in-out;
}
.social-float-icons a:hover {
  transform: scale(1.15);
  animation-play-state: paused;
  box-shadow:
    0 0 20px #fff,
    0 0 45px var(--glow-color);
}

.social-float-icons a:hover {
  transform: scale(1.15);
  animation-play-state: paused;
}

/* Brand hover glow */
.social-float-icons a.facebook:hover {
  background: #1877f2;
  box-shadow: 0 0 25px #1877f2;
}

.social-float-icons a.instagram:hover {
  box-shadow: 0 0 28px #e1306c;
}

.social-float-icons a.linkedin:hover {
  background: #0a66c2;
  box-shadow: 0 0 25px #0a66c2;
}

.social-float-icons a.youtube:hover {
  background: #ff0000;
  box-shadow: 0 0 25px #ff0000;
}
@media (max-width: 768px) {
  .social-float-icons {
    right: 16px;
  }

  .social-float-icons a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .social-float-icons {
    right: 12px;
  }

  .social-float-icons a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}
