@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");

/* General styles */
body,
html {
  margin: 0;
  padding: 0;
  /* font-family: Arial, sans-serif; */
}

.menu-item {
  display: block;
  background-color: #ffb100;
  color: white;
  text-decoration: none;
  padding: 15px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
}
.menu-item:hover {
  background-color: #0056b3;
  color: #fff;
}
.sb-btn {
  background-color: #ffb100;
  border-radius: 10px;
  border: none;
  padding: 10px;
  color: #fff;
}
/*  */
.form-container {
  max-width: 500px;
  margin: 0 auto;
}
label {
  /* font-weight: bold;
    display: block; */
  margin: 10px 0 5px;
}

.flex-container {
  display: flex;
  justify-content: space-between;
}
.flex-container input,
.flex-container select {
  width: 48%;
}
.lf-img {
  border-radius: 50%;
  border: 8px solid #ffb100;
}
.lf-img:hover {
  border: 8px solid #014db3;
  cursor: pointer;
}
.sb-head {
  color: #ffb100;
}

/* Tax calculator */
.tax-calculator {
  width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 10px;
  text-align: left;
}
.t-head {
  background-color: #f0f0f0;
  color: brown;
}
.td-cn {
  background-color: #f1f1f1;
  color: #dc3545;
}
input[type="number"] {
  width: 100%;
  padding: 5px;
}
.result {
  font-weight: bold;
}
form {
  font-size: 14px;
}
/* counter div  */

.counter-box {
  text-align: center;
  /* margin: 0 20px; */
}

.counter-box h2 {
  font-size: 40px;
  color: #f0f0f0;
  margin-bottom: 10px;
  font-weight: bold;
}

.coun-backimge{
  background: linear-gradient(to left, orange, tomato);
  /* height: 100vh; */
  /* width: 100%; */
}

.counter-box p {
  font-size: 20px;
  color: #f0f0f0;
}

/* Footer Section  */
.footer-sec {
  padding: 20px 0px;
  /* background-color: #374a5e; */
  background: linear-gradient(to left, orange, tomato);
  color: #555;
}
.footer-sec p:hover{
  color: #fff;
}

.footer-sec .border-right {
  border-right: 1px solid #fff;
}
.footer-sec i{
  color: #fff;
}

.footer-sec .hr{
  /* color: #fff; */
  border-bottom: 2px solid #ffffff;
}

.footer-sec ul {
  padding-left: 0px;
  margin-top: 18px;
}
.footer-sec ul li {
  list-style: none;
  margin-top: 8px;
}
.footer-sec ul li a {
  text-decoration: inherit;
  color: #555;
}
.footer-sec ul li a:hover{
  color: #fff;
}




/* Our partner Slider  */
/* Slider container */
.slider-container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Slider track */
.slider-track {
  display: flex;
  animation: slide 15s linear infinite;
}

/* Each logo box */
.slide {
  min-width: 200px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

/* Partner logos */
.slide img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.slide:hover img {
  filter: grayscale(0%); /* Restore color on hover */
}

/* Sliding animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.card-title {
  font-size: 18px;
  font-weight: 600;
}

.card-img-top {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.text-center {
  margin-top: 10px;
}

/* OPEN A/C  */
.accc {
  background-color: #d7e9ff;
}

.f-sec {
  border-radius: 50%;
  border: 4px solid #015ceb;
  background-color: #f0f0f0;
} 



/* Contact form */

.concard {
  background-color: #075ac7;
  color: #222;
}


/* What makes Excel India Unique  */                   

            /* Service Block Two */

            .service-block-two{
                /* position:relative;
                z-index:1; */
                margin-bottom:30px;
            }

            .service-block-two .inner-box{
                position:relative;
                overflow:hidden;
                padding:45px 45px;
                border-radius:6px;
                background-color:#f5f5f5;
            }

            .service-block-two .inner-box .shape-one{
                content: '';
                width: 250px;
                height: 250px;
                background: tomato;
                border-radius: 50%;
                position: absolute;
                top: -120px;
                opacity:0.4;
                right: -120px;
                transform: scale(0);
                -webkit-transition:all 600ms ease;
                -moz-transition:all 600ms ease;
                -ms-transition:all 600ms ease;
                -o-transition:all 600ms ease;
                transition:all 600ms ease;
            }

            .service-block-two .inner-box:hover .shape-one{
                transform: scale(1);
                webkit-transition-delay:300ms;
                -ms-transition-delay:300ms;
                transition-delay:300ms;
            }

            .service-block-two .inner-box .shape-two{
                content: '';
                width: 373px;
                height: 373px;
                background: tomato;
                border-radius: 50%;
                position: absolute;
                top: -180px;
                right: -180px;
                z-index: 1;
                opacity: 0;
                transform: scale(0);
                -webkit-transition:all 600ms ease;
                -moz-transition:all 600ms ease;
                -ms-transition:all 600ms ease;
                -o-transition:all 600ms ease;
                transition:all 600ms ease;
            }

            .service-block-two .inner-box:hover .shape-two{
                opacity: 0.4;
                transform: scale(1);
                webkit-transition-delay:600ms;
                -ms-transition-delay:600ms;
                transition-delay:600ms;
            }

            .service-block-two .inner-box:before{
                position:absolute;
                content:'';
                left:0px;
                bottom:0px;
                width:100%;
                height:50%;
                opacity:0;
                background-color: orange;
                -webkit-transition:all 600ms ease;
                -ms-transition:all 600ms ease;
                -o-transition:all 600ms ease;
                -moz-transition:all 600ms ease;
                transition:all 600ms ease;
            }

            .service-block-two .inner-box:hover::before{
                height:100%;
                opacity:1;
            }

            .service-block-two .inner-box .icon-box{
                position:relative;
                z-index:2;
            }

            .service-block-two .inner-box .icon-box{
                position:relative;
                font-size: 40px;
                line-height:1em;
                color:#0060ff;
                -webkit-transition:all 300ms ease;
                -ms-transition:all 300ms ease;
                -o-transition:all 300ms ease;
                -moz-transition:all 300ms ease;
                transition:all 300ms ease;
            }

            .service-block-two .inner-box .icon-box .icon{
                position:relative;
            }

            .service-block-two .inner-box h5{
                position:relative;
                z-index:2;
                color:#222222;
                font-weight:600;
                line-height:1.3em;
                margin:20px 0px 15px;
            }

            .service-block-two .inner-box h5 {
                position:relative;
                color: #0060ff;
                transition:all 300ms ease;
                -webkit-transition:all 300ms ease;
                -ms-transition:all 300ms ease;
                -o-transition:all 300ms ease;
            }

            

            .service-block-two .inner-box .text{
                position:relative;
                color:#222222;
                z-index:2;
                font-size:16px;
                line-height:1.8em;
                -webkit-transition:all 300ms ease;
                -ms-transition:all 300ms ease;
                -o-transition:all 300ms ease;
                -moz-transition:all 300ms ease;
                transition:all 300ms ease;
            }

            .service-block-two .inner-box:hover .icon-box,
            .service-block-two .inner-box:hover h5 ,
            .service-block-two .inner-box:hover .text{
                color:#ffffff;
                cursor: pointer;
            }

 

/* How we work  */
.testimonial-section{
  position:relative;
  /* padding:110px 0px 100px; */
}

.testimonial-block .inner-box{
  position:relative;
  background-color:#ffffff;
}

.testimonial-block .inner-box:before{
  position:absolute;
  content:'';
  left:-20px;
  top:-20px;
  right:20px;
  bottom:20px;
  z-index:-1;
  border:4px solid orange;
}

.testimonial-block .inner-box .text{
  position:relative;
  /* margin-top:35px; */
  color:#555555;
  font-size:16px;
  line-height:1.6em;
  font-weight:500;
}

/* BLOG SECTION  START */

.blog-page-section {
  position: relative;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.news-block {
  position: relative;
  margin-bottom: 30px;
  
}

.news-block .inner-box {
  position: relative;
}

.news-block .inner-box .image {
  position: relative;
  overflow: hidden;
  /* background-color: #427cff; */
}

.news-block .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.news-block .inner-box:hover .image img {
  /* opacity: 0.7; */
  transform: scale(1.04, 1.04);
}

.news-block .inner-box .lower-content {
  position: relative;
  padding-top: 30px;
  background-color: #F9F8FA;
}

.news-block .inner-box .lower-content .post-date {
  position: relative;
  color: #0060ff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px solid #cccccc;
}

.news-block .inner-box .lower-content .post-date span {
  position: relative;
  font-size: 14px;
  color: #141d38;
}

.news-block .inner-box .lower-content h4 {
  position: relative;
  line-height: 1.4em;
  font-weight: 700;
  margin-top: 12px;
}

.news-block .inner-box .lower-content h4 a {
  position: relative;
  color: #141d38;
  transition: all 0.3s ease;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.news-block .inner-box .lower-content h4 a:hover {
  color: #0060ff;
}

.news-block .inner-box .lower-content .text {
  position: relative;
  line-height: 1.8em;
  font-weight: 600;
  margin-top: 12px;
  color: #555555;
  font-size: 16px;
  margin-bottom: 12px;
}

.news-block .inner-box .lower-content .read-more {
  position: relative;
  line-height: 1.4em;
  font-weight: 700;
  margin-top: 12px;
  color: #141d38;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.news-block .inner-box .lower-content .read-more .arrow,
.homeblog .read-more .arrow {
  position: relative;
  top: 1px;
  font-size: 16px;
  margin-left: 8px;
}

.news-block .inner-box .lower-content .read-more:hover {
  color: #0060ff;
}

.blog-page-section .styled-pagination {
  margin-top: 50px;
}

/* styled pagination  */

.styled-pagination {
  position: relative;
}

.styled-pagination li {
  position: relative;
  margin: 0px 5px 10px;
  display: inline-block;
}

.styled-pagination li a {
  position: relative;
  width: 50px;
  height: 50px;
  color: #777777;
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #d7d7d7;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.styled-pagination li.active a,
.styled-pagination li:hover a {
  color: #ffffff;
  border-color: #141d38;
  background-color: #141d38;
}

.styled-pagination li.next a,
.styled-pagination li.prev a {
  color: #ffffff;
  border-color: #0060ff;
  background-color: #0060ff;
}

/* home blog  */
.homeblog a {
  border-radius: 10px;
  padding: 10px;
  color: #222;
  background-color: #d7e9ff;
  border: transparent;
}
.homeblog a:hover {
  color: #0060ff;
}
.shadow1 {
  box-shadow: 3px 5px lightblue;
}
 /* feedback  */

 
.feedback-slide {
    text-align: center;
    padding: 20px;
}

.feedback-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 7px solid orange;
}

.feedback-slide p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.feedback-slide h4 {
    font-size: 18px;
    font-weight: bold;
    color: #014db3;
}

.feedback-slide span {
    color: #0060ff;
    text-decoration: none;
    font-size: 14px;
}




/* Arrow Styling */
.slick-prev:before,
.slick-next:before {
    color: #ffb100;
    font-size: 30px;
}

.slick-prev {
    left: -17px;
}

.slick-next {
    right: -8px;
}

/* the parent */
.slick-list {
    margin: 0 -27px;
}

.slick-slide {
    margin: 0 27px;
}

.slick-slide {
    margin: 0 20px;
}
/* USER DASHBOARD */
.custom-sidebar {
background-color: #253544;
}
.custom-menu,
.custom-nested-list {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0; /* Remove default padding */
}

.custom-menu .nav-item {
    margin-left: 15px; /* Adjust margin to match the parent link */
}

.custom-nested-list {
    margin-left: 15px; /* Align nested items with the parent */
}

/* Optional: Remove any margin between nested list items */
.custom-nested-list li {
    margin-bottom: 0;
}
/* one account multiple benifits   */
.benefit-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to left, orange, tomato);
  
  
}
.benefit-item:hover{
  cursor: pointer;
}

.benefit-icon:hover.benefit-icon img{
  transition: 0.5s ease-in-out;
  transform: scale(1.1);
}

/* About Excel India  */

.all-title{
  background: linear-gradient(to left, orange, tomato);
  padding: 20px;
  color: #f5f5f5;
  text-align: center;
}

.iso img{
  height: 470px;
}

.wel-part p{
  font-size: 19px;
  line-height: 1.7;
}

.visson-misson-box{
  padding: 20px;
  border-bottom : 3px solid orange;
  /* border-radius: 8px; */
  margin-bottom: 20px;
}

.visson-misson-box .icon{
  font-size: 40px;
  color: #0060ff;
}
 


.certificate-logo{
  position: relative;
  align-items: center;
}

.certificate-logo .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background-color:rgba(20,29,59,0.70); */
  background-color:rgba(186, 190, 203, 0.7);
  color: #fff;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}

.certificate-logo:hover .overlay {
  width: 100%;
}

/* Life insurance page  */

.life-insurance-box{
  /* padding: 20px; */
  border-bottom : 3px solid orange;
  /* border-radius: 8px; */
  margin-bottom: 20px;
}

.life-insurance-box .icon{
  font-size: 40px;
  color: #0060ff;
}
.lyf-ins-cards:hover{
  background: linear-gradient(to left, orange, tomato);
  color: #f1f1f1;
  cursor: pointer;
}



    .card-icon {
      /* width: 200px;
      height: 180px; */
      background-color: #f8f9fa;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: transform 0.2s;
      /* position: absolute; */
    }

    .card-icon:hover {
      transform: scale(1.05);
      background: linear-gradient(to left, orange, tomato);
      color: #f5f5f5;
      cursor: pointer;
    }

    .icon-img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }

    .icon-text {
      font-weight: bold;
    }

    
  



/* Endowment Plans page */
.endowment-icon{
  font-size: 80px;
  color: #0060ff;
}
.endowment-icon:hover{
  color: orange;
  cursor: pointer;
}

/* health insurance  */

.cover-section {
  background-color: #f8fafc;
  padding: 20px;
  border: 1px dashed #2555A3;
  border-radius: 8px;
}
.hel-icon {
  font-size: 2rem;
  color: #2a4d85;
  
}
.hel-icon i{
  border-radius: 50%;
  border: 1px dashed #2555A3;
  padding: 10px;
}
 
/* New Navbar section  */

 /*----------buttom navbar section Starts Here---------  */

.header {
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: hsl(220, 100%, 99%);
  z-index: 100;
  padding: 5px 0px;
}

.header ul {
  list-style: none;
}

.nav {
  height: 3.5rem;
  display: block;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  transition: color 0.3s;
  width: 100%;
}

.nav__logo img {
  height: 4.5rem;
}

.nav__toggle i {
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.25rem;
  color: hsl(220, 48%, 28%);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 1s, transform 0.4s;
}

.nav__toggle-close {
  opacity: 0;
}

.nav-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Navigation for mobile devices */
@media (max-width: 1118px) {
  .nav__menu {
      /* background-color: var(--body-color); */
      background-color: hsl(220, 100%, 99%);
      position: absolute;
      left: 0;
      top: 2.5rem;
      width: 100%;
      height: calc(100vh - 3.5rem);
      overflow: auto;
      padding-block: 1.5rem 4rem;
      pointer-events: none;
      opacity: 0;
      transition: top 0.4s, opacity 0.3s;
  }

  .nav__menu::-webkit-scrollbar {
      width: 0.5rem;
  }

  .nav__menu::-webkit-scrollbar-thumb {
      background-color: hsl(220, 12%, 70%);
  }

  .nav-btn {
      justify-content: start;
      margin-left: 20px;
  }
}

.nav__link {
  color: hsl(220, 48%, 28%);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  text-decoration: none !important;
}

.nav__link:hover {
  background-color: hsl(220, 68%, 97%);
}

/* Show Menu  */
.show-menu {
  opacity: 1;
  top: 3.8rem;
  pointer-events: initial;
}

/* show-icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(180deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(180deg);
}

/* Dropdown  */
.dropdown__button {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}

.dropdown__container {
  background-color: hsl(220, 68%, 97%);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown__content {
  row-gap: 1.7rem;
}

.dropdown__group {
  padding-left: 2.5rem;
}

.dropdown__group:first-child {
  margin-top: 1.5rem;
}

.dropdown__group:last-child {
  margin-bottom: 1.5rem;
}

.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: 600;
  color: hsl(220, 48%, 28%);
}

.dropdown__list {
  row-gap: 0.25rem;
}

.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: 500;
  color: hsl(220, 12%, 45%);
  transition: color 0.3s;
  text-decoration: none;
}

.dropdown__link:hover {
  color: #00317A;
}

.dropdown__title:hover {
  color: #00317A;
}

/* Rotate dropdown icon  */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/* ==========BREAKPOINTS========== */
/* For small devices  */
@media (max-width: 300px) {
  .dropdown__group {
      padding-left: 1.5rem;
  }
}

/* For large devices  */
@media (min-width: 1118px) {

  /* Nav  */
  .nav {
      height: calc(3.5rem + 2rem);
      display: flex;
      justify-content: space-between;
  }

  .nav .nav__logo img {
      height: calc(3.5rem + 2rem);
  }

  .nav__toggle {
      display: none;
  }

  .nav__list {
      display: flex;
      column-gap: 2rem;
      height: 100%;
  }

  .nav li {
      display: flex;
  }

  .nav li a {
      text-decoration: none;
  }

  .nav__link {
      padding: 0;
  }

  .nav__link:hover {
      background-color: initial;
  }

  /* Dropdown  */
  .dropdown__button {
      column-gap: 0.25rem;
      pointer-events: none;
  }

  .dropdown__container {
      height: max-content;
      position: absolute;
      left: 0;
      right: 0;
      top: 6.5rem;
      background-color: hsl(220, 100%, 99%);
      box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
      pointer-events: none;
      opacity: 0;
      transition: top 0.4s, opacity 0.3s;
  }

  .dropdown__content {
      grid-template-columns: repeat(4, max-content);
      /* column-gap: 4rem; */
      column-gap: 1rem;
      max-width: 1120px;
      margin-inline: auto;
  }

  .dropdown__group {
      padding: 2rem 0;
      align-content: baseline;
      row-gap: 1.25rem;
  }

  .dropdown__group:first-child,
  .dropdown__group:last-child {
      margin: 0;
  }

  .dropdown__list {
      row-gap: 0.25rem;
  }

  .dropdown__title {
      font-size: var(--normal-font-size);
  }

  .dropdown__link {
      font-size: var(--small-font-size);
  }

  .dropdown__link:hover {
      color: #00317A;
  }

  .dropdown__title:hover {
      color: #00317A;
  }

  .dropdown__item {
      cursor: pointer;
  }

  /* Rotate dropdown icon  */
  .dropdown__item:hover .dropdown__arrow {
      transform: rotate(180deg);
  }

  /* Show dropdoen menu   */
  .dropdown__item:hover>.dropdown__container {
      top: 5.5rem;
      opacity: 1;
      pointer-events: initial;
      cursor: initial;
  }
}

@media (max-width:1152px) {
  .dropdown__container {
      margin-inline: auto;
  }
}

.donate-btn {
  background-color: #fe9150;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
  border: none;
  outline: none;
}

.login-btn {
  background-color: #003579;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
  border: none;
  outline: none;
}

/*----------buttom navbar section Ends Here---------  */

/* Term life insurance n  */

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  background-color: #f8f9fa; 

}

.icon-container:hover {
  background-color: orange; 
  color: #fff;
  transition: all 0.3s ease;
}

.icon-container:hover i{
  color: #fff;
}

.icon-container i {
  font-size: 30px;
  margin-bottom: 10px;
  color: tomato;
}

/* return of premium nav  */

.return-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  background-color: #f8f9fa; 

}

.return-icon-container:hover {
  background-color: #6679cd; 
  color: #fff;
  transition: all 0.3s ease;
}

.return-icon-container:hover i{
  color: #fff;
}

.return-icon-container i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0060ff;
}