/* ======================================== Navbar =====================================  */
* {
  font-family: "Red Hat Display";
}

.required{
  color: rgb(248, 0, 0);
}
/* ===== Header ===== */
.header {
  display: flex;
  width: 100%;
  height: 95px;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

/* ===== Logo ===== */
.logo-box {
  width: 260px;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 200px;
}

/* ===== Right Area ===== */
.header-right {
  flex: 1;
  background: #f4f4f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}

/* ===== Topbar ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.topbar-right {
  display: flex;
  gap: 12px;
}

.topbar-right a {
  font-size: 18px;
}

/* Social Colors */
/* LinkedIn */
.topbar-right a:nth-child(1) i {
  color: #0a66c2;
}

/* Instagram */
.topbar-right a:nth-child(2) i {
  background: linear-gradient(45deg, #f58529, #e1306c, #833ab4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Facebook */
.topbar-right a:nth-child(3) i {
  color: #1877f2;
}

/* YouTube */
.topbar-right a:nth-child(4) i {
  color: #FF0000;
}
/* ===== Menu Row ===== */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Navigation ===== */
.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative; 
}

.drop-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}


.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  display: none;
  transition: transform 0.25s ease;
  transform-origin: top center;
  /* zoom from top */
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: #6c3cff;
  animation: whitepaperZoom 0.35s ease;

}

@keyframes whitepaperZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  /* Zoom In */
  100% {
    transform: scale(1);
  }

  /* Back Normal */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===== CALL BOX ===== */
.call-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.be-a-pat {
  text-decoration: none;
  color: #1b4965;
  font-size: 15px;
  font-weight: 500;
}

/* ===== BUTTON ===== */
.trial-btn {
  position: relative;
  overflow: hidden;
  background: #1b4965;
  color: #fff;
  padding: 5px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #1b4965;
  z-index: 1;
  transition: color 0.3s ease;
}


.trial-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: -1;
}

.trial-btn:hover::before {
  transform: scaleY(1.15);
}

.trial-btn:hover {
  color: #1b4965;
}
/* ===== Button - Patners  ===== */
.trial-btn-ptn {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #1b4965;
  padding: 5px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #1b4965;
  z-index: 1;
  transition: color 0.3s ease;
}


.trial-btn-ptn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1b4965;
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: -1;
}

.trial-btn-ptn:hover::before {
  transform: scaleY(1.15);
}

.trial-btn-ptn:hover {
  color: #fff;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== Hamburger ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ============================= */
/* ===== Tablet View ===== */
/* ============================= */

@media (max-width: 1024px) {

  .logo-box {
    width: 220px;
  }

  .logo-box img {
    width: 170px;
  }

  .nav {
    gap: 18px;
  }

  .trial-btn {
    padding: 7px 22px;
    font-size: 13px;
  }
}

/* ============================= */
/* ===== Mobile View ===== */
/* ============================= */

@media (max-width: 900px) {

  .header {
    height: 70px;
  }

  .topbar {
    display: none;
  }

  .header-right {
    background: #1d1733;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0 15px;
  }

  .logo-box {
    width: auto;
    padding: 0 15px;
  }

  .logo-box img {
    width: 150px;
  }

  /* Hamburger visible */
  .menu-toggle {
    display: block;
    color: #fff;
    margin-left: auto;
  }

  /* Mobile Menu */
  .nav {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 100%;
    background: #f3f2f2;
    flex-direction: column;
    display: none;
    padding: 10px 0;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  .call-box {
    display: none;
  }

  /* Dropdown mobile */
  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
    background: transparent;
  }

  .dropdown-menu.show {
    display: block;
  }
}




/* ======================================== Footer =====================================  */


/* ================= Footer Base ================= */

.footer_enterlyze {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #0a0a0a;
}

/* ================= Widget Area ================= */

.footer_widget-area {
    padding: 50px 50px;
    background-color: #111;
}

/* Row Flex Layout */
.footer_layout .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Column adjustments */
.footer_layout .col-xl-4,
.footer_layout .col-md-6,
.footer_layout .col-12 {
    flex: 1 1 30%;
    min-width: 250px;
}

/* ================= Widget Styling ================= */

.footer_widget {
    /* margin-bottom: 40px; */
    padding: 0 10px;
    font-size: 15px;
    /* text-align: center; */
}

/* ================= About Section ================= */

.footer_widget.footer_about-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.footer_about-logo img {
    width: 200px;
}

.footer_about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
    max-width: 300px;
    text-align: justify;
}

/* Social Icons */
.footer_social a {
    display: inline-block;
    color: #fff;
    margin: 0 8px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #222;
    transition: all 0.3s ease;
}

.footer_social a:hover {
    color: #fff;
    background-color: #5fa8d3;
}


.footer_copyright-layout{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer_legal-links{
    display:flex;
    gap:15px;
}

/* ================= Quick Links ================= */

.footer_widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer_widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #5fa8d3;
}

.footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_links li {
    margin-bottom: 20px;
}

.footer_links li a {
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_links li a i {
    margin-right: 8px;
    color: #1b4965;
}

.footer_links li a:hover {
    color: #5fa8d3;
}

/* ================= Contact Section ================= */

.footer_contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_contact-list li {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.footer_contact-list i {
    margin-right: 10px;
    color: #fff;
}


.footer_contact-list a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

.footer_contact-list a:hover{
    color:#5fa8d3;
}

/* ================= Copyright ================= */

.footer_copyright {
    background-color: #080808;
    padding: 25px 0;
    text-align: center;
    letter-spacing: 1.5px;
}

.footer_copyright p {
    margin: 0;
    font-size: 14px;
    /* color: #aaa; */
}

.footer_copyright p a {
    color: #5fa8d3;
    text-decoration: none;
}

.footer_legal-links {
    margin-top: 10px;
}

.footer_legal-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_legal-links a:hover {
    color: #1b4965;
}

/* ================= Responsive ================= */

@media (max-width: 991px) {
    .footer_layout .row {
        flex-direction: column;
        align-items: center;
    }

    .footer_widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .footer_about-logo img {
        width: 180px;
    }

    .footer_social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }

    .footer_widget-title::after {
        width: 40px;
    }
}


.register-drop {
  position: relative;
  display: inline-block;
}

.register-drop .drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 500;
  color: #111;
  cursor: pointer;
}

.register-drop .drop-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.register-drop .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 999;
}

.register-drop .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.register-drop .dropdown-menu li a:hover {
  background: #f5f7fa;
}

.register-drop:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.register-drop:hover .drop-btn i {
  transform: rotate(180deg);
}