
.logo img.custom-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.demo-import-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
}

.demo-import-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.demo-import-wrapper p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.demo-import-btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 600;
    color: #fff;
    background-color: #5a67d8;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.demo-import-btn:hover {
    background-color: #434190;
}


/*=========================== GLOBAL HEADER CSS  ===========================*/
header .logo > a {
    display: inline-block;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo img {
  max-height: 50px;
  width: auto;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}
nav ul li {
  position: relative;
}
nav ul li a {
  font-weight: 500;
  padding: 8px 0;
  display: block;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #0073aa;
}
nav ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff; 
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #00000014;
  border-radius: 8px;
  min-width: 180px;
  z-index: 999;
  gap: 0;
  flex-direction: column;
}
nav ul li ul.sub-menu li {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
}
nav ul li ul.sub-menu li:last-child {
    border-bottom: none;
}
nav ul li ul.sub-menu li a {
    padding: 6px 10px;
}
nav ul li.menu-item-has-children > a:after {
  content: "▼";
  font-size: 0.6rem;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s;
}
nav ul li.open > a:after,
nav > ul > li.menu-item-has-children:hover > a:after,
nav > ul > li.menu-item-has-children > ul.sub-menu li.menu-item-has-children:hover > a:after{
  transform: rotate(-180deg);
}
nav > ul > li.menu-item-has-children > ul.sub-menu li.menu-item-has-children ul.sub-menu {
    background-color: #f2f2f2;
}
nav ul li:hover > ul.sub-menu {
  display: flex;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/*=========================== HEADER 1 CSS  ===========================*/

.header-style-1 {
    padding: 10px 0;
}
.header-style-1 .navbar-nav {
    gap: 40px !important;
}
.header-style-1 .menu-item a {
   color:#000;
   text-decoration:none;
}
.header-style-1 .menu-item a:hover,
.header-style-1 .menu-item.current-menu-item > a {
    color: #0073aa;
}
.header-style-1 .logo img {
    height: 50px;
}



/*=========================== HEADER 2 CSS  ===========================*/

/* Header 2 Background */
.header-style-2 {
    background-color: #f8f8f8;
}

/* Top Bar */
.header-style-2 .top-bar {
    background: #0073aa;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}
.header-style-2 .top-bar p {
    margin-bottom: 0;
}
.header-style-2 .logo img {
    height: 50px;
}
.header-style-2 .header-inner {
    padding-block: 10px;
}
.header-style-2 .menu-item a {
   color:#000;
   text-decoration:none;
}
.header-style-2 .menu-item a:hover,
.header-style-2 .menu-item.current-menu-item > a {
    color: #0073aa;
}


/*=========================== HEADER 3 CSS  ===========================*/
.header-style-3 {
    background: #222;
    color: #fff;
    padding: 10px 0;
}
.header-style-3 .logo img {
    height: 60px;
}
.header-style-3 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.header-style-3 .menu-item a {
   color:#fff;
   text-decoration:none;
}
.header-style-3 .menu-item a:hover,
.header-style-3 .menu-item.current-menu-item > a {
    color: #00bcd4;
}
.header-style-3 .menu-toggle span {
    background: #fff;
}

/*=========================== FOOTER CSS  ===========================*/
.footer1 {
    background-color:#1a1a1a;
    color: #f0f0f0;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}
.footer1 a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer1 a:hover {
    color: #1e90ff;
}
.footer1 .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 50px 40px;
    margin: 0 auto;
}
.footer1 .footer-logo {
    text-align: left;
}
.footer1 .footer-logo img {
    max-width: 160px;
    margin-bottom: 15px;
}
.footer1 h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid #1e90ff;
    display: inline-block;
    padding-bottom: 4px;
}
.footer1 .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer1 .footer-menu li {
    font-size: 16px;
    margin-bottom: 8px;
}
.footer1 .footer-contact p {
    font-size: 16px;
    margin-bottom: 8px;
}
.footer1 .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: all 0.3s ease;
}
.footer1 .footer-social a:hover {
    color: #1e90ff;
    transform: scale(1.1);
}
.footer1 .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 18px 10px;
    font-size: 13px;
    background-color: #111;
}
.footer1 .footer-bottom p {
    margin: 0;
}
.footer1 .footer-social a img.social-svg {
    width: 26px;
    aspect-ratio: 1;
    filter: invert(1);
}


/*=========================== RESPONSIVE TWEAKS  ===========================*/
@media (max-width: 1199px) {
.footer1 .container {    
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}
}

@media (max-width: 1024px) {
.footer1 .container {
   display: flex;
    justify-content: space-between;
}
.footer1 .footer-logo img {
    margin: 0 auto 10px;
}
}

@media (max-width: 992px) {
nav ul {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 96%;
    margin-inline: auto;
    gap: 0;
    display: none;
    border-radius: 15px;
    border: 1px solid #eee;
}
nav ul li {
    border-bottom: 1px solid #f2f2f2;
}
nav ul li a {
    padding: 10px;
    text-align: center;
}
nav ul li ul.sub-menu {
    background-color: #f2f2f2;
    position: static;
    box-shadow: none;
    display: none;
    padding: 10px;
    width: 80%;
    margin: 0 auto 10px;
}
nav ul li.open > ul.sub-menu {
    display: flex;
}
nav ul.active {
    display: flex;
}
.menu-toggle {
    display: flex;
}
.header-style-2 nav ul {
    top: 100px;
}
.header-style-3 .container {
    flex-direction: row;
}
.header-style-3 .menu-item a {
    color: #000000;
}
}
@media (max-width: 768px) {
.footer1 .footer-social {
    align-items: center;
    text-align: center;
}
}

@media (max-width: 767px){
.footer1 .footer-logo {
    width: 100%;
    text-align: center;
}
.footer1 .footer-logo img {
    max-width: 120px;
}
.footer1 .container {
   padding: 50px 20px;
   gap: 20px;
   flex-wrap: wrap;
}
.footer1 h4 {    
    font-size: 14px;    
}
.footer1 .footer-menu li,
.footer1 .footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
}
.footer1 .footer-social {
    align-items: flex-start;
    text-align: left;
}
.footer1 .footer-social a img.social-svg {
    width: 20px;    
}
.footer1 .footer-social a {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}
}