/* Fonts */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --inter-font: "Inter", sans-serif;
  --swiper-navigation-size: 23px;
}

/* 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;
  --red-color: #0077B6;
  --heading-color: #23272f;
  --accent-color: #0077B6;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --paragraph-color: #23272f;
  --text-color: #23272f;
  --default-color: #444444;
  --green-color: #50c878;
}

/* 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: #23272f;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0077B6;
  /* 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: #23272f;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0077B6;
  /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #23272f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #23272f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden !important;
}

html , body {

  scroll-behavior: smooth;
/* overflow-x: hidden !important; */
}

a {
  color: var(--background-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 96px;
  margin-right: 10px;
  width: 250px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 15px;
  transition: 0.3s;
  font-weight: 500;
  padding: 15px 15px 15px 15px;
  /* padding: 15px 30px; */
  /* background: linear-gradient(90deg, #B52026 0%, #D4494B 100%); */
  /* background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%); */
  /* background: linear-gradient(90deg, #0077B6 0%, #0077B6 100%); */
  border-radius: 100px;
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  background-color: #ff6b35;

  font-size: clamp(15px, 5vw, 18px);
  line-height: clamp(20px, 5vw, 25px);

  color: var(--nav-dropdown-background-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #23272f;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  /* --background-color: rgba(255, 255, 255, 0); */
  --background-color: rgba(255, 255, 255, 1);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .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: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown ul li a:hover,
  .navmenu .listing-dropdown ul li .active,
  .navmenu .listing-dropdown ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--nav-dropdown-background-color);
  }

  .navmenu .listing-dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  /* background-color: #111827; */

  /* background: linear-gradient(146deg, var(--green-color) 0%, var(--accent-color) 100%); */
  font-size: 14px;
  /* padding-bottom: 50px; */
  background-color: #23272F;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;

  margin-right: 10px;
  transition: 0.3s;
}





.footer h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140.62%;
  color: #FFFFFF;

  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 0px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;

  color: #FFFFFF;

  line-height: 1;
}

.conact_form {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #fff;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #fff;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .cotact_sec h4 {

    max-width: 480px;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  /* padding: 50px 0px 50px 0px; */
  /* background: linear-gradient(168deg, rgb(0 170 197 / 50%), rgb(0 93 161 / 50%)), url(../img/home-banner.png) center center no-repeat; */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url(https://img.freepik.com/free-photo/glasses-lie-laptop-reflecting-light-from-screen-dark_169016-52267.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;

  height: auto;
  display: flex;
}


#ai-services .page-title .heading,
#website-maintenance .page-title .heading {
  padding: 80px 0;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/ai-tradie-bg.png) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;

  height: auto;
  display: flex;
}

#about_page .page-title .heading {


  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://img.freepik.com/free-vector/company-employees-planning-task-brainstorming_74855-6316.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
}

#conatct_page .page-title .heading {


  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://t3.ftcdn.net/jpg/02/73/60/86/360_F_273608614_a5a5WP7QfxwSLbnC6O5fHYSJhI5hFlcf.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
}

#blogs_details .page-title .heading {


  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://img.freepik.com/free-photo/young-businesswoman_1098-13832.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center center;
}

#blogs_page .page-title .heading {


  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://img.freepik.com/free-photo/travel-agent-offering-trip-planning-clients_23-2149079484.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center center;
}

.lead_style {
  display: flex;
  gap: 50px;
  justify-content: center;
}


.lead_style li {
  background-color: #f9fbff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}


#pricing_page .page-title .heading {


  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://img.freepik.com/free-photo/top-view-woman-working-as-economist_23-2150062318.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center center;
}



.websites_page .page-title .heading {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://img.freepik.com/free-photo/happy-workers-construction-site-young-civil-engineer-manager-architects-handshaking-construction-site-looking-construction-phase-cooperation-teamwork-concept_640221-293.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center center;
  height: auto;
  display: flex;
}

#lead-generation .page-title .heading {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(https://img.freepik.com/free-photo/confident-company-manager-giving-working-tasks-diverse-teamworkers_482257-7686.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center center;
  height: auto;
  display: flex;
}


.my_lst ul {
  list-style: none;
  /* Remove default bullet points */
  padding-left: 0;
  /* Remove default padding from the ul */
}

.my_lst li {
  position: relative;
  /* Needed for positioning the ::before element */
  padding-left: 1.5em;
  /* Create space for the tick mark */
}

.my_lst li::before {
  content: '✓';
  /* The tick mark character */
  color: green;
  /* Set the color of the tick mark */
  position: absolute;
  left: 0;
  /* Position the tick mark to the left */
  top: 0;
  /* Align the tick mark with the top of the list item */
  font-size: 1em;
  /* Adjust font size as needed */
  line-height: inherit;
  /* Inherit line height for vertical alignment */
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: auto;
  position: relative;
  padding: 60px 0 90px 0;
  display: flex;
  /* background: linear-gradient(121deg, rgba(255, 255, 255, 0.4), rgb(0, 119, 182, 0.4)), url(..img/home-banner.png) center center no-repeat; */
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--background-color);
  background-image: url(../img/hero-bg.png);
}

.hero h1 {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(30px, 8vw, 48px);
  line-height: clamp(50px, 8vw, 58px);
  color: var(--heading-color);
  position: relative;
  display: inline-block;


}

.hero p {
  margin: 4px 0px 16px 0px;
  max-width: 550px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: var(--text-color);
  font-size: clamp(15px, 5vw, 20px);
  line-height: clamp(20px, 5vw, 30px);

}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}


/*--------------------------------------------------------------
# OZbiz css  Farhan Starts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# home banner  Section css 
--------------------------------------------------------------*/

#hero .ratings_text {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  margin: 0px 0 10px 0 !important;
}

.red {
  color: var(--accent-color);
}

.aussie_bg:after {
  background: var(--accent-color);
  /* background-color: var(--green-color); */
  position: absolute;
  content: '';
  width: 170px;
  height: 55px;
  top: 7px;
  left: 205px;
  -webkit-transform: skew(-9deg);
  -moz-transform: skew(-9deg);
  -o-transform: skew(-9deg);
  z-index: -1;
  border-radius: 8px;
}


.btn-red,
.btn-red:focus {
  color: var(--contrast-color);
  font-size: 15px;
  transition: 0.3s;
  font-weight: 500;
  padding: 15px 20px;
  /* background: linear-gradient(90deg, #B52026 0%, #D4494B 100%); */
  background: #ff6b35;
  /* background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%); */
  border-radius: 100px;
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(15px, 8vw, 16px);
  line-height: clamp(20px, 8vw, 20px);
  color: var(--nav-dropdown-background-color);
}

.btn-red:hover,
.btn-red:focus:hover {
  color: var(--contrast-color);
  background: #23272f;
  transition: 0.3s;
}


.btn-black,
.btn-black:focus {
  color: var(--contrast-color);
  font-size: 15px;
  transition: 0.3s;
  font-weight: 500;
  padding: 15px 30px;
  background: transparent;
  border-radius: 100px;
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(15px, 8vw 109.28px, 16px);
  line-height: clamp(20px, 8vw, 20px);
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.btn-black:hover,
.btn-black:focus:hover {
  color: var(--contrast-color);
  background: #23272f;
  transition: 0.3s;
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 20px 0;
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.mb_25 {
  margin-bottom: 25px;
}

.lbg {
  background: var(--red-color);
  border-radius: 5px;
}

.lbg h6 {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17.6667px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  padding: 5px 10px;
  color: #FFFFFF;
}


/*--------------------------------------------------------------
# home banner  Section css ends
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# about   Section css 
--------------------------------------------------------------*/
.about_bg {
  padding: 33px 45px;
  /* background: #23272f; */
  /* background: rgb(80 200 120); */
  /* border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 10px 60px rgba(3, 6, 17, 0.2); */
  border-radius: 16.7463px;
  position: absolute;
  z-index: 99;
  transform: translate(0%, -25%);
  max-width: 82%;
  margin: 0 auto;
  /* background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%); */
  background: linear-gradient(90deg, #0077B6 0%, #0077B6 100%);
}

.abt_text h6 {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: -0.01em;

}

#about {
  margin-bottom: 150px;
}

.pt_96 {
  padding-top: 96px;
}

.pb_96 {
  padding-bottom: 96px;
}

.pt_48 {
  padding-top: 48px;
}

.pb_48 {
  padding-bottom: 48px;
}

.pb_10 {
  padding-bottom: 10px;
}




.stats .stats-item {
  padding: 25px 20.2288px 25.286px;
  background: #FFFFFF;
  box-shadow: 0px 4.04577px 4.04577px rgba(8, 50, 79, 0.1);
  border-radius: 10.1144px;
}

#stats .curve_line {
  position: absolute;
  transform: translate(310px, -20px);
}

#stats {

  margin-top: 140px;
}

.section_heading h2 {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  font-size: clamp(30px, 5vw, 35px);
  line-height: clamp(40px, 5vw, 45px);

  text-align: center;
  color: var(--text-color);
  margin-bottom: 16px;
  position: relative;
}

.section_heading {
  max-width: 680px;
  margin: 0 auto;
}

.stats-item h6 {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 500;
  font-size: 18.4939px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #23272f;
}

.stats-item p {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16.1831px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #23272F;
  /* margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.my-custom-button {

  display: inline-block;
  padding: 12px 25px;

  text-decoration: none;
  border: none;
  border-radius: 10px 10px 10px 10px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--red-color);

  &:hover {
    background-color: var(--default-color);
    color: var(--contrast-color);
  }
}

.curve_line {
  position: absolute;
  transform: translate(310px, -55px);
}

.content h6 {
  color: var(--red-color);
  font-weight: 600;
}



#services_sec .curve_line {
  position: absolute;
  transform: translate(290px, -20px);
}


/* .service_svg svg pa {
  fill: var(--accent-color) !important;
} */

#marketing_solutions .curve_lines {
  position: absolute;
  transform: translate(110px, -62px);
}



/* .red_shadow {
  position: absolute;
width: 534.21px;
height: 534.21px;
left: 1087.71px;
background-image: url(../img/bg-cirlce.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
top: 1382px;
} */

.content h3 {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 700;

  font-size: clamp(30px, 5vw, 35px);
  line-height: clamp(45px, 5vw, 42px);

  margin-bottom: 15px;
  color: #0F110F;
}

.content p {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: #23272F;
  /* max-width: 450px; */
  /* text-align: justify; */
}

.gril_banner {
  background: url(../img/tradie-man.png) center center no-repeat;
  align-items: center;
  background-size: contain;
  background-position: center;
  height: 50dvh;
  padding: 60px;
  /* display: flex;
  justify-content: center; */
}

.headinng h4 {

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  color: #FFFFFF;
  /* max-width: 370px; */
}

#grow_banner h4 {
  max-width: 370px;
}

/* .headinng{
     max-width: 350px;
} */


#crm-marketing-software .page-title .heading {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url(https://img.freepik.com/free-photo/customer-relationship-management-concept_23-2150038399.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.book_call {
  color: #fff;
  line-height: 30px;
  padding: 15px 30px;
  transition: 0.5s;
  background: #FF6B35;
  border-radius: 64.3362px;

}

.row_tranlste {
  transform: translate(3%, 80%);
}

.text_sec h2 {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 700;
  font-size: 30.3432px;
  line-height: 37px;
  color: var(--text-color);
  margin-bottom: 0px;
  position: relative;
}


/* projets sldier css */
.swiper-container-wrapper {
  position: relative;
  width: 100%;
  /* Adjust as needed */
  max-width: 100%;
  /* Max width for the slider */
  padding-bottom: 80px;
  /* Space for navigation buttons */
}

.swiper-container {
  width: 100%;
  height: 400px;
  /* Adjust slider height as needed */
  overflow: hidden;
  /* Ensure content doesn't spill */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 15px;
  overflow: hidden;
  /* Hide overflowing content in slides */
}

/* Styling for the image within the slide */
.swiper-slide img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* Cover the slide area */
  border-radius: 15px;
  /* Apply rounded corners to the image */
}

/* Custom navigation buttons container */
.swiper-navigation-custom {
  position: absolute;
  bottom: 20px;
  /* Distance from the bottom of the wrapper */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  /* Space between buttons */
  z-index: 10;
  /* Ensure buttons are above other content */
}

/* Styling for individual navigation buttons */
.swiper-button-custom {
  width: 50px;
  /* Width of the button */
  height: 50px;
  /* Height of the button */
  background-color: #23272f;
  /* Dark background */
  color: #fff;
  /* White arrow color */
  border-radius: 50%;
  /* Make them perfectly circular */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  /* Slight white border */
}

.swiper-button-custom:hover {
  background-color: transparent;
  /* Darker on hover */
  transform: translateY(-2px);
  border: 1px solid var(--heading-color);
  color: var(--heading-color);
  /* Slight lift on hover */
}



.swiper-button-prev-custom::before {
  content: '←';
  /* Left arrow character */
}

.swiper-button-next-custom::before {
  content: '→';
  /* Right arrow character */
}

/* Hide default Swiper navigation arrows */
/* .swiper-button-prev,
.swiper-button-next {
  display: none !important;
} */

/* Basic styling for the image within the slide */
.slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e9ecef;
  border-radius: 15px;
  font-size: 1.5rem;
  color: #6c757d;
}

.top-left {
  position: absolute;
  top: 25px;
  left: 25px;
}



.bottom-right {
  position: absolute;
  bottom: 25px;
  left: 23px;
}


.small_text {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 126%;
  letter-spacing: -0.03em;
  color: #FFFFFF;

}

.bottom-right h5 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #FFFFFF;
}


.h-slider {
  padding-left: 6.5% !important;
}


#clients_testimonails .curve_line {
  position: absolute;
  transform: translate(250px, -20px);
}

/* ends */


/* clients slider css */

.clients_testimonails .swiper-container {
  position: relative;
  width: 90vw;
  height: auto;
  overflow: visible;
}

.clients_testimonails .swiper-container>.swiper-slide__content {
  position: absolute;
  top: 0;
}

.clients_testimonails .swiper-slide {
  height: 230px;
  display: flex;
  background: #CDCFD3;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.8);
  padding: 15px 20px;
  transform: translate(0%, 1%);
}

.clients_testimonails .swiper-slide.swiper-slide-active {
  transform: scale(1);
  background: #23272f;
  border-radius: 32px;
  padding: 15px 20px;
}

.clients_testimonails .swiper-slide__content {
  height: 300px;
}


.navigatons_slider {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
  top: 260px;
}



.clients_testimonails .swiper-button-next:after {
  content: '←';
}

.clients_testimonails .swiper-button-prev:after {
  content: '→';
}

.test_text h6 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.test_text p {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #DDDDDD;
}

.user_fd p {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  color: #FFFFFF;
}

.cotact_sec h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: #23272f;
  margin-bottom: 40px;
}

.bold_red {

  font-weight: 700;

  color: var(--accent-color);
}

#contact .curve_line {
  position: absolute;
  transform: translate(45px, -20px);
}

.icon-card small,
.icon-card p {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #23272F !important;
}

/* .call_text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #23272f;

} */

.call_num a {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 27px;
  color: var(--accent-color);

}

.conact_form {
  padding-top: 60px;
}

.conact_form .form-control {
  border: 0;
  border-bottom: 1px solid var(--default-color);
  color: var(--accent-color);
  border-radius: 0;

}

.conact_form .form-control::placeholder {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16.02px;
  line-height: 19px;
  color: #23272f;
}

.conact_form .form-control:active,
.conact_form .form-control:focus {
  border: 0;
  border-bottom: 1px solid var(--accent-color);
  border-radius: 0;
  box-shadow: none;
  outline: none;
  color: var(--accent-color);
  ;

}

.send_text {
  padding: 12px 30px;
  border: 0;
  border-radius: 25px;
  background-color: #ff6b35;
  color: #fff;
}

.flay {
  position: absolute;
  transform: translate(-75%, 13%);
}


.abt_text p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/* *{
  outline: 1px solid #B52026 !important;
} */


/* ends */

/*--------------------------------------------------------------
# about   Section css  edns
--------------------------------------------------------------*/

.glass-container {
  background: rgba(255, 255, 255, 0.15);
  /* Semi-transparent white */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Lighter border for depth */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  /* Stronger shadow for floating effect */
  backdrop-filter: blur(10px);
  /* Glass effect blur */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  padding: 40px;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: fadeIn 1s ease-out;
  /* Simple fade-in animation */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-container h2 {
  color: #0077b6;
  text-align: center;
  margin-bottom: 0px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.glass-input {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-bottom: 1px solid #23272f;
  padding: 15px 0px;
  color: #0077b6;
  font-weight: 500;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
}

.glass-input::placeholder {
  color: #23272f !important;
  /* Lighter placeholder text */
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);

  outline: none;
  color: var(--accent-color);

}

.glass-textarea {
  min-height: 120px;
  resize: vertical;
  /* Allow vertical resizing */
}

.glass-button {
  background: linear-gradient(45deg, #0077b6, #0077b6);
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Button shadow */
}

.glass-button:hover {
  background: linear-gradient(45deg, #218838, #1e7e34);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  /* Slight lift on hover */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 576px) {
  .glass-container {
    padding: 25px;
  }

  .glass-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .glass-input,
  .glass-button {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}



.card-icon {
  font-size: 2.5rem;
  color: #6c757d;
  /* Adjust icon color as needed */
  margin-bottom: 1rem;
  display: inline-block;
  /* To allow margin-bottom to work */
}

.custom-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensure cards in a row have equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Distribute content vertically */
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.custom-card-body {
  padding: 1.5rem;
  text-align: center;
}

.custom-card-body img {
  margin-bottom: 20px;
  width: 60px;
}

.custom-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 0.75rem;
}

.custom-card-text {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #23272F;
}

.comparison_sec .section_heading {
  max-width: 650px;
  margin: 0 auto;
}


.comparison-container {
  position: relative;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;

}

.comparison-left,
.comparison-right {
  padding: 3.5rem 4rem;
  /* More generous padding */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 550px;
  /* Ensure a good height */
}

/* Styles for the "Without" section */
.comparison-left {
  background-color: #ecf0f1;
  /* Darker background */
  color: #fff;
  /* Light text */
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.1);
  /* Inner shadow for depth */
  position: relative;
  z-index: 1;
  /* Ensure it's above the right section slightly */
}

.left-header {
  background-color: #3498db;
  /* Striking red */
  border-radius: 15px;
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  top: -1.5rem;
  /* Lift header slightly */
  margin-left: -1rem;
  margin-right: -1rem;
}

.comparison-left .comparison-list li {
  color: #000000;
  text-transform: capitalize;
}

.comparison-left .icon-cross {
  color: #f1f1f1;
  /* Yellowish for contrast */
}

/* Styles for the "With" section */
.comparison-right {
  background-color: #3498db;
  /* Light background for contrast */
  color: #333;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.05);
  /* Inner shadow for depth */
  position: relative;
  z-index: 0;
}

.right-header {
  background-color: #000;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  top: -1.5rem;
  margin-left: -1rem;
  margin-right: -1rem;
  color: #fff;
}

.comparison-right .icon-check {
  color: #ffffff;
  /* Blue for check */
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.comparison-list li {
  font-size: 1.15rem;

  margin-bottom: 1.3rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.comparison-right li,
.comparison-left li {
  color: #fff;
}

.comparison-left li i {
  color: #000 !important;
  /* Yellowish for contrast */
}

.comparison-list li i {
  margin-right: 15px;
  font-size: 1.4rem;
  color: #000;
  position: relative;
  top: 2px;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
}

.central-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  /* Width of the "VS" section */
  height: 100%;
  background-color: transparent;
  /* Transparent as the VS is a separate element */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  /* Ensure it's on top */
  pointer-events: none;
  /* Allow clicks to pass through to underlying elements */
}

.vs-circle {
  background-color: #1a1a1a;
  /* Blue circle for VS */
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



@media (max-width: 991.98px) {
  .comparison-container {
    border-radius: 15px;
  }

  .comparison-left,
  .comparison-right {
    clip-path: none;
    /* Remove clip-path on small screens */
    border-radius: 15px;
    padding: 2.5rem 2rem;
    min-height: auto;
  }

  .comparison-right {
    margin-top: 2rem;
    margin-left: 0;
  }

  .central-divider {
    position: absolute;
    margin: 2rem auto;
    transform: translate(-50%, -4%);
  }

  .vs-circle {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .left-header,
  .right-header {
    position: static;
    margin-left: 0;
    margin-right: 0;
    top: 0;
  }

  .comparison-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .comparison-list li i {
    font-size: 1.2rem;
  }
}

.comparison_sec .curve_line {
  position: absolute;
  transform: translate(350px, -22px);
}

.grow_banner {
  background: url(../img/tradie-man.png) center center no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-size: cover;
  background-position: center;
  height: auto;
  max-width: 80%;
  margin: 0 auto;
  border-radius: 16px;
}


/*--------------------------------------------------------------
# about page css  Farhan Starts
--------------------------------------------------------------*/
.about_sec .content p {

  max-width: 550px;
}

.about_oz p {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #23272F;
}


.card-modern {
  background-color: #ffffff;
  border-radius: 2rem;
  /* Even more rounded */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  /* Deeper shadow */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 2.5rem;
  /* More generous padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;

  border: none;
  height: 400px;
}

.card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
  border-radius: 2rem 2rem 0 0;

}

.card-modern:hover::before {
  transform: scaleX(1);
  /* Reveal on hover */
}

.card-modern:hover {
  transform: translateY(-12px);
  /* Stronger lift */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  /* More pronounced shadow on hover */
}

.icon-container-modern {
  width: 96px;
  height: 96px;
  min-width: 96px;
  min-height: 96px;
  /* background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%); */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  margin-bottom: 2rem;
  background: var(--accent-color);
  /* box-shadow: 0 8px 20px rgb(53 217 40 / 50%); */

  position: relative;
  overflow: hidden;
}

.icon-container-modern svg {
  fill: #ffffff;
  width: 48px;
  /* Larger icon inside */
  height: 48px;
  transition: transform 0.3s ease;
}

.card-modern:hover .icon-container-modern svg {
  transform: scale(1.1);
  /* Slightly enlarge icon on hover */
}

.card-title-modern {
  margin-bottom: 1rem;
  font-size: 25px;
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #23272f;
}

.card-description-modern {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #23272F;
  margin-bottom: 0;
}


/* team sec css*/


.team-member-image {
  width: 120px;
  /* Larger image size */
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 9999px;
  /* Full circle */
  object-fit: cover;
  /* Ensure image covers the area */
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgb(53 217 40 / 50%);
  border: 5px solid #0077B6;
  background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%);
  transition: transform 0.3s ease;
}

.card-modern:hover .team-member-image {
  transform: scale(1.05);
  /* Slightly enlarge image on hover */
}



.team-member-role {
  color: #0077B6;

  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}


.social-links-hidden {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;

}

.card-modern:hover .social-links-hidden {
  opacity: 1;

  visibility: visible;

}

.contact .info-item {
  background:
    color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}


.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}


.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .php-email-form {
  background:
    color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}


.projects_slider .swiper-container {
  width: 850px;
  padding-top: 50px;
  padding-bottom: 50px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.projects_slider .swiper-slide {
  width: 300px;
}


.sticky-column {
  position: -webkit-sticky;

  position: sticky;
  top: 1rem;

  align-self: flex-start;

  z-index: 99;

}

.content-wrapper {
  min-height: 150vh;

  padding-top: 20px;
  padding-bottom: 20px;
}



/* Basic styling for cards */
.card {
  margin-bottom: 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
}

p {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #23272F;
  /* text-align: justify; */
}

.card-img-top {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  width: 100%;
  height: 200px;
  /* Fixed height for consistency */
  object-fit: cover;
  /* Ensures image covers the area without distortion */
}

/* Form styling */
.contact-form-card {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-pagination {
  padding-top: 0;
  color:
    color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color:
    color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# about page css  Farhan ends
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent-color);
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}


.accordion-container {
  max-width: 850px;
  width: 100%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  background-color: #ffffff;
  padding: 30px;
}

.accordion-item {
  border: 0;
  margin-bottom: 15px;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:hover {

  transform: translateY(-2px);
}

.accordion-button {
  font-weight: 600;
  color: #333;
  background-color: #f5f5f5;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
  padding: 1.2rem 1.5rem;
  font-size: 1.15rem;
  border: none;
}

.accordion-header {
  margin-bottom: 10px;
}



.accordion-button {
  background-color: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #D9D9D95E;
}




.services_sec p,
.web_services p,
.pricing p {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #23272F;
  /* text-align: justify; */
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #0077b6;
  box-shadow: none;
  border-radius: 15px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-radius: 15px;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

.accordion-button:focus {
  box-shadow: unset;
  border-color: transparent;
}

.accordion-body {
  padding: 1.2rem 1.5rem;
  color: rgb(85, 85, 85);
  border-width: 1px 1px 1px 1px;
  border-radius: 15px;
  border: 1px solid #D9D9D973;
}


.icon-card {
  background-color: #f9fbff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* min-height: 180px; */
  height: 250px;
  /* Ensure consistent height for cards */
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon-card svg,
.icon-card img {
  width: 60px;
  height: 60px;
  color: #28a745;
  /* Green color for icons */
  margin-bottom: 15px;
}

.icon-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.services_sections {
  background-color: #f9fbff;
  position: relative;
  background-image: url(../img/bgsss.png);
  width: 100%;
  background-size: cover;
  /* background-position: 20% 50%; */
}

.faq_sec {
  background-color: #f0f8ff99;
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}

@media (min-width: 1200px) {
  .pricing .pricing-tem:hover {
    transform: scale(1.1);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 50px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 20px 0;
}

.pricing .icon i {
  font-size: 48px;
}


#case-study .page-title .heading {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url(https://img.freepik.com/free-photo/top-view-international-worker-s-day-with-engineer-tools_23-2150269717.jpg) center center no-repeat;
  background-size: cover;
}

.privacy-policy a,
#terms_conditions a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.privacy-policy h2,
#terms_conditions h2 {
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  text-align: start;
  color: var(--text-color);
  margin-bottom: 16px;
  position: relative;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: start;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
  margin-bottom: 8px;
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}


.card-custom {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-custom:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card-title-box {
  background-color: var(--accent-color);
  color: #fff;
  padding: 10px 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  margin-top: auto;
}

.card-title-box h5 {
  color: #fff;
}

.card-body-custom {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-text-bold {
  font-weight: bold;
}

.card-link {
  color: #007bff;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* ul li{
  list-style-type: none;
}


ul li::before {
  content: "✓"; 
  margin-right: 5px; 
  color:#0077B6; 
} */

.own_it {
  padding: 80px 0px;
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)), url(../img/b4.jpeg) center center no-repeat;
  background-size: cover;
}



.header-section {
  background-color: #16213e;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.report-image-container {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.report-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-content {
  flex: 2;
  min-width: 350px;
  padding: 20px;
  text-align: left;
}

.header-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.header-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #cccccc;
}





.stats-section {
  margin-top: 50px;
}

.stat-card {
  background-color: #0077b6;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  /* Changed from red to white */
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .header-section {
    flex-direction: column;
    text-align: center;
  }

  .header-content {
    text-align: center;
    padding-top: 30px;
  }

  .header-content h1 {
    font-size: 2.2rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .report-image-container {
    padding: 0;
  }

  .stat-card h2 {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {


  .header-section {
    padding: 30px;
    margin-bottom: 30px;
  }

  .header-content h1 {
    font-size: 1.8rem;
  }

  .header-content p {
    font-size: 0.95rem;
  }



  .stat-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .stat-card h2 {
    font-size: 1.8rem;
  }

  .stat-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .header-section {
    padding: 20px;
  }

  .header-content h1 {
    font-size: 1.5rem;
  }

  .header-content p {
    font-size: 0.9rem;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card h2 {
    font-size: 1.5rem;
  }

  .stat-card p {
    font-size: 0.85rem;
  }
}


/* Responsive adjustments for 5 columns on desktop */
@media (min-width: 992px) {

  /* Large devices (desktops) */
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
    /* 100% / 5 = 20% */
  }
}

/* Adjustments for 2 columns on mobile/small devices */
@media (max-width: 767.98px) {

  /* Small devices (phones) */
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
    /* 100% / 2 = 50% */
  }
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}



.testimonial-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  overflow: hidden;
}

.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .name {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  color: #343a40;
}

.testimonial-card .stars {
  color: #ffc107;
  margin-top: 5px;
}

.testimonial-card .review-text {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  margin-top: 20px;
  flex-grow: 1;
}

.testimonial-card .source {
  margin-top: 20px;
  font-size: 14px;
  color: #6c757d;
  display: flex;
  align-items: center;
}

.testimonial-card .source img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.google-review-logo {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

@media (max-width: 767.98px) {
  #stats {
    margin-top: 0;
  }

  .overlap_sec {
    position: relative !important;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card .avatar {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .testimonial-card .name {
    font-size: 20px;
  }

  .testimonial-card .review-text {
    font-size: 15px;
  }
}



.card-section-wrapper .custom-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 350px;
  width: 100%;
  max-width: 350px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-section-wrapper .custom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  transition: background-color 0.3s ease;
  z-index: 0;
}

.card-section-wrapper .custom-card:hover::before {
  background-color: rgba(0, 123, 255, 0.4);
}

.card-section-wrapper .custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-section-wrapper .custom-card-content {
  position: absolute;
  /* Changed to absolute positioning */
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: left;
  color: #fff;
  z-index: 1;
  /* padding-top removed as it's not needed with absolute positioning */
}

.card-section-wrapper .custom-card-title {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.card-section-wrapper .custom-card-text {

  font-size: 1rem;
  text-align: center;
  color: #fff;
}

.card-section-wrapper .logo-container {
  position: absolute;
  /* Changed to absolute positioning */
  top: 50%;
  /* Center vertically */
  left: 50%;
  /* Center horizontally */
  transform: translate(-50%, -50%);
  /* Adjust for element's own size */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  /* flex-grow and padding-top removed as they are not needed with absolute positioning */
}

.card-section-wrapper .logo {
  max-width: 80%;
  height: auto;
  display: block;
}

.custom-card-1 {
  background-image: url('https://images.unsplash.com/photo-1503174971373-b1f69850bded?q=80&w=913&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.custom-card-2 {
  background-image: url('https://images.unsplash.com/photo-1656881680742-7d58981c1d7d?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.custom-card-3 {
  background-image: url('https://images.unsplash.com/photo-1583345237708-add35a664d77?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}


.alfor-main-container {
  background-color: #343a40;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.alfor-heading-text {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-right: 15px;
  white-space: nowrap;
  justify-content: center;
  font-weight: 600;
}

.alfor-custom-btn {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;

  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  margin: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.alfor-custom-btn:hover {
  background-color: var(--default-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}

#services_page .grow_banner {
  background-image: url(../img/service-2bg.png);
  background-position: 90% 100%;
  margin-bottom: 40px;

}

.pricing {
  background-color: #EBEFF0;
  padding: 50px 0;
}

#seo-service .page-title .heading {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url(https://img.freepik.com/free-vector/seo-analysis-isometric-composition-with-web-optimization-symbols_1284-32010.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
}

#google-workspace .page-title .heading {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url(https://img.freepik.com/free-vector/modern-office-interior-elements_107791-32189.jpg?) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
}

ul li {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #23272F;
}


.overlap_sec {
  background: linear-gradient(90deg, #0077B6 0%, #0077B6 100%);
  border-radius: 14px;
  position: absolute;
  padding: 33px 45px;
  left: 0;
  right: 0;
  width: 100%;
  transform: translate(0%, 10%);
  z-index: 99;
}

#ai-services .icon-card {
  height: auto;
}


.footer_form .form-control {
  color: white;
  background: transparent;
}

.footer_form .form-control::placeholder {
  color: white;
  background: transparent;
  font-size: 12px;
}

.footer_form .send_text {
  background-color: #ff6b35;
  color: white;
}

/*--------------------------------------------------------------
# OZbiz css  Farhan ends
--------------------------------------------------------------*/

/* Responsive adjustments */
@media (max-width: 768px) {

  .alfor-heading-text {
    margin-bottom: 15px;
    margin-right: 0;
    width: 100%;
  }

  .alfor-main-container .row {
    justify-content: center;
  }

  .alfor-custom-btn {
    width: 100%;
    max-width: 250px;
  }


  .swiper-container-wrapper {
    width: 100%;
  }

  .swiper-container {
    height: 300px;
  }

  .swiper-button-custom {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .swiper-navigation-custom {
    bottom: 15px;
  }
}

@media (max-width: 576px) {
  .swiper-container {
    height: 250px;
  }

  .swiper-button-custom {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .swiper-navigation-custom {
    gap: 10px;
    bottom: 10px;
  }
}

@media (max-width: 640px) {

  html , body {
    overflow-x: hidden;
  }

  .lead_style {
    display: grid;
    gap: 20px;
    justify-content: center;
  }

  #services_page .grow_banner {

    background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%);
  }

  .bloquote svg {
    width: 20px;
    height: 20px;
  }

  .swiper-navigation-custom,
  .navigatons_slider {
    display: none;
  }

  .swiper-container-wrapper {
    padding-bottom: 0px;
  }

  .mobile-nav-toggle {

    margin-right: 0;

  }

  .header .branding {

    padding: 10px;
  }

  .abt_text {
    text-align: center;
    margin-top: 20px;
  }


  .aussie_bg:after {
    display: none;
  }

  .aussie_bg {
    color: var(--accent-color) !important;
    font-weight: 500 !important;
  }

  .hero {
    min-height: auto;
    /* background: linear-gradient(250deg, rgb(0 0 0 / 30%), rgb(255 255 255 / 40%)), url() center center no-repeat;    align-items: center; */
    background-size: cover;
    background-position: center;
    background: unset;
  }

  .btn-red,
  .btn-black {
    font-size: 13px;
    padding: 15px 20px;
    display: block;
    text-align: center;
  }

  #website-maintenance .btn-red {
        display: inline;
        text-align: center;
  }

  .about_bg {
    padding: 20px 25px;
    /* background: #23272f; */
    border-radius: 16.7463px;
    position: relative;
    z-index: 99;
    transform: unset;
    max-width: 100%;
    margin: 0 auto;
  }

  #about {
    margin-bottom: 0;
  }

  .pb_96 {
    padding-bottom: 48px;
  }

  .pt_96 {
    padding-top: 48px;
  }

  .pb_48 {
    padding-bottom: 24px;
  }

  .stats .stats-item {
    text-align: center;
  }

  .gril_banner {
    height: 30dvh;
    padding: 32px;
    background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
  }


  .row_tranlste {
    transform: translate(0%, 20%);
  }

  .headinng h4 {
    font-size: 30px;
    line-height: 40px;
  }

  .text_sec h2 {
    text-align: center;
  }

  .view-all {
    margin-top: 20px;
  }

  .view-all a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
  }

  .test_text p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
  }


  .grow_banner {
    padding-bottom: 70px;
  }



  .cotact_sec h4 {

    font-size: 35px;
    line-height: 45px;

  }

  .flay {
    display: none;
  }

  .conact_form {
    /* background: #23272f; */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .send_text {
    padding: 12px 30px;
    border: 1px solid #ffffff;
    border-radius: 25px;

    color: #fff;
  }

  #stats .curve_line {
    position: absolute;
    transform: translate(280px, -56px);
  }

  #services_sec .curve_line {
    position: absolute;
    transform: translate(210px, -20px);
  }



  .h-slider {
    padding-left: unset !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    line-height: normal;
  }


  .comparison_sec .curve_line {
    position: absolute;
    transform: translate(210px, -20px);
  }

  #marketing_solutions .curve_lines {
    position: absolute;
    transform: translate(-52px, -18px);
  }

  .grow_banner {

    background-position: center;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--green-color) 0%, var(--accent-color) 100%);
    text-align: center;
    padding: 50px 0px !important;
  }

  .projects_slider .swiper-container {
    width: auto;

  }
  #grow_banner h4 {
    max-width: 100%;
}

}



@media only screen and (min-width: 320px) and (max-width: 390px) {

  .header-content {
    text-align: center;

  }

  .header-section {

    flex-direction: row;
    text-align: center;
  }

  .page-title .heading {
    height: auto;
  }

  .header-section .btn-red {
    margin: 0 auto;
  }

  #clients_testimonails .curve_line {
    position: absolute;
    transform: translate(188px, -20px);
  }

  #stats .curve_line {
    position: absolute;
    transform: translate(210px, -61px);
  }

  .btn-red,
  .btn-black {
    font-size: 14px;
    padding: 15px 12px;
    display: block;
    text-align: center;
  }

  .lbg h6 {

    font-size: 15px;
    line-height: 22px;

  }

  .row_tranlste {
    transform: translate(0%, -4%);
  }

  .headinng h4 {
    font-size: 25px;
    line-height: 41px;
  }



}
.error
{
    color : red;
}