@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baskervville+SC&family=DM+Serif+Text:ital@0;1&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --praimary-color: #e70323;
  --secondary-color: #0e1824;
  --praimary-color-grb: 247, 0, 0;
  --white-color: #fff;
}

::selection {
  color: #fff;
  background: #000;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  scrollbar-color: var(--praimary-color) var(--black-color2);
}

h4 {
  font-size: 15px;
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  margin: 0;
}

button {
  outline: none;
}

body {
  color: #555555;
  background-color: #ffffff;
}

/* arrow scroll top style start */
#scrollButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  /* Initially hidden */
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#scrollButton:hover {
  background-color: #3a98fc;
}

#scrollButton img {
  width: 25px;
  filter: invert();
}

/* arrow scroll top style end */
#Header {
  /* background-color: #053742; */
  background-color: #fff;
  color: white;
  padding: 6px 5%;
  position: relative;
  z-index: 101;
}

.Logo {
  width: 80px;
}

.Logo img {
  width: 100%;
}

.NAv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.Navbar ul li a {
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  letter-spacing: 1px;
  transition: 0.4s;
  font-size: 17px;
}

.Navbar ul li a.Button {
  background-color: #fff;
  color: #053742;
  border-radius: 20px;
  margin: 0 5px;
}

.MenuOpen {
  display: none;
  width: 30px;
}


.MenuOpen img {
  width: 100%;
  transition: 0.4s;
}

.hamburger {
  width: 30px;
  height: 3px;
  background-color: #000;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: '';
  width: 30px;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.close-icon {
  font-size: 30px;
  color: #000;
  cursor: pointer;
}

#MainSlide {
  padding: 40px 0;
}

.MainSlideCard1,
.MainSlideCard2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.MainSlideCard1 h4 {
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
}



.MainSlideCard1 a {
  color: #053742;
  border: 2px solid #053742;
  padding: 10px 20px;
  border-radius: 20px;
  transition: 0.4s;
  display: block;
  width: fit-content;

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.MainSlideCard1 a:hover {
  background-color: #053742;
  color: #fff;
}

.MainSlideCard2 img {
  max-width: 100%;
  position: relative;
  z-index: -1;
}

.animation {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  #MainSlide {
    padding: 20px 0;
  }

  .MainSlideCard1 h4 {
    font-size: 32px;
    line-height: 38px;
  }

  .MainSlideCard1 p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.Shorten_card {
  background-color: #fff;
  padding: 13px 20px;
  border-radius: 10px;
}

#Shorten p a {
  color: #3498db;
}

#Shorten p a:hover {
  color: #0e517e;
}

.Shorten {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Shorten input {
  width: 75%;
  border: none;
  outline: none;
  background-color: #fff;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 10px;
}

.Shorten button {
  width: 24%;
  background-color: #053742;
  color: #fff;
  border: none;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  transition: 0.4s;
  border: 2px solid #053742;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.Shorten button:hover {
  background-color: #fff;
  color: #053742;
}

.Shorten.Link_display {
  margin-top: 10px;
}

.Shorten.Link_display button {
  background-color: #fff;
  color: #053742;
  border: 0;
  border: 2px solid #fff;
}

.Shorten.Link_display button img {
  width: 15px;
}

.Shorten.Link_display button:hover {
  border-color: #053742;
}

#Brand {
  padding: 40px 0;
}

/* Footer style end */

/* login form style start */
.Login_form .modal-dialog {
  margin-top: 100px;
  max-width: 450px;
}

.Login_form .content {
  border-radius: 10px;
}

.Login_form .modal-header {
  background-color: #053742;
  color: #fff;
}

.Login_form .modal-header .btn-close {
  filter: invert();
}

.form_group {
  margin-bottom: 15px;
}

.form_group label {
  margin-bottom: 5px;
}

.form_group input {
  padding: 10px;
  border: 1px solid gray;
  font-size: 13px;
  width: 100%;
  border-radius: 5px;
}

.form_group:has(> .Login_btn) {
  text-align: center;
  margin-bottom: 10px;
}

.Login_btn {
  background-color: #053742;
  color: #fff;
  padding: 7px 20px;
  border: none;
  transition: 0.4s;
  width: 150px;
  border-radius: 20px;
}

.Login_btn:hover {
  background-color: #084857;
  color: #fff;
}

#Welcome {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Sucess_card {
  padding: 20px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  color: #053742;
  font-size: 40px;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: "Baskervville SC", serif;
  letter-spacing: 2px;
  flex-direction: column;
}

.Check_icon {
  width: 100px;
  height: 100px;
  background-color: #053742;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.Check_icon img {
  width: 50px;
  filter: invert();
}

#Why_egly {
  padding: 30px 0;
}

.Why_egly h4 {
  font-size: 32px;
  color: #a63c03;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.Why_egly p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 10px;
}

.List li {
  position: relative;
  padding: 10px;
  padding-left: 25px;
}

.List li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  height: 100%;
  width: 20px;
  background-image: url(/public/images/checkmark.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}

.List li span {
  font-weight: 800;
  font-size: 14px;
}

.Counter_Sec {
  background-color: #053742;
  /* background-image: url(/public/images/counter_bg.png); */
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.Counter_Card {
  border-style: solid;
  border-width: 0px 1.5px 0px 0px;
  border-color: #A1ACB35C;
  text-align: center;

}

.Card_count {
  display: inline-flex;
  font-size: 80px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-bold);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  line-height: 1;
  margin-bottom: 20px;
}

.Card_count span {
  font-size: 80px;
}

.Count {
  font-size: 80px;
  font-family: var(--tj-ff-heading);
  font-weight: bold;
}

.Count_subtitle {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 2px;

}

/* Girija css */

.navbar_left_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}

.login_btn_content {
  display: flex;
}

.login_btn_content li a {
  font-size: 17px;
}

.Button.quote_btn {
  color: #0058dd;
  border: 2px solid #0058dd;
  border-radius: 8px;
  padding: 8px;
  transition: all .3s ease;
}

.Button.quote_btn:hover {
  background-color: #031f39;
  border-color: #031f39;
  color: #fffdf8;
}

.login_btn_content .login_btn {
  color: #031f39;
  padding: 8px;
  transition: all .3s ease;
  border-radius: 8px;
}

.login_btn_content .login_btn:hover {
  background-color: #d6d2c9;
}

.Button.signup_btn {
  background-color: #0058dd;
  border-radius: 8px;
  color: #fffdf8;
  border: 2px solid #0058dd;
  padding: 8px;
  transition: all .3s ease;
}

.Button.signup_btn:hover {
  background-color: #031f39;
  border-color: #031f39;
}

.main_content_text h1 {
  font-size: 50px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 110%;
  color: #031f39;
}

.MainSlideCard1 p {
  color: #031f39;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

#Header {
  position: sticky;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  top: 0;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #d6d2c9;
}

.main_content_text .get_start_btn {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  display: inline-block;
  background-color: #0058dd;
  border: 2px solid rgba(0, 0, 0, 0);
  color: #fffdf8;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  border-radius: 8px;
  padding: 15px 20px 15px 20px;
  transition: all 200ms;
}

.main_content_text .get_start_btn i {
  font-size: 20px;
}

.main_content_text .get_start_btn:hover {
  background-color: #031f39;
  color: #fffdf8;
}

#Shorten {
  padding-top: 40px;
  padding-bottom: 30px;
  font-family: "Bitly Display";
  background-color: #031f39;
}

.shorten_content_text h4 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1.6px;
  color: #ff950a;
  text-align: center;
  padding-top: 20px;
}

.shorten_content_text h3 {
  font-size: 48px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding-top: 20px;
}

.nav.nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.nav.nav-tabs li img {
  width: 45px;
  height: auto;
}

.nav.nav-tabs li button {
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: none;
  border: 0;
  color: #fff;

}

.nav-link {
  padding: 9px 22px 9px 9px;
}

.nav-link.active {
  color: #031f39;

  border-radius: 16px;
}

button.nav-link.active:hover {
  background-color: #fff;
  color: #031f39;
}

.nav-tabs .nav-link:hover {
  background: transparent;
  background-color: #1a2f43;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: none;
  border: 0;
  color: #fffdf8;
  border-radius: 16px;
}

.tab_content_box #tab1,
#tab2 {
  padding: 34px 32px;
  border-radius: 40px;
  background-color: #fffdf8;
}

.tab_content_box .tab_text_heading {
  font-size: 32px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #031f39;
}

.tab_content_box .tab_text_para {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #031f39;
  padding-top: 10px;
}

.short_links_form_content {
  padding-bottom: 20px;
}

.tab_form_group {
  margin-top: 20px;
}

.tab_form_group label {
  font-weight: 700;
  color: #031f39;
  padding-right: 16px;
  font-family: "Bitly Display";
  font-size: 20px;
}

input.url_input {
  background-color: transparent;
  border-color: #777570;
  border-radius: 8px;
  font-family: "Bitly Display";
  color: #031f39;
  border: 1px solid #d3d4d7;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 20px;
  line-height: 24px;
  height: auto;
  margin-top: 8px;
  margin-bottom: 0;
  box-shadow: none;
  outline: none !important;
  width: 100%;
  transition: box-shadow .5s, border-color .25s ease-in-out, -webkit-box-shadow .5s;
}

.errormessage {
  margin-top: 13px;
  padding-bottom: 0;
  color: red;
  margin-left: 10px;
  margin-bottom: 20px;

}

#tab1 button,
#tab2 button {
  position: relative;
  display: inline-block;
  background-color: #0058dd;
  border: 2px solid rgba(0, 0, 0, 0);
  color: #fffdf8;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  padding: 15px 50px 15px 20px;
  transition: all 200ms;
}

#tab1 button i,
#tab2 button i {
  font-size: 18px;
}

#tab1 button:hover,
#tab2 button:hover {
  background-color: #031f39;
  color: #fffdf8;
}



.qr_code_right {
  background-color: #EEEAE3;
  border-radius: 24px;
  border: 1px #BAB7B0 solid;
}

.qr_code_right img {
  max-width: 100%;
  height: auto;
  width: 350px;
}

.qr_code_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_below_content {
  margin-top: 40px;
  margin-bottom: 50px;
}

.form_below_content h4 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
}

.form_below_lists {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.form_below_lists li {
  color: #fff;
  list-style: none;
}

.Brand h4 {
  text-align: center;
  font-size: 48px;
  color: #031f39;
  margin-bottom: 16px;
  font-weight: 700;
}

.Brand p {
  text-align: center;
  margin: 10px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #031f39;
}

.Brand button {
  margin: auto;
  display: flex;
  justify-content: center;
  background-color: #0058dd;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  padding: 15px 50px 15px 20px;
  transition: all 200ms;

}

.Brand button:hover {
  background-color: #031f39;
  color: #fffdf8;
}

.Brand button a {
  color: #fffdf8;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.Card_contain {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Brand_Card {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px, rgba(0, 0, 0, 0.05) 0px 4px 6px;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.Brand_Card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0058dd, #0047aa);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 27%);
  z-index: 0;
  transition: clip-path 0.4s ease;
  opacity: 0.8;
}

.Brand_Card h5,
.Brand_Card p {
  position: relative;
  z-index: 2;
  color: #333;
  margin-bottom: 15px;
}

.Brand_Card h5 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.Brand_Card p {
  font-weight: 400;
  text-align: justify;
  color: #555;
  font-size: 16px;
}

.Brand_Card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 30px, rgba(0, 0, 0, 0.05) 0px 6px 10px;
}

.Brand_Card:hover::after {
  /* clip-path: polygon(0 0, 100% 0, 100% 60%, 0 80%); */
  clip-path: polygon(0 0, 100% 0, 100% 66%, 0 240%);
  opacity: 0.5;
}

.Brand_Card:hover {
  border: 3px solid #0058dd;
}

.decade_container .title_text h1 {
  font-size: 48px;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  color: #031f39;
  text-align: center;

}

.card-hover {
  margin-bottom: 10px;
  background-color: #eeeae3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 88, 221, 0.2);
}

.card.card-hover .card-title,
.counter {
  font-size: 80px;
  line-height: 120%;
  font-weight: 900;
  color: #031f39;
}

.card.card-hover img {
  width: 100px;
}

.card.card-hover .card-text {
  font-size: 17px;
  color: #031f39;
}

footer {
  background: linear-gradient(135deg, #031f39, #031f39);
  color: #fff;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-logo img {
  width: 100px;
  height: 100px;
}

footer h4,
footer h5 {
  font-weight: bold;
}

footer p {
  font-size: 16px;
}

.list-unstyled li {
  margin-bottom: 10px;
}

.text_li {
  color: #fff;
}

.social-icons li a.text_li i {
  font-size: 20px;
}

ul.list-unstyled a.text_li:hover,
.social-icons li a.text_li i:hover {
  color: #0058dd;
}

.email_footer {
  padding-bottom: 5px;
}

ul.social-icons {
  margin-top: 10px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-logo span {
  color: #ffcc00;
}

.footer p {
  line-height: 1.6;
}

.footer .list-unstyled {
  padding-left: 0;
}

.footer .list-unstyled a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .list-unstyled a:hover {
  color: #ffcc00;
}

.social-icons {
  list-style: none;
  padding-left: 0;
}

.social-icons li {
  display: inline-block;
  margin-right: 15px;
}

.social-icons li a {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #ffcc00;
}

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  margin-top: 20px;
}
.hamburger.active {
  transform: rotate(45deg);
}

.hamburger.active::before {
  transform: rotate(90deg);
  top: 0;
}

.hamburger.active::after {
  transform: rotate(90deg);
  top: 0;
}


.tab_content_box #tab1 .tab_text_heading,
.tab_content_box #tab1 .tab_text_para,
.shorten_content_text h3,
#tab1 button,
.tab_content_box #tab2 .tab_text_heading,
.tab_content_box #tab2 .tab_text_para,
#tab2 button,
.form_below_content h4,
.Brand h4,
.Brand button,
.title_text h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

}


/* Responsive */
@media (max-width: 768px) {
  .Shorten button {
    min-width: 90px;
    width: fit-content;
    max-width: 28%;
  }

  .Brand_Card {
    padding: 15px;
  }

  .Brand_Card h5 {
    font-size: 20px;
  }

  .Brand_Card p {
    font-size: 14px;
  }

  .main_content_text h1,
  .shorten_content_text h3,
  .Brand h4{
    font-size: 32px;
  }

  .MainSlideCard1 p {
    font-size: 16px;
    margin-bottom: 23px;
  }

  footer .row {
    text-align: center;
  }

  footer .col-md-4 {
    margin-bottom: 20px;
  }
  .decade_container .title_text h1 {
    font-size: 22px;
  }
}

@media screen and (max-width: 992px) {
  .navbar_left_content {
    width: 100%;
  }

  .Navbar {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    text-align: center;
    z-index: 1000;
    transition: 0.3s ease;
  }

  .Navbar ul {
    display: block;
    padding-top: 20px;

  }

  .Navbar ul li {
    margin: 15px 0;
    text-align: left;
    padding-left: 15px;
  }

  .MenuOpen {
    display: block;
  }

  .login_btn_content {
    display: none;
  }

  .Navbar.active {
    display: block;
  }
  .card.card-hover img{
    margin: auto;
  }
  .card.card-hover .card-title{
    text-align: center;
  }
  .card.card-hover .card-text{
    text-align: center;
  }
}

