@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --black: #050A26;
  --white: #F9F9F9;
  --color: #865AF5;
  --hover: #4C1EBE;
  --card1: #161A1F;
  --card2: #F6F5FE;
  --price: #2A3435;

  /* Set initial theme colors */
  --bg-color: var(--black);
  --text-color: var(--white);
}

body {
  font-family: "Noto Sans", sans-serif;
  
  background-color: var(--bg-color);
  color: var(--text-color);
}

a {
  color: var(--color);
  text-decoration: none;
}

.inputfiled {
  background-color: var(--color);
}

a:hover {
  color: var(--white);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Noto Sans", sans-serif;
  color: var(--text-color)
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 36px;
  bottom: 100px;
  z-index: 99999;
  background: var(--color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
  margin-right: 5px;
}

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .back-to-top {
    right: 22px;
    bottom: 100px;
  }
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: var(--bg-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--hover);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#main {
  margin-top: 72px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
  text-transform: uppercase;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--color);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--hover);
}

.navbar ul li .icon {
  margin-right: 30px;
  margin-left: 30px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--color);
  color: var(--white);
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 5px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--hover) 90%, white 15%);
  box-shadow: 0 0 20px hsl(248, 100%, 80%);
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--text-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--text-color);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--bg-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--hover);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.icon bi bi-sun{
  color: var(--text-color);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
css

Copy
/* Define CSS custom properties */
:root {
  --text-color: #333; /* Example fallback */
  --color: #007bff; /* Primary button color */
  --hover: #0056b3; /* Hover state color */
  --contrast-color: #fff; /* Text color for buttons */
  --white: #fff; /* White for backgrounds or text */
}

/* Hero section */
#hero {
  width: 100%;
  height: auto;
  margin: 72px 0 -72px 0;
  padding: 20px 0; /* Added padding for better spacing */
}

/* Hero headings */
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-color);
  text-align: center;
}

#hero h2 {
  color: var(--text-color);
  margin: 12px 0 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

/* Bootstrap icon spacing */
.bi {
  margin-left: 5px;
}

/* Dot container */
.Dot {
  display: flex;
  justify-content: center; /* Center items */
}

.Dot div {
  display: flex; /* Enable flex for alignment */
  align-items: center;
  margin-left: 8px;
}

.Dot div h6 {
  text-align: center;
  margin: 5px 0 0 0; /* Adjusted for consistency */
}

/* Animation for hero elements */
#hero .animated {
  animation: up-down 6s ease-in-out infinite alternate-reverse both;
}

/* Get Started button */
#hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--color);
  font-family: sans-serif; /* Fallback for var(--white) */
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 50px;
  transition: background-color 0.5s ease;
  border: 2px solid var(--hover);
  text-decoration: none; /* Prevent underline */
}

#hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--hover) 90%, white 15%);
}

/* View Hero button */
.viewhero-button,
.viewhero-button:focus {
  background: var(--color);
  width: 70%; /* Changed from inline-size for broader support */
  max-width: 300px; /* Prevent excessive width */
  border-bottom: 4px solid var(--hover);
  color: var(--white);
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.viewhero-button:hover,
.viewhero-button:focus:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--hover) 90%, white 15%);
  box-shadow: 0 0 20px color-mix(in srgb, var(--hover) 80%, white 20%);
}

/* Parent container for centering */
.parent-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

/* View Hero link */
.viewhero {
  margin-bottom: 10px;
  position: sticky;
  text-decoration: none;
  color: var(--text-color);
  padding: 10px 20px;
  display: inline-block;
  font-size: 18px;
}

/* Pseudo-elements for border animation */
.viewhero::before,
.viewhero::after {
  content: '';
  position: sticky;
  inset: -4px; /* Shorthand for top, left, right, bottom */
  border: 2px solid transparent;
  border-radius: 999px;
  animation: pulseBorder 3s linear infinite;
}

.viewhero::before {
  border-top-color: #FACDCC;
  border-left-color: #C3E0E1;
}

.viewhero::after {
  border-bottom-color: #E9CDBA;
  border-right-color: #F2EBDD;
}

/* Fix text styling */
.fixtext {
  color: var(--text-color);
  display: inline-block;
}

/* Pulse border animation */
@keyframes pulseBorder {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Up-down animation */
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments */
@media (max-width: 1280px) {
  #hero {
    height: auto; /* Avoid calc for simplicity */
    padding: 40px 20px;
  }

  #hero .animated {
    animation: none; /* Disable animation for smaller screens */
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 24px;
  }


  .viewhero-button {
    width: 90%; /* Full width on small screens */
    margin-left: 0; /* Center button */
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 20px 10px;
  }

  #hero h1 {
    font-size: 24px;
    line-height: 32px;
  }

  #hero h2 {
    font-size: 14px;
    line-height: 20px;
  }

  .viewhero-button {
    padding: 8px 20px;
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  margin-top: 30px;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  bottom: 0;
  left: calc(50% - 30px);
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about p {
  font-size: 15px;
  color: var(--text-color);
  text-align: justify;
}

.about h2 {
  color: var(--text-color);
}

@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}
/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills-p {
  margin-top: 8px;
  font-size: 16px;
}

.row {
  margin-top: 30px;
}

.card-text {
  color: #4B5563;
}

.card-img-top {
  margin-top: 20px;
}

.skills {
  display: block;
}
/*--------------------------------------------------------------
# Work process
--------------------------------------------------------------*/
.card-text{
  color: var(--text-color);
}
.card-title{
  color: var(--color);
}
.card-style {
  background-color: var(--bg-color);
  height: 100%;
  text-align: center;
  box-shadow: 0 0 20px hsla(248, 98%, 57%, 0.265);
}
/*--------------------------------------------------------------
# Experience
--------------------------------------------------------------*/

.timeline {
  position: relative
}

.timeline .timeline-container {
  padding-left: 50px;
  margin-bottom: 100px;
  position: relative;
  background-color: inherit;
  width: 100%
  
}

.timeline .timeline-container:last-of-type {
  margin-bottom: 0
}

.timeline .timeline-container::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  left: 0;
  background-color: var(--color);
  top: 7px;
  z-index: 1
}

.timeline .content {
  position: relative;
  text-align: left;

}

.timeline .content .time {
  color: #999;
  font-size: 14px
}

.timeline .content p {
  margin: 0
}

.timeline span.line {
  position: absolute;
  width: 1px;
  background-color: #ececec;
  top: 7px;
  bottom: 0;
  left: 4px
}
/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
}

.facts .count-box p {
  font-size: 1rem !important;
}

.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.purecounter {
  color: var(--text-color) !important;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.section-title h2 {
  color: var(--text-color)f;
  margin-top: 20px;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--text-color);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--color);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(53, 120, 255, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 4px;
  line-height: 0;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 0;
  font-size: 24px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: red;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0 0 8px hsla(248, 98%, 57%, 0.265);
  border-radius: 12px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--text-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #C8B4F9;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #865AF5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--hover);
}

.viewall-button,
.viewall-button:focus {
  background: var(--color);
  color: var(--white);
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 5px;
}

.viewall-button:hover,
.viewall-button:focus:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--hover) 90%, white 15%);
  box-shadow: 0 0 20px hsl(248, 100%, 80%);
}
/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  margin-top: 50px;
}

.contact .info i {
  font-size: 20px;
  color: var(--color);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.10);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
  text-align: left;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-color);
  text-align: left;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--color);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  margin-top: 50px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.form-control {
  background-color: var(--bg-color) !important;
  color: var(--text-color) !important;
}

::placeholder {
  color: var(--text-color) !important;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid --color;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact button[type=submit] {
  background: var(--color);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--hover) 90%, white 15%);
  box-shadow: 0 0 20px hsl(248, 100%, 80%);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--text-color);
  font-size: 14px;
  text-align: center;
  /* padding: 30px 0; */
  margin-top: 60px;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  /* margin: 0 0 40px 0; */
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
}

#footer .social-links a:hover {
  background: var(--hover);
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits a {
  font-size: 13px;
  transition: .3s ease-in-out;
}

#footer .credits a:hover {
  color: var(--text-color) !important;
}

.chat-button {
  position: fixed;
  left: 20px; /* Distance from the left */
  bottom: 20px; /* Distance from the bottom */
  background-color: #007bff; /* Button color */
  color: white; /* Text color */
  padding: 10px 15px; /* Padding */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Shadow effect */
}

.chat-button:hover {
  background-color: #0056b3; /* Darker color on hover */
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-image {
  position: relative;
}

.about .about-image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.about .about-content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.about .about-content .subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.about .about-content h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about .about-content .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .personal-info {
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--bg-color);
  border-radius: 0rem;
  box-shadow: 0 0 30px hsla(248, 100%, 61%, 0.152);
}

.about .personal-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about .personal-info .info-item .label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .personal-info .info-item .value {
  font-weight: 600;
  color: var(--hea-color);
}

.about .signature {
  display:  flex;
  align-items: center;
  gap: 1.5rem;
}

.about .signature .signature-image {
  max-width: 150px;
}

.about .signature .signature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about .signature .signature-info p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skill-box {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px hsla(248, 100%, 61%, 0.152);
}

.skills .skill-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.skills .skill-box p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.skills .skill-box .progress {
  background-color: color-mix(in srgb, var(--hover), transparent 75%);
  border-radius: 50px;
  height: 8px;
  margin-top: 5px;
  overflow: hidden;
}

.skills .skill-box .progress .progress-bar {
  background-color: color-mix(in srgb, var(--color), transparent 65%);
  height: 100%;
  position: relative;
  border-radius: 50px;
  transition: 0.9s;
  width: 1px;
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  clip-path: inset(0);
  background-color: var(--color);
  box-shadow: 0 0 20px hsla(248, 100%, 61%, 0.152);
  border-radius: 12px;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--white);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--hover);
  color: var(--white);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
  box-shadow: 0 0 20px hsl(248, 100%, 80%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--color), transparent 90%);
  position: relative;
  box-shadow: 0 0 8px hsla(248, 98%, 57%, 0.265);
  border-radius: 4px;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--hover);
}

.features .features-item:hover h3 a {
  color: var(--hover);
}

/*=================================================================*/
/*                      BLOG                              
/*=================================================================*/
.blog-item{
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--color), transparent 90%);
  box-shadow: 0 0 8px hsla(248, 98%, 57%, 0.265);
  border-radius: 10px;
}

.blog-item .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.blog-item .thumb img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-item .thumb:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-item .category {
  background: var(--hover);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  padding: 2px 8px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.blog-item .meta {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #18d26e;
}
.blog-item .meta li:not(:last-child) {
  margin-right: 1rem;
}
.blog-item .meta li:after {
  content: '';
  background: #18d26e;
  display: inline-block;
  height: 5px;
  margin-left: 1rem;
  vertical-align: middle;
  width: 5px;
}
.blog-item .meta li:last-child::after {
  display: none;
}
.Blogdi{
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}



.client-item {
  min-height: 80px;
  position: relative
}

.client-item:not(:last-child) {
  padding-right: 50px
}

.client-item .inner {
  text-align: left;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%
}

.client-item img {
  display: inline-block
}

clients-carousel {
  padding: 20px 0;
}

.client-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: auto;
}

.client-logo {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.swiper-button-prev,
.swiper-button-next {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
}

@media (max-width: 640px) {
  .client-logo {
      max-width: 120px;
      max-height: 60px;
  }

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

/*=================================================================*/
/*                      Pricing                              
/*=================================================================*/
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .pricing-card {
      background-color: var(--price);
      padding: 20px;
      border-radius: 10px;
      text-align: left;
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pricing-card h3 img {
      width: 24px;
      height: 24px;
    }

    .pricing-card ul {
      list-style: none;
      margin: 20px 0;
      color: #A9B7B6;
    }

    .pricing-card ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
    }

    .pricing-card ul li:before {
      content: "⚡";
      position: absolute;
      left: 0;
      color: #00C4B4;
    }

    .pricing-card .price {
      font-size: 2rem;
      font-weight: bold;
      margin: 20px 0;
    }

    .pricing-card .note {
      font-size: 0.9rem;
      color: #A9B7B6;
    }

    .pricing-card .description {
      font-size: 0.95rem;
      color: #A9B7B6;
      margin-top: 10px;
    }

    .special-offer {
      text-align: center;
      margin: 40px 0;
    }

    .special-offer h3 {
      font-size: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .special-offer h3 img {
      width: 24px;
      height: 24px;
    }

    .special-offer p {
      font-size: 1rem;
      color: #A9B7B6;
      margin: 10px 0;
    }

    .button-p {
      display: flex;
      gap: 10px;
      justify-content: center;
  }

  .whatsapp-button {
      padding: 10px 20px;
      background-color: #25D366; 
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-family: Arial, sans-serif;
      font-size: 16px;
      text-align: center;
  }
  .whatsapp-button:hover {
      background-color: #20b858; 
      background: color-mix(in srgb, #019538 90%, white 15%);
      box-shadow: 0 0 20px hsl(130, 100%, 65%);
  }

  /* Book a Call বাটনের স্টাইল */
  .book-button {
      padding: 10px 20px;
      background-color: var(--color); 
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-family: Arial, sans-serif;
      font-size: 16px;
      text-align: center;
  }
  .book-button:hover {
      background-color: var(--hover); 
      background: color-mix(in srgb, var(--hover) 90%, white 15%);
      box-shadow: 0 0 20px hsl(248, 100%, 80%);
  }
    @media (max-width: 768px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .pricing-card h3 {
        font-size: 1.3rem;
      }

      .pricing-card .price {
        font-size: 1.8rem;
      }

      .special-offer h3 {
        font-size: 1.3rem;
      }

      .buttons {
        flex-direction: column;
        gap: 10px;
      }

      .chat-button, .book-button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
    }
/*=================================================================*/
/*                      Faq                              
/*=================================================================*/
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .header {
      text-align: center;
      margin-bottom: 40px;
    }

    .header h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .faq-item {
      padding: 10px;
    }

    .faq-item h3 {
      font-size: 1.2rem;
      color: #C9D6D5;
      margin-bottom: 10px;
    }

    .faq-item p {
      font-size: 0.95rem;
      color: #A9B7B6;
      gap: 10px;
    }

    .still-thinking {
      margin: 40px ;
      text-align: center;
      font-size: 1rem;
      color: #A9B7B6;
    }
    .still-thinking p {
      display: inline-flex;
      align-items: center;
      gap: 24px; 
    }
    .still-thinking a {
      color: var(--white);
      text-decoration: none;
    }

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

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .faq-item h3 {
        font-size: 1.1rem;
      }

      .faq-item p {
        font-size: 0.9rem;
      }

      .chat-button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
    }







    .hero {
      position: relative;
      height: 300px;
      background: linear-gradient(90deg, #865AF5, #4C1EBE);
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .hero .photos {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      gap: 10px;
    }

    .hero .photos img {
      width: 100px;
      height: 150px;
      object-fit: cover;
      border: 2px solid #fff;
      border-radius: 5px;
      transform: rotate(-10deg);
    }
  
    .hero .photos img:nth-child(2) {
      transform: rotate(5deg);
    }

    .hero .photos img:nth-child(3) {
      transform: rotate(-5deg);
    }
    .hero .photos img:nth-child(4) {
      transform: rotate(-8deg);
    }
    .hero .photos img:nth-child(5) {
      transform: rotate(8deg);
    }
    .hero .photos img:nth-child(6) {
      transform: rotate(3deg);
    }

    .content {
      text-align: center;
    }

    .profile {
      background-color: #2A3435;
      padding: 20px;
      /* border-radius: 10px; */
      margin-top: -100px;
      position: relative;
      z-index: 1;
    }

    .profile img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .profile h1 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      margin-top: 16px;
    }

    .profile p {
      font-size: 1rem;
      color: #A9B7B6;
      margin-bottom: 20px;
    }

    .social-links a {
      background-color: #3A4445;
      color: #fff;
      padding: 10px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .contact-buttons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 20px 0;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #A9B7B6;
      margin: 20px 0;
    }


    .footer-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .footer-nav a {
      color: #A9B7B6;
      text-decoration: none;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .hero {
        height: 200px;
      }

      .hero .photos img {
        width: 80px;
        height: 120px;
      }

      .profile {
        margin-top: -80px;
      }

      .large-text {
        font-size: 3rem;
      }

      .social-links,
      .contact-buttons {
        flex-wrap: wrap;
      }
    }



    .loading, .error-message, .sent-message {
    display: none;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
  }
  .loading {
    background-color: #f0f0f0;
    color: #333;
  }
  .error-message {
    background-color: #f8d7da;
    color: #721c24;
  }
  .sent-message {
    background-color: #d4edda;
    color: #155724;
  }





  /* Toast Notification Styles */
        .toast {
            visibility: hidden;
            min-width: 300px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 16px;
            position: fixed;
            z-index: 1;
            bottom: 30px;
            left: 30px; /* Changed from right to left */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: visibility 0s, opacity 0.5s linear;
            opacity: 0;
        }

        .toast.show {
            visibility: visible;
            opacity: 1;
        }

        .toast img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .toast a {
            color: #00b7ff;
            text-decoration: none;
            font-weight: bold;
        }

        .toast a:hover {
            text-decoration: underline;
        }

        /* Close Button */
        .toast .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
        }