/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --font: "Inter", sans-serif;
  --body-color: #637381;
  --heading-color: #212b36;
  --primary-color: #3056d3;
  --white: #ffffff;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0a51ab;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #0a50ab;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0a50ab;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0a50abbd;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}









body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}






.red_error p {
  color: red !important;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height : 66px;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  width : 100%;
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
   
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  /* Normal state */
  .navmenu a,
  .navmenu a:focus {
    color: #5483c2; /* Normal link color */
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  

  /* Hover and active state */
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0a51ab; /* Hover + Active color */
  }
  .navmenu a:hover,
.navmenu .active {
 
  color: #fff !important;
    font-weight: 500;
    background: #0a51ab;
    padding: 8px 20px;
    border-radius: 50px;
}

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #5483c2; /* dropdown normal */
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #0a51ab; /* dropdown hover color */
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}




/* ================== Partner form styling start ================== */
.why-partner {
  background-color: #f8f9fa;
}

.feature-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-card .icon {
  color: var(--accent-color, #0a50ab);
}


.who-partner {
  background-color: #ffffff;
}

.info-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.info-card ul li span {
  font-size: 1.05rem;
  color: #333;
}

.partner-benefits .card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.info-card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.blockquote {
  font-size: 1.1rem;
  color: #555;
}

.broker-container {
  max-width: 1150px;
  margin: 100px auto;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
  display: flex;
}

.broker-left {
  background-color: var(--accent-color);
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.broker-left h2 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #f1f1f1;
}

.broker-left p {
  color: #f2f2f2;
}

.broker-right {
  flex: 1.2;
  padding: 40px;
}

.form-control,
.form-select {
  border-radius: 8px;
}

.btn-submit {
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-weight: bold;
}

.btn-submit:hover {
  color: #fefefe;
}

.btn-submit:disabled {
  opacity: 0.6;
}

.business-size label {
  margin-right: 15px;
}


/* ================== partner with us Responsive styling ================== */

/* For tablets (iPad) */
@media (max-width: 992px) {
  .broker-container {
    flex-direction: column;
    /* stack vertically */
  }

  .broker-left {
    text-align: center;
    padding: 30px 20px;
  }

  .broke-left h2,
  .broke-left p {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
  }

  .broker-left img {
    margin: 0px auto;
  }

  .broker-right {
    padding: 30px 20px;
  }
}

/* For mobile phones */
@media (max-width: 576px) {
  .broker-left h2 {
    font-size: 1.5rem;
  }

  .broker-left p {
    font-size: 0.9rem;
  }

  .broker-container {
    margin: 40px 15px;
    /* less margin for small screens */
  }

  .form-control,
  .form-select {
    font-size: 0.9rem;
    padding: 10px;
  }

  .btn-submit {
    padding: 10px;
    font-size: 0.95rem;
  }

  .business-size label {
    display: block;
    /* stack radio options vertically */
    margin: 8px 0;
  }
}


/* ================== Partner form styling End ================== */





































/* modern solution */
/* html {
  scroll-padding-top: 60px;
} */
/* Scrolling Position Set Ups */
#mod {
  scroll-margin-top: 100px;
}

#accounts {
  scroll-margin-top: 70px;
}

#pricing {
  scroll-margin-top: 0px;
}

#sales {
  scroll-margin-top: 100px;
}

#production {
  scroll-margin-top: 100px;
}

#inventory {
  scroll-margin-top: 170px;
}

.ud-contact {
  scroll-margin-top: 100px;
}

.ud-features {
  scroll-margin-top: 50px;
}

/* End Scrolling Position Set ups */
img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}

.ud-main-btn:hover {
  color: var(--white);
  background: var(--accent-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #234051;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  /* adjust so it doesn’t overlap with back-to-top */
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  line-height: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b955;
}

/* ===== Header CSS ===== */
.ud-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
}

.sticky .navbar-brand {
  color: var(--primary-color);
  /* after scroll - dark text */
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-brand img {
  max-width: 140px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 280px;
    background: linear-gradient(180deg, #234051, #2e89c2);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 8px 20px;
    display: none;
    border-radius: 5px;
  }

  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-nav {
    padding: 0px 20px;
    text-align: center;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item>a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-nav .nav-item>a {
    display: block;
    padding: 8px 0;
    color: #fff !important;
  }
}

.navbar-nav .nav-item>a:hover,
.navbar-nav .nav-item>a.active {
  color: #2748b4 !important;
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {

  .navbar-nav .nav-item>a:hover,
  .navbar-nav .nav-item>a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item .ud-submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-nav .nav-item .ud-submenu {
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}

.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-item:hover>a {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-nav .nav-item:hover>a {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover>.ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children>a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children>a::after {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-nav .nav-item.nav-item-has-children>a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767.98px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover>a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
  background: #2e89c2;
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: linear-gradient(to top, #0a51ab, #0a51ab);
  padding-top: 180px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 130px;
  }
}

.ud-hero-content {
  max-width: 780px;
  margin: auto;
  margin-bottom: 30px;
}

.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 38px;
    line-height: 50px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 26px;
    line-height: 38px;
    margin-top: 40px;
  }
}

.ud-hero-content .ud-hero-desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

.ud-hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}

.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-hero-buttons .ud-white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}

.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ud-hero-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}

.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ud-hero-image img {
  max-width: 100%;
  text-align: center;
}

.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}

.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.ud-hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}









.erp-story {
  background-color: #f9fbff;
  overflow: hidden;
}

.story-title,
.mission-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem);
  color: var(--accent-color);
  position: relative;
  line-height: 1.2;
}

.story-title::after,
.mission-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.story-text,
.mission-text {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  word-break: break-word;
}

.story-btn {
  background-color: #0a51ab;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.story-btn:hover {
  background-color: #083e86;
  transform: translateY(-2px);
}

.story-img-wrapper,
.mission-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-img,
.mission-img {
  border-radius: 20px;
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
}

.story-img-wrapper:hover .story-img,
.mission-img-wrapper:hover .mission-img {
  transform: scale(1.05);
}

.story-overlay,
.mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 81, 171, 0.25), rgba(10, 81, 171, 0.1));
  pointer-events: none;
}

/* ---------- Responsive Fix ---------- */
@media (max-width: 991px) {

  .story-title,
  .mission-title {
    text-align: center;
  }

  .story-title::after,
  .mission-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .story-text,
  .mission-text {
    text-align: center;
  }

  .mission-highlights {
    text-align: center;
  }

  .mission-highlights .d-flex {
    justify-content: center;
  }
}

@media (max-width: 576px) {

  .story-title,
  .mission-title {
    font-size: 1.4rem;
  }

  .story-text,
  .mission-text {
    font-size: 0.9rem;
  }

  .story-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

.erp-why-choose {
  background: linear-gradient(135deg, #ffffff 0%, #f2f6fc 100%);
}

.why-title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 2.3rem;
}

.why-title span {
  color: var(--accent-color);
}

.why-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(10, 81, 171, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(10, 81, 171, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.why-icon i {
  font-size: 2.5rem;
  color: #5483c0;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #5483c0;
}

.why-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }

  .why-subtitle {
    font-size: 1rem;
  }
}







.hero-inventory {
  background-image: url('../images/hero/ims.png');
}

.hero-finance {
  background-image: url('../images/hero/acms.jpg');
}

.hero-sales {
  background-image: url('../images/hero/sms.png');
}

.hero-contact {
  background-image: url('../images/hero/contact-us.jpg');
}

.hero-register {
  background-image: url('../images/hero/Register.jpg');
}

.hero-about {
  background-image: url('../images/hero/about_us.png');
  background-position: top !important;
}

.hero-production {
  background-image: url('../images/hero/pms.jpg');
}

.hero-industries {
  background-image: url('../images/hero/industry-img.jpeg');
}

.hero-pricing {
  background-image: url('../images/hero/acms.jpg');
}

.hero-partner {
  background-image: url('../images/hero/partner-with-us.jpg');
}

.hero-blog {
  background-image: url('../images/hero/blog.jpg');
}




/* ======== industry hero section start ======= */
.hero-section {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 11, 20, 0.76);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
}

.hero-section p {
  color: #e0e0e0;
  font-size: 1.1rem;
  max-width: 700px;
}

.hero-section .btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
}

.hero-section .btn-primary:hover {
  background-color: rgba(10, 80, 171, 0.8);
}

/* ✅ Tablet (medium screens) */
@media (max-width: 992px) {
  .hero-section {
    min-height: 70vh;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
    margin: 0 auto 20px auto;
  }

  .hero-section .btn-primary {
    padding: 0.6rem 1.5rem;
  }
}

/* ✅ Mobile (small screens) */
@media (max-width: 576px) {
  .hero-section {
    min-height: 60vh;
    padding: 50px 15px;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 0.95rem;
  }

  .hero-section .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
}


.industry-section .container {
  position: relative;
  z-index: 1;
}

.industry-link {
  transition: transform 0.3s ease;
}

.industry-link:hover {
  transform: translateY(-5px);
}

.industry-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  box-shadow: 0 0 20px rgba(170, 170, 170, 0.3);
}

.industry-card .icon {
  font-size: 3rem;
  color: #5483c0;
}

/* ✅ Tablet Screens */
@media (max-width: 992px) {
  .industry-section {
    background-image: url('https://via.placeholder.com/1500x1000/1a1a2e/ffffff?text=Industry+Background');
    background-size: cover;
    background-position: center;
  }

  .industry-section h2 {
    font-size: 2rem;
  }

  .industry-card {
    padding: 1.8rem;
  }

  .industry-card p {
    font-size: 0.95rem;
  }
}

/* ✅ Mobile Screens */
@media (max-width: 576px) {
  .industry-section {
    padding: 3rem 1rem;
    background-image: url('https://via.placeholder.com/800x1000/1a1a2e/ffffff?text=Industry');
  }

  .industry-section {
    padding: 3rem 1rem;
    background-image: url('https://via.placeholder.com/800x1000/1a1a2e/ffffff?text=Industry');
  }

  .industry-section h2 {
    font-size: 2rem;
    /* larger title */
    margin-bottom: 2rem;
    padding: 0;
    margin-top: 3rem;
  }

  .industry-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .industry-card .icon {
    font-size: 2.5rem;
  }

  .industry-card h5 {
    font-size: 1.25rem;
    /* normal readable size */
  }

  .industry-card p {
    font-size: 1rem;
    /* keep text readable */
    line-height: 1.6;
    padding: 0;
  }
}

/* ======== industry  section 1 End  ======= */





/* ======== meeting style start  ======= */
.meeting-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.meeting-left {
  background: var(--accent-color);
  color: white;
  flex: 1;
  min-width: 320px;
}

.meeting-left h3 {
  color: #fff;
  padding-bottom: 4px;
}

.meeting-left p {
  max-width: 500px;
  text-align: center;
}



@media (max-width: 992px) {
  .meeting-left p {
    max-width: 300px;
    padding: 10px 12px;
    text-align: center;
  }
}

.time-btn {
  margin: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  transition: all 0.3s;
}



.time-btn:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* ✅ Keep selected time slot green permanently */
.time-btn.selected {
  background-color: #198754 !important;
  /* Green */
  color: #fff !important;
  border-color: #198754 !important;
}

/* ✅ Booked slots (red) */
.time-btn.booked {
  background-color: #dc3545 !important;
  color: #fff !important;
  border-color: #dc3545 !important;
  opacity: 0.85;
  cursor: not-allowed;
}

.btn-book {
  background: var(--accent-color);
  color: white;
}

.btn-book:hover {
  background: var(--accent-color);
  color: white;
}

/* ======== meeting style End  ======= */













/* ===== Features CSS ===== */
/* ===============================
   ✅ FEATURES SECTION STYLES
================================ */
#features {
  position: relative;
  /* parent for absolute positioning */
}

/* General Swiper Button Styles */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 1;
  visibility: visible;
  color: #000;
  /* Change to #fff if background is dark */
  display: block;
}

/* Hide navigation buttons only on small screens */
@media (max-width: 564px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

/* Left and Right Button Positioning */
.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

/* ===============================
   ✅ FEATURES CONTENT STYLES
================================ */
.ud-single-feature {
  text-align: center;
}

.ud-feature-icon {
  margin: 0 auto;
  /* keeps the icon centered */
}

@media (max-width: 767px) {
  .ud-single-feature {
    text-align: center;
  }

  .ud-feature-icon {
    margin: 0 auto;
    display: block;
  }
}

@media (min-width: 564px) and (max-width: 764px) {
  .ud-feature-icon {
    margin-left: 200px;
  }
}

.ud-features {
  padding-top: 70px;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 40px;
}

.ud-section-title .tag1 {
  font-size: 16px;
}

/* ===============================
   ✅ TEAM SLIDER (myGeneral) FIX
================================ */
.myGeneral {
  position: relative;
  /* make swiper wrapper the reference for arrows */
}

.myGeneral .swiper-button-prev,
.myGeneral .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #000;
  /* Change to #fff if dark background */
  opacity: 1;
  visibility: visible;
  display: block !important;
}

.myGeneral .swiper-button-prev {
  left: 10px;
}

.myGeneral .swiper-button-next {
  right: 10px;
}

/* Hide Team arrows on mobile */
@media (max-width: 564px) {

  .myGeneral .swiper-button-prev,
  .myGeneral .swiper-button-next {
    display: none !important;
  }
}

/* Optional: Better look for arrows */
.myGeneral .swiper-button-prev::after,
.myGeneral .swiper-button-next::after {
  font-size: 22px;
  font-weight: bold;
}

/* .ud-section-title span {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 10px;
} */

.ud-section-title h2 {
  text-wrap: nowrap;
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.ud-section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }

  .ud-section-title h2 {
    text-wrap: nowrap;
    font-size: 30px;
  }
}

@media (max-width: 984px) {
  .ud-section-title h2 {
    text-wrap: wrap;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
}

.ud-single-feature:hover .ud-feature-icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ud-single-feature .ud-feature-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-feature .ud-feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.ud-single-feature .ud-feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-link {
  font-weight: 500;
  color: var(--body-color);
}

.ud-single-feature .ud-feature-link:hover {
  color: var(--primary-color);
}

/* ===== About CSS ===== */
.ud-about {
  background: #f3f4fe;
  padding: 20px 0;
}

.ud-about-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
}

/* 
@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
} */

.ud-about-content-wrapper {
  padding: 50px;
}

@media (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 10px;
  }
}

.ud-about-content {
  max-width: 700px;
}

.ud-about-content .tag {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  background: #0a51ab;
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 4px;
}

.mod {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.5rem;
  /* bigger & bold */
  font-weight: 800;
  background: #234051;
  color: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: transparent;
  margin: 0px auto 50px !important;
  position: relative;
  display: block;
  /* block makes auto margins work */
  width: fit-content;
  /* shrink to content */
}

.mod h2 {
  color: #fff;
}

/* .tag {
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
} */
.tag1 {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: var(--accent-color);
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.ud-about-content h2 {
  font-weight: 700;
  font-size: 2.25rem;
  /* ~36px */
  line-height: 1.3;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 20px;
    line-height: 20px;
  }
}

.ud-about-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
  text-align: left;
}

.ud-about-image {
  width: 500px;
  height: 500px;
  margin-top: 100px;
  margin-right: 15px;
}

@media only screen and (max-width: 990px) {
  .ud-about-image {
    display: none;
  }
}

.ud-about-content .ud-main-btn:hover {
  background: #0a51ab;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* @media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .ud-about-image {
    text-align: center;
  }
} */

/* Modules CSS */
.ud-modules {
  margin-bottom: 40px;
}


.ud-modules-content h2 {
  font-size: 2rem;
  /* scalable with root font size */
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.ud-module-image {
  width: 100%;
  height: auto;
  /* Fixed height for consistency across sections */
  overflow: hidden;
  /* Hide overflow if image is too large */
}

.ud-modules-content .highlight {
  font-weight: 700;
  color: #0a51ab;
  /* theme accent color */
}

.ud-modules-content p {
  color: #555;
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.5;
}

@media (max-width: 990px) {
  .ud-module-image {
    display: none;
  }
}

@media (max-width: 767px) {
  .ud-modules-content h2 {
    font-size: 1.5rem;
    /* smaller on small screens */
  }

  .ud-modules-content p {
    font-size: 14px;
  }

  .ud-modules-content ul {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    columns: 2;
    /* split into 2 columns */
    column-gap: 1.5rem;
    /* space between columns */
  }

}

.ud-modules-content ul {
  list-style: disc;
  margin-left: 15px;
}

.ud-modules-content ul li:last-child {
  list-style: none;
}

.ud-main-btn {
  background: var(--accent-color);
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.5s;
  display: inline-block;
}

.ud-main-btn:hover {
  opacity: 0.9;
}

.ud-single-pricing {
  margin-bottom: 40px;
  background: #0a51ab;
  border: 2px solid #d4deff;
  border-radius: 16px;
  text-align: center;
  padding: 30px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.ud-single-pricing {
  position: relative;
}

.ud-single-pricing span.ud-popular-head {
  position: absolute;
  top: 0%;
  right: 0%;
  background: #2d465e;
  color: #fff;
  padding: 6px 6px;
  border-radius: 0px 14px 0px 6px;
  font-size: 65%;
  z-index: 10;
}

/* .ud-single-pricing span.ud-popular-head{
  
position: absolute;
  background: #2d465e;
  padding: 6px 6px;
  
  color: #fff;
  border-radius: 0px 14px 0px 6px;
  font-size: 14px;
  top: 0%;
  left: 76.4%;

} */


/* @media (max-width : 540px) {
  .ud-single-pricing span.ud-popular-head {
    position: absolute;
    background: #2d465e;
    padding: 4px 10px;
    color: #fff;
    border-radius: 0px 14px 0px 6px;
    top: 0%;
    left: 76.4%;
  }
} */


.ud-pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 991px) {
  .ud-single-pricing {
    margin-bottom: 20px;
  }
}

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

  .ud-single-pricing {
    width: 100%;
  }
}

.ud-single-pricing.active {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#3056d3),
      to(#179bee));
  background: linear-gradient(180deg, #4578bb 0%, #4578bb 100%);
  border: none;
  padding: 30px 12px;
}

.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
  color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}

.ud-single-pricing.first-item::after,
.ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 1;
}

.ud-single-pricing.first-item::after {
  left: -2px;
  bottom: -2px;
  border-radius: 0px 55px 0px 8px;
}

.ud-single-pricing.last-item::after {
  background: #bbd531;
  top: -2px;
  right: -2px;
  border-radius: 0px 8px 0px 55px;
}

.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.ud-silver-tag {
  background: #2e89c2;
  color: #fff;
  padding: 10px 25px;
  margin-bottom: 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.ud-gold-tag {
  background: var(--white);
  color: #2e89c2;
  padding: 10px 25px;
  margin-bottom: 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ud-view-details {
  background: #d6e16f;
  /* light green background */
  display: inline-block;
  /* shrink to text width */
  color: #181818;
  /* white text */
  font-weight: bold;
  font-size: 12px;
  padding: 5px 10px;
  /* some padding around text */
  border-radius: 10px;
  /* optional: rounded corners */
  transition: background 0.3s ease, color 0.3s ease;
  margin-bottom: 10px;
  text-decoration: none;
  /* remove underline */
}

.ud-view-details:hover {
  background: var(--primary-color);
  /* slightly darker on hover */
  color: #fff;
}

.ud-single-pricing .ud-pricing-header h3 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
  color: #fff;
}

.ud-single-pricing .ud-pricing-header h4 {
  font-weight: 600;
  font-size: 26px;
  /* color: var(--primary-color); */
  color: #ffff;
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .ud-single-pricing .ud-pricing-footer {
    display: flex;
    flex-direction: column;
    /* stack vertically */
    gap: 10px;
    /* space between buttons */
    align-items: center;
    /* center buttons horizontally */
    margin-top: auto;
  }

  .ud-single-pricing .ud-pricing-footer .ud-main-btn,
  .ud-single-pricing .ud-pricing-footer .ud-view-details {
    width: auto;
    /* keep button width as wide as text */
  }
}

.ud-single-pricing .ud-pricing-body li {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--white);
}

.ud-single-pricing .ud-main-btn {
  border-radius: 30px;
  padding: 12px 22px;
}

.ud-single-pricing .ud-border-btn {
  /* border: 1px solid #234051; */
  color: var(--white);
  background: #234051;
}

.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: var(--primary-color);
  background: #4578bb;
}

.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: 20px;
  background: #f3f4fe;
  position: relative;
  z-index: 1;
}

.ud-faq-body>ul>li>strong {
  color: var(--accent-color);
  font-size: 17px !important;
}

@media (max-width: 767px) {
  .ud-faq {
    padding-top: 20px;
  }
}

.ud-faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  pointer-events: none;
  /* allow clicks through */
}

.ud-single-faq {
  background: var(--white);
  border: 1px solid #f3f4fe;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
}

.ud-single-faq .ud-faq-btn {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  opacity: 0.88;
  padding: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
  .ud-single-faq .ud-faq-btn {
    padding: 15px;
    text-wrap: wrap;
  }
}

.ud-single-faq .ud-faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ud-single-faq .ud-faq-btn span.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(48, 86, 211, 0.06);
  border-radius: 10px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-single-faq .ud-faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.ud-single-faq .ud-faq-body {
  padding: 0px 30px 40px 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 0px 16px 20px 82px;
  }
}

/* ===== Testimonials CSS ===== */
.ud-testimonials {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .ud-testimonials {
    padding-top: 80px;
  }
}

.ud-single-testimonial {
  padding: 30px;
  -webkit-box-shadow: 0px 60px 120px -20px #ebeffd;
  box-shadow: 0px 60px 120px -20px #ebeffd;
  background: var(--white);
  margin-bottom: 50px;
}

.ud-single-testimonial .ud-testimonial-ratings {
  margin-bottom: 10px;
}

.ud-single-testimonial .ud-testimonial-ratings i {
  color: #fbb040;
}

.ud-single-testimonial .ud-testimonial-content {
  margin-bottom: 25px;
}

.ud-single-testimonial .ud-testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #637381;
}

.ud-single-testimonial .ud-testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta h4 {
  font-weight: 600;
  font-size: 14px;
}

.ud-single-testimonial .ud-testimonial-info .ud-testimonial-meta p {
  font-size: 12px;
  color: #969696;
}

.ud-brands .ud-title {
  margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}

.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}

.ud-brands .ud-brands-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -40px;
}

.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  -webkit-filter: none;
  filter: none;
}

.ud-brands .ud-brands-logo .ud-single-logo img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.ud-team {
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .ud-team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-team {
  margin-bottom: 40px;
}

.ud-single-team .ud-team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}

.ud-single-team .ud-team-image {
  border-radius: 50%;
}

.ud-single-team .ud-team-image img {
  width: 100%;
  border-radius: 20px;
  max-height: 170px;
  object-fit: cover;
  border : 1px solid #aaaaaa36;
  /* border-radius: 0%; */
}

.ud-single-team .shape {
  position: absolute;
  z-index: 1;
}

.ud-single-team .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}

.ud-single-team .ud-team-info {
  text-align: center;
  margin-bottom: 20px;
}

.ud-single-team .ud-team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.ud-single-team .ud-team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}

.ud-single-team .ud-team-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}

.ud-single-team .ud-team-socials a:hover {
  color: var(--primary-color);
}

/* ===== Contact CSS ===== */
.ud-contact {
  padding: 50px 0px;
  background: #5483c0;
  /* position: relative; */
}

@media (max-width: 767px) {
  .ud-contact {
    padding: 30px 0;
  }
}

.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-contact::after {
    height: 45%;
  }
}

.ud-contact-title {
  margin-bottom: 20px;
}

.ud-contact-title .tag1 {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .ud-contact-title {
    margin-bottom: 50px;
  }
}

.ud-contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 40px;
  color: #ffff;
}

.ud-contact-title p {
  color: #ffff;
}

@media (max-width: 767px) {
  .ud-contact-content-wrapper {
    margin-top: 0;
    /* no shift on mobile */
  }

  .ud-contact-title h2 {
    font-size: 25px;
  }

  .ud-contact-title p {
    font-size: 14px;
  }
}

.ud-contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .ud-contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* spacing between items */
  }

  .ud-single-info {
    margin-bottom: 0;
    /* remove extra bottom margin since we use grid gap */
  }
}

@media (max-width: 767px) {
  .ud-contact-info-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .ud-contact-info-wrapper {
    margin-bottom: 20px;
  }
}

.ud-contact-info-wrapper .ud-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 10px;
}

.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffff;
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 5px;
  color: #ffff;
}

.ud-contact-form-wrapper {
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  /* max-width: 600px; increase card size */
  width: 100%;
  padding: 30px;
  margin-top: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 40px 40px;
  }
}

.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 15px !important;
  }

  .ud-contact-form-wrapper .ud-form-group {
    margin-bottom: 10px;
  }

  .ud-contact-form-wrapper input,
  .ud-contact-form-wrapper textarea {
    padding: 6px 0;
    font-size: 13px;
  }

  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 18px;
  }

  .ud-contact-form-wrapper .ud-form-group {
    margin-bottom: 15px;
  }
}

.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.ud-contact-form-wrapper input[type="email"] {
  font-size: 14px;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: none;
  outline: none;
  border-bottom: 2px solid #f1f1f1;
  resize: none;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

/* ===== Footer CSS ===== */
.ud-footer {
  background: #0a51ab;
  padding-top: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ud-footer .shape {
  position: absolute;
  z-index: -1;
}

.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}

.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-widget {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .ud-widget {
    margin-top: 10px;
    margin-bottom: 5px;
  }

}

.ud-widget .ud-footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}

.ud-widget .ud-footer-logo img {
  width: 100%;
}

.ud-widget .ud-widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f3f4fe;
  margin-bottom: 30px;
  max-width: 260px;
}

.ud-widget .ud-widget-socials {
  display: flex;
  align-items: center;
}

.ud-widget .ud-widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}

.ud-widget .ud-widget-socials a:hover {
  color: #fff;
}

.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

@media(max-width: 767px) {
  .ud-widget .ud-widget-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.ud-widget .ud-widget-links a {
  display: inline-block;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
  white-space: nowrap;
}

.ud-widget .ud-widget-links a:hover {
  color: #ffff;
  padding-left: 10px;
}

.ud-footer .col-xl-2.modules-column {
  flex: 1 0 auto;
  width: auto;
  /* Allow it to grow naturally */
}



.ud-widget .ud-widget-brands {
  display: flex;
  flex-wrap: wrap;
  /* wrap to new line if many logos */
  gap: 20px;
  /* consistent spacing between logos */
  align-items: center;
  /* vertical alignment */
  list-style: none;
  /* remove bullets */
  padding: 0;
  margin: 0;
}

.ud-widget .ud-widget-brands a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 120px;
  max-height: 60px;
  /* keeps logos more uniform */
  margin: 0;
  /* gap already added in parent */
  transition: transform 0.3s ease;
}

.ud-widget .ud-widget-brands img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* keeps aspect ratio inside the box */
  display: block;
}

.ud-widget .ud-widget-brands a:hover {
  transform: scale(1.1);
  /* 10% size increase */
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    justify-content: center;
  }

  .ud-footer-bottom {
    padding: 20px 0px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 4px 4px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: center;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--white);
  text-transform: uppercase;
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--accent-color);
  background-image: url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 40vh;
}

.ud-banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.ud-banner-content h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 60px;
  -webkit-box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}

.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
}

.ud-login-form .ud-form-group input {
  width: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}

.ud-login-form .ud-form-group input:focus {
  border-color: var(--primary-color);
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}

.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}

.ud-socials-connect ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}

.ud-socials-connect ul li {
  width: 100%;
}

.ud-socials-connect ul li a {
  height: 45px;
  background: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}

.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}

.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}

.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}

.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}

.ud-socials-connect ul li a.google {
  background: #d64937;
}

.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}

.signup-option a {
  color: var(--primary-color);
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}

.ud-blog-image {
  width: 100%;
  overflow: hidden;
}

.ud-blog-image img {
  display: block;
  width: 100%;
  height: 250px;
  /* You can adjust based on design */
  object-fit: cover;
  border-radius: 10px;
}

.ud-blog-grids.ud-related-articles {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .ud-blog-grids {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-blog {
  margin-bottom: 40px;
}

.ud-single-blog:hover .ud-blog-image img {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ud-single-blog .ud-blog-image a {
  display: block;
}

.ud-single-blog .ud-blog-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-blog .ud-blog-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
}

.ud-single-blog .ud-blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-blog .ud-blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media screen and (max-width : 1250px) {
  .ud-page-banner {
    padding-top: 130px;
    padding-bottom: 80px;
    background: var(--accent-color);
    background-image: url("../images/banner/banner-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 28vh;
  }
}

.ud-single-blog .ud-blog-title a {
  color: inherit;
}

.ud-single-blog .ud-blog-title a:hover {
  color: var(--primary-color);
}

.ud-single-blog .ud-blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.ud-related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}

.ud-related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

/* ====== Blog Details CSS ====== */
.ud-blog-details {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .ud-blog-details {
    padding-top: 80px;
  }
}

.ud-blog-details-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 500px;
}

@media (max-width: 767px) {
  .ud-blog-details-image {
    height: 300px;
  }
}

.ud-blog-details-image>img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.ud-blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(46.88%, rgba(48, 86, 211, 0)),
      color-stop(93.23%, rgba(13, 21, 49, 0.72)));
  background: linear-gradient(180deg,
      rgba(48, 86, 211, 0) 46.88%,
      rgba(13, 21, 49, 0.72) 93.23%);
  border-radius: 5px;
  padding: 30px;
}

.ud-blog-overlay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.ud-blog-overlay-content .ud-blog-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .ud-blog-overlay-content .ud-blog-author {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.ud-blog-overlay-content .ud-blog-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.ud-blog-overlay-content .ud-blog-author span {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}

.ud-blog-overlay-content .ud-blog-author a {
  color: inherit;
}

.ud-blog-overlay-content .ud-blog-author a:hover {
  color: var(--primary-color);
}

.ud-blog-overlay-content .ud-blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ud-blog-overlay-content .ud-blog-meta p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  margin-right: 30px;
}

.ud-blog-overlay-content .ud-blog-meta p:last-child {
  margin-right: 0px;
}

.ud-blog-overlay-content .ud-blog-meta p i {
  font-size: 16px;
  margin-right: 10px;
}

.ud-blog-details-content {
  padding-top: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1920px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-blog-details-content {
    padding-right: 50px;
  }
}

.ud-blog-details-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 26px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-blog-details-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.ud-blog-details-para {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}

.ud-blog-details-subtitle {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-blog-details-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

.ud-blog-quote {
  background-image: url("../images/blog/quote-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .ud-blog-quote {
    padding: 30px;
  }
}

.ud-blog-quote i {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .ud-blog-quote i {
    margin-bottom: 15px;
  }
}

.ud-blog-quote p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .ud-blog-quote p {
    font-size: 14px;
    line-height: 24px;
  }
}

.ud-blog-quote h6 {
  color: var(--body-color);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.ud-blog-details-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .ud-blog-details-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.ud-blog-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .ud-blog-tags {
    margin-bottom: 20px;
  }
}

.ud-blog-tags li {
  margin-right: 14px;
}

.ud-blog-tags li:last-child {
  margin-right: 0px;
}

.ud-blog-tags a {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 3px;
}

.ud-blog-tags a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ud-blog-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ud-blog-share h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
  margin-right: 20px;
}

.ud-blog-share-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ud-blog-share-links li {
  margin-right: 14px;
}

.ud-blog-share-links li:last-child {
  margin-right: 0px;
}

.ud-blog-share-links a {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.ud-blog-share-links a.facebook {
  background: #4064ac;
}

.ud-blog-share-links a.facebook:hover {
  background: #315294;
}

.ud-blog-share-links a.twitter {
  background: #1c9cea;
}

.ud-blog-share-links a.twitter:hover {
  background: #0f8bd8;
}

.ud-blog-share-links a.linkedin {
  background: #007ab9;
}

.ud-blog-share-links a.linkedin:hover {
  background: #03689b;
}

.ud-blog-sidebar {
  padding-top: 60px;
}

.ud-newsletter-box {
  background: var(--primary-color);
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
  .ud-newsletter-box {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-newsletter-box {
    padding: 60px 45px;
  }
}

.ud-newsletter-box .shape {
  position: absolute;
  z-index: -1;
}

.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}

.ud-newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}

.ud-newsletter-box .ud-newsletter-title {
  font-weight: 600;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}

.ud-newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
}

.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
  border: 2px solid transparent;
  padding: 12px 20px;
}

.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  background: #13c296;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
}

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.ud-articles-box {
  margin-bottom: 50px;
}

.ud-articles-box .ud-articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
}

.ud-articles-box .ud-articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

.ud-articles-box .ud-articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ud-articles-box .ud-articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 65px;
    height: 65px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    height: 80px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-image img {
  width: 100%;
}

.ud-articles-box .ud-articles-list .ud-article-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-articles-box .ud-articles-list .ud-article-title {
    font-size: 16px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-title a {
  color: inherit;
}

.ud-articles-box .ud-articles-list .ud-article-title a:hover {
  color: var(--primary-color);
}

.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}

.ud-banner-ad a {
  display: block;
}

.ud-banner-ad img {
  width: 100%;
}

/* ====== Error 404 CSS ======= */
.ud-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .ud-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ud-404-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}

.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}

.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}

.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}

/*# sourceMappingURL=ud-styles.css.map */