/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 *
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --sky-blue-crayola: hsl(188, 64%, 60%);
  --raisin-black_90: hsla(240, 8%, 12%, 0.9);
  --raisin-black-1: hsl(240, 8%, 17%);
  --raisin-black-2: hsl(240, 8%, 12%);
  --majorelle-blue: hsl(241, 77%, 63%);
  --blue-ryb_80: hsla(241, 88%, 60%, 0.8);
  --bittersweet: hsl(0, 100%, 69%);
  --eerie-black: hsl(0, 0%, 13%);
  --ghost-white: hsl(230, 60%, 98%);
  --light-gray: hsl(0, 0%, 80%);
  --slate-gray: hsl(225, 8%, 48%);
  --cool-gray: hsl(225, 11%, 59%);
  --gainsboro: hsl(217, 16%, 90%);
  --mustard: hsl(47, 100%, 69%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(240, 5%, 26%);
  --jet: hsl(0, 0%, 21%);

  /**
   * gradient
   */

  --gradient: radial-gradient(ellipse at center, hsla(0, 0%, 0%, 0.25), transparent 80%);

  /**
   * typography
   */

  --ff-dm-sans: 'DM Sans', sans-serif;

  --fs-1: 4rem;
  --fs-2: 3.5rem;
  --fs-3: 2.4rem;
  --fs-4: 2.2rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.7rem;
  --fs-8: 1.5rem;
  --fs-9: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 100px;

  /**
   * shadow
   */

  --shadow-1: 0px 2px 50px hsla(223, 40%, 76%, 0.3);
  --shadow-2: 0px -2px 12px hsl(252, 29%, 93%);
  --shadow-3: 0px 4px 4px hsla(231, 20%, 49%, 0.06);
  --shadow-4: 0px 15px 30px hsla(210, 30%, 32%, 0.05);
  --shadow-5: 0px 15px hsla(241, 62%, 34%, 0.04);

  /**
   * radius
   */

  --radius-8: 8px;
  --radius-10: 10px;
  --radius-15: 15px;
  --radius-20: 20px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-dm-sans);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--slate-gray);
  font-size: 1.6rem;
  line-height: 1.75;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.section {
  padding-block: var(--section-padding);
}

.h1,
.h2 {
  letter-spacing: -2px;
}

.h1 {
  color: var(--black);
  font-size: var(--fs-1);
  line-height: 1.1;
}

.h2,
.h3 {
  color: var(--raisin-black-1);
}

.h2 {
  font-size: var(--fs-2);
  line-height: 1.2;
}

.h3 {
  font-size: var(--fs-3);
  line-height: 1.3;
  font-weight: var(--fw-500);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

:is(.h1, .h2) .has-before {
  display: inline-block;
}

:is(.h1, .h2) .has-before::before {
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--mustard);
  z-index: -1;
}

.btn {
  max-width: max-content;
  font-weight: var(--fw-700);
  height: 55px;
  display: flex;
  align-items: center;
  padding-inline: 50px;
  border-radius: var(--radius-10);
  overflow: hidden;
  transition: var(--transition-2);
}

.btn::before,
.btn::after {
  right: 0;
  width: 100%;
  height: 50%;
  transform: scaleX(0);
  background-color: var(--mustard);
  z-index: -1;
  transition: transform var(--transition-1);
}

.btn::before {
  top: 0;
  transform-origin: left;
}

.btn::after {
  top: 50%;
  transform-origin: right;
}

.btn:is(:hover, :focus)::before,
.btn:is(:hover, :focus)::after {
  transform: scaleX(1);
}

.btn:is(:hover, :focus)::before {
  transform-origin: right;
}

.btn:is(:hover, :focus)::after {
  transform-origin: left;
}

.btn-primary {
  background-color: var(--majorelle-blue);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) {
  color: var(--raisin-black-1);
}

.btn-secondary {
  background-color: var(--mustard);
  color: var(--raisin-black-1);
  gap: 15px;
}

.btn-secondary::before,
.btn-secondary::after {
  background-color: var(--sky-blue-crayola);
}

.btn-secondary:is(:hover, :focus) {
  color: var(--white);
}

.social-list {
  display: flex;
  margin-top: 15px;
}

.w-100 {
  width: 100%;
}

.section-subtitle {
  color: var(--cool-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.section-subtitle::before {
  position: static;
  width: 12px;
  height: 12px;
  background-color: var(--mustard);
  display: inline-block;
  border-radius: 50%;
  margin-inline-end: 10px;
}

.text-center {
  text-align: center;
}

.section-title {
  margin-block: 30px 50px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/
/* 
.header .btn {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 25px;
  transition: padding var(--transition-1);
  z-index: 4;
}

.header.active {
  background-color: var(--white);
  padding-block: 15px;
  box-shadow: var(--shadow-1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--raisin-black-1);
  font-size: 3.6rem;
  font-weight: var(--fw-700);
}

.nav-open-btn {
  background-color: var(--white);
  color: var(--eerie-black);
  font-size: 35px;
  padding: 10px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-10);
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--raisin-black-2);
  color: var(--white);
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 1;
  transform: translateX(100%);
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(0);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 60px;
}

.navbar .logo {
  color: var(--white);
}

.nav-close-btn {
  color: var(--white);
  font-size: 30px;
  transition: var(--transition-1);
}

.nav-close-btn:is(:hover, :focus) {
  color: var(--bittersweet);
}

.navbar-item:not(:last-child) {
  border-block-end: 1px solid var(--jet);
}

.navbar-link {
  font-size: var(--fs-9);
  font-weight: var(--fw-700);
  padding-block: 15px;
  text-transform: uppercase;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--mustard);
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--raisin-black_90);
  transition: var(--transition-2);
  opacity: 0;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}



.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  z-index: 5; 
  position: relative;
}
    */

/* .header .btn { display: none; } */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 25px;
  transition: padding var(--transition-1);
  z-index: 4;
}

.header.active {
  background-color: var(--white);
  padding-block: 15px;
  box-shadow: var(--shadow-1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--raisin-black-1);
  font-size: 3.6rem;
  font-weight: var(--fw-700);
}

.nav-open-btn {
  background-color: var(--white);
  color: var(--eerie-black);
  font-size: 35px;
  padding: 10px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-10);
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--raisin-black-2);
  color: var(--white);
  max-width: 300px;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 1;
  transform: translateX(100%);
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(0);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 60px;
}

.navbar .logo { color: var(--white); }

.nav-close-btn {
  color: var(--white);
  font-size: 30px;
  transition: var(--transition-1);
}

.nav-close-btn:is(:hover, :focus) { color: var(--bittersweet); }

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--jet); }

.navbar-link {
  font-size: var(--fs-9);
  font-weight: var(--fw-700);
  padding-block: 15px;
  text-transform: uppercase;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--mustard); }

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--raisin-black_90);
  transition: var(--transition-2);
  opacity: 0;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}
 


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hi {
  font-size: 35px;
  font-weight: normal;
  font-family: "Cedarville Cursive", cursive;
}

.hero {
  padding-block-start: calc(var(--section-padding) + 60px);
}

.hero .container {
  display: grid;
  gap: 70px;
}

.hero-text {
  font-size: var(--fs-7);
  margin-block: 30px 35px;
}

.hero-content :is(.wrapper, .hero-btn) {
  display: flex;
  align-items: center;
}

.hero-content .wrapper {
  flex-wrap: wrap;
  gap: 30px;
  margin-block-end: 30px;
}

.hero-btn {
  gap: 15px;
  color: var(--raisin-black-1);
  transition: var(--transition-1);
}

.hero-btn:is(:hover, :focus) {
  color: var(--majorelle-blue);
}

.hero-btn ion-icon {
  font-size: 24px;
}

.hero-btn .span {
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.hero .social-link .span {
  display: none;
}

.hero .social-list {
  gap: 12px;
}

.hero .social-link {
  background-color: var(--white);
  color: var(--color);
  padding: 12px;
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-8);
  transition: var(--transition-2);
}

.hero .social-link:is(:hover, :focus) {
  background-color: var(--color);
  color: var(--white);
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service {
  background-color: var(--ghost-white);
}

.service .section-title {
  margin-block: 30px 60px;
}

.service-card,
.service .link-card {
  padding: 45px;
  border-radius: var(--radius-20);
}

.service-card {
  height: 100%;
  background-color: var(--white);
  padding-block-end: 40px;
  border-block-end: 3px solid transparent;
  box-shadow: var(--shadow-3);
  transition: var(--transition-1);
}

.service-card:is(:hover, :focus-within) {
  border-color: hsl(var(--color));
}

.service-card .card-icon {
  max-width: max-content;
  padding: 15px;
  border-radius: var(--radius-8);
  background-color: hsla(var(--color), 0.15);
  margin-block-end: 25px;
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within) .card-icon {
  transform: rotateY(0.5turn);
}

.service-card .card-title {
  transition: var(--transition-1);
}

.service-card .card-title:is(:hover, :focus-within) {
  color: hsl(var(--color));
}

.service .link-card {
  background-color: hsla(var(--color), 0.15);
  text-align: center;
}

.service .link-card .span {
  color: var(--raisin-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  margin-block-end: 20px;
  transition: var(--transition-1);
}

.service .link-card:is(:hover, :focus) .span {
  color: var(--majorelle-blue);
}

.service .link-card ion-icon {
  color: var(--majorelle-blue);
  font-size: 150px;
  transform: rotate(-45deg);
  margin: -25px auto;
  transition: var(--transition-1);
}

.service .link-card:is(:hover, :focus) ion-icon {
  color: hsl(var(--color));
}





/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.feature .container,
.feature-list {
  display: grid;
  gap: 60px;
}

.feature-card .card-icon {
  background-color: hsla(var(--color), 0.15);
  font-size: 24px;
  max-width: max-content;
  padding: 18px;
  border-radius: 50%;
  margin-block-end: 20px;
  transition: var(--transition-2);
}

.feature-card .card-icon ion-icon {
  color: hsl(var(--color));
  transition: var(--transition-1);
}

.feature-card .card-text {
  color: var(--cool-gray);
  font-size: var(--fs-7);
  margin-block-start: 10px;
}

.feature-card:is(:hover, :focus) .card-icon {
  box-shadow: inset 0 0 0 30px hsla(var(--color), 0.9);
}

.feature-card:is(:hover, :focus) .card-icon ion-icon {
  color: var(--white);
}





/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project {
  background-color: var(--ghost-white);
}

.project .section-title {
  margin-block: 20px 60px;
}

.filter-list {
  max-width: 90%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-block-end: 70px;
}

.filter-btn {
  color: var(--cool-gray);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
  padding: 11px 20px;
  border-radius: var(--radius-8);
  transition: var(--transition-1);
}

.filter-btn:is(:hover, :focus) {
  color: var(--raisin-black-1);
}

.filter-btn.active {
  background-color: var(--white);
  color: var(--raisin-black-1);
  box-shadow: var(--shadow-4);
}

.project-card {
  position: relative;
  border-radius: var(--radius-15);
  overflow: hidden;
}

.project-card .card-banner img {
  transition: var(--transition-2);
}

.project-card:is(:hover, :focus-within) .card-banner img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.project-card .card-content {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  background-color: var(--mustard);
  border-radius: var(--radius-10);
  padding: 30px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(calc(-50% + 20px));
  transition: var(--transition-2);
}

.project-card .card-tag {
  color: var(--raisin-black-1);
  font-size: var(--fs-9);
}

.project-card:is(:hover, :focus-within) .card-content {
  opacity: 1;
  transform: translateY(-50%);
}





/*-----------------------------------*\
  #NEWSLETTER
\*-----------------------------------*/

.newsletter {
  color: var(--white);
}

.newsletter .container {
  display: grid;
  gap: 50px;
}

.newsletter-banner {
  max-width: max-content;
}

.newsletter .section-subtitle {
  color: var(--light-gray);
}

.newsletter .section-title {
  color: var(--white);
  margin-block: 20px 35px;
}

.email-field {
  background-color: var(--majorelle-blue);
  color: var(--white);
  font-size: var(--fs-9);
  min-height: 60px;
  padding-inline: 20px;
  border-radius: var(--radius-8);
  margin-block-end: 20px;
  box-shadow: var(--shadow-5);
  outline: 3px solid transparent;
  outline-offset: 0;
  transition: var(--transition-1);
}

.email-field:focus {
  outline-color: var(--white);
}

.email-field::placeholder {
  color: inherit;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  background-color: var(--ghost-white);
}

.blog .section-title {
  margin-block: 20px 70px;
}

.blog-list {
  display: grid;
  gap: 40px;
}

.blog-card .card-banner {
  border-radius: var(--radius-20);
  overflow: hidden;
  margin-block-end: 20px;
}

.blog-card.large .card-banner {
  margin-block-end: 40px;
}

.blog-card.large .card-title {
  font-size: var(--fs-2);
  line-height: 1.2;
  margin-block-end: 20px;
}

.blog-card .card-text {
  color: var(--cool-gray);
}

.blog-card .card-banner img {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus-within) .card-banner img {
  transform: scale(1.1);
}

.blog-card .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-block-end: 20px;
}

.blog-card .tag {
  color: var(--majorelle-blue);
  font-size: var(--fs-9);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  transition: var(--transition-1);
}

.blog-card .tag:is(:hover, :focus) {
  color: var(--raisin-black-1);
}

.blog-card .publish-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cool-gray);
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.blog-card .publish-date ion-icon {
  font-size: 18px;
  --ionicon-stroke-width: 40px;
}

.blog-card .publish-date:is(:hover, :focus) {
  color: var(--raisin-black-1);
}

.blog-card .card-title {
  color: var(--raisin-black-1);
  font-size: var(--fs-4);
  letter-spacing: -1px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--majorelle-blue);
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--raisin-black-1);
  color: var(--cool-gray);
}

.footer-top {
  padding-block-end: 60px;
  display: grid;
  gap: 50px;
}

.footer-list-title {
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  margin-block-end: 20px;
}

.footer-text {
  margin-block-end: 30px;
}

.footer .social-list {
  gap: 12px;
}

.footer .social-link {
  background-color: var(--onyx);
  padding: 14px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.footer .social-link:is(:hover, :focus) {
  background-color: var(--majorelle-blue);
  color: var(--white);
}

.footer-link {
  font-size: var(--fs-8);
  margin-block-start: 15px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
  color: var(--mustard);
}

.insta-post {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.insta-card {
  position: relative;
  border-radius: var(--radius-10);
  overflow: hidden;
}

.insta-card .card-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  background-color: var(--blue-ryb_80);
  color: var(--white);
  font-size: 25px;
  opacity: 0;
  transition: var(--transition-1);
}

.insta-card:is(:hover, :focus-within) .card-content {
  opacity: 1;
}

.footer-bottom {
  color: var(--white);
  font-size: var(--fs-8);
  padding-block: 40px;
  border-block-start: 1px solid var(--onyx);
}

.copyright {
  margin-block-end: 15px;
}

.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
}

.footer-bottom-link {
  transition: var(--transition-1);
}

.footer-bottom-link:is(:hover, :focus) {
  color: var(--mustard);
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: var(--majorelle-blue);
  color: var(--white);
  font-size: 18px;
  padding: 16px;
  border-radius: var(--radius-8);
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.back-top-btn.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
}

.back-top-btn::after {
  bottom: -12px;
  right: 0;
  width: 100%;
  height: 10px;
  background-image: var(--gradient);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .container {
    max-width: unset;
  }




  /**
   * PROJECT
   */

  .project-card .card-content {
    max-width: max-content;
    width: calc(100% - 40px);
    left: 50%;
    right: auto;
    padding: 50px 80px;
    transform: translate(-50%, calc(-50% + 20px));
  }

  .project-card:is(:hover, :focus-within) .card-content {
    transform: translate(-50%, -50%);
  }

  .project-card .card-title {
    margin-block-end: 10px;
  }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 3.8rem;
    --fs-7: 1.8rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .btn {
    height: 60px;
  }

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * HERO
   */

  .hero .container {
    gap: 120px;
  }

  .hero .wrapper {
    gap: 50px;
    margin-block-end: 60px;
  }

  .hero .social-link .span {
    display: block;
    font-size: var(--fs-9);
    color: var(--raisin-black-1);
    font-weight: var(--fw-700);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-2);
  }

  .hero .social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: none;
    box-shadow: none;
  }

  .hero .social-link:is(:hover, :focus) {
    background: unset;
    color: var(--color);
  }

  .hero .social-link:is(:hover, :focus) .span {
    color: var(--color);
  }



  /**
   * FEATURE
   */

  .feature-banner {
    max-width: max-content;
  }

  .feature-list {
    gap: 30px;
  }

  .feature-card {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
  }

  .feature-card .card-icon {
    margin-block-end: 0;
  }

  .feature-card .card-text {
    max-width: 32ch;
  }



  /**
   * PROJECT
   */

  .project .grid-list>li:first-child {
    grid-column: 1 / 3;
  }



  /**
   * NEWSLETTER
   */

  .newsletter-form {
    position: relative;
  }

  .email-field {
    margin-block-end: 0;
  }

  .newsletter-form .btn-secondary {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    height: auto;
    padding-inline: 25px;
  }



  /**
   * BLOG
   */

  .blog-card:not(.large) {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .blog-card:not(.large) .card-banner {
    margin-block-end: 0;
    flex-shrink: 0;
  }

  .blog-card .card-title {
    --fs-4: 2.6rem;
  }



  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    text-align: center;
  }

  .footer-bottom-list {
    justify-content: center;
  }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }

  .btn {
    height: 70px;
  }

  .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * HEADER
   */

  .header {
    padding-block-start: 47px;
  }

  .nav-open-btn,
  .overlay,
  .navbar .wrapper {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-item:not(:last-child) {
    border: none;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-link {
    position: relative;
    color: var(--cool-gray);
    text-transform: capitalize;
    font-size: unset;
    font-weight: var(--fw-500);
  }

  .navbar-link:is(:hover, :focus) {
    color: var(--raisin-black-1);
  }

  .navbar-link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 5px;
    background-color: var(--majorelle-blue);
    transition: var(--transition-1);
  }

  .navbar-link:is(:hover, :focus)::before {
    width: 100%;
  }

  .header .btn {
    display: inline-flex;
  }

  .header .btn::before,
  .header .btn::after {
    background-color: var(--raisin-black-1);
  }

  .header .btn:is(:hover, :focus) {
    color: var(--white);
  }



  /**
   * HERO
   */

  .hero {
    background-image: linear-gradient(to right, var(--white) 79%, var(--mustard) 79%);
    overflow: hidden;
  }

  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero .wrapper {
    flex-wrap: nowrap;
  }

  .hero .btn,
  .hero-btn .span {
    flex-shrink: 0;
  }

  .hero-banner {
    margin-inline-end: -140px;
  }



  /**
   * FEATURE
   */

  .feature .container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }



  /**
   * PROJECT
   */

  .filter-btn {
    --fs-9: 1.8rem;
    padding: 20px 25px;
  }



  /**
   * NEWSLETTER
   */

  .newsletter .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
  }

  .newsletter-banner {
    order: 1;
    margin-inline-start: auto;
  }

  .email-field {
    min-height: 80px;
    padding-inline: 40px;
  }

  .newsletter-form .btn-secondary {
    top: 10px;
    right: 10px;
    bottom: 10px;
  }



  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 70px;
  }

  .blog-list>li:first-child {
    grid-row: 1 / 4;
  }

  .blog-card:not(.large) .wrapper {
    gap: 10px;
    flex-wrap: nowrap;
    margin-block-end: 10px;
  }

  .blog-card:not(.large) .publish-date {
    flex-shrink: 0;
    font-size: var(--fs-9);
    gap: 5px;
  }

  .blog-card .card-title {
    --fs-4: 1.8rem;
  }



  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 0.5fr 0.5fr 0.9fr;
    padding-block: 120px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    margin-block-end: 0;
  }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1140px;
  }

  .section-title.text-center {
    max-width: 20ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .container {
    padding-inline: 30px;
  }

  .navbar-list {
    gap: 50px;
  }



  /**
   * HERO
   */

  .hero-content {
    display: flex;
    flex-direction: column;
    margin-block-start: 50px;
  }

  .hero-text {
    margin-block: 40px 45px;
  }

  .hero .wrapper {
    margin-block-end: auto;
  }

  .hero-banner {
    margin-inline-end: -250px;
    min-width: max-content;
  }



  /**
   * SERVICE
   */

  .service .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card .h3 {
    --fs-3: 2rem;
  }



  /**
   * PROJECT
   */

  .filter-btn {
    padding-inline: 40px;
  }



  /**
   * BLOG
   */

  .blog-list {
    column-gap: 35px;
  }

  .blog-card.large {
    padding-inline-end: 35px;
    border-inline-end: 1px solid var(--gainsboro);
  }

  .blog-card:not(.large) .publish-date {
    --fs-9: 1.6rem;
  }

  .blog-card:not(.large) .wrapper {
    gap: 25px;
    margin-block-end: 20px;
  }

  .blog-card .card-title {
    --fs-4: 2.4rem;
  }

}

.need-help {
  justify-content: right;
}

footer {
  background: #111;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff9800;
}

.footer-contact p,
.footer-contact a {
  color: #ddd;
}

.footer-newsletter input {
  padding: 10px;
  width: 70%;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
}

.footer-newsletter button {
  padding: 10px 15px;
  background: #ff9800;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: #ddd;
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff9800;
}





#revSecPro_X9B {
  padding: 80px 30px;
  background: #f4f9fb;
  font-family: 'Segoe UI', sans-serif;
}

.revContainerPro_X9B {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.revContainerPro_X9B.revVisiblePro_X9B {
  opacity: 1;
  transform: translateY(0);
}

.revTextPro_X9B {
  flex: 1;
  min-width: 320px;
}

.revTextPro_X9Bh2 {
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 20px;
}

.revTextPro_X9B p {
  font-size: 1.7rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.revStatsPro_X9B {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.revStatsPro_X9B h3 {
  font-size: 3rem;
  color: #29c7c2;
  margin: 0;
  transition: all 0.4s ease;
}

.revStatsPro_X9B p {
  font-size: 1.7rem;
  color: #333;
  margin-top: 5px;
}


@media (max-width: 768px) {
  .revContainerPro_X9B {
    flex-direction: column;
    text-align: center;
  }

  .revStatsPro_X9B {
    justify-content: center;
  }
}





#ads-tab-section {
  padding: 60px 20px;
  background: #f0f4fa;
}

.ads-tab-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.ads-tab-buttons {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ads-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ads-tab-btn img {
  width: 28px;
  height: 28px;
}

.ads-tab-btn.active {
  background: #004080;
  color: white;
  border-color: #004080;
  transform: translateX(5px);
}

.ads-tab-content {
  flex: 2;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 300px;
  overflow: hidden;
  size: 1.5rem;
}

.ads-tab-panel {
  display: none;
  animation: fadeIn 0.6s ease;
}

.ads-tab-panel.active {
  display: block;
}

.ads-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.ads-image:hover {
  transform: scale(1.02);
}

.ads-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #003366;
}

.ads-info p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ads-tab-container {
    flex-direction: column;
  }

  .ads-tab-buttons {
    flex-direction: row;
    justify-content: space-around;
  }

  .ads-tab-btn {
    flex: 1;
    justify-content: center;
  }
}

.pika {
  size: 1.rem;
}






* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}




img,
iframe,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}









#vn-metrics-section {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Helvetica Neue', sans-serif;
}


.vn-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}


.vn-left-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.vn-stats-grid {
  flex: 1 1 40%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  min-width: 300px;
}


.vn-tagline {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  color: #111;
}

.vn-title {
  font-size: 36px;
  font-weight: 800;
  margin: 20px 0;
  color: #000;
}

.vn-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  max-width: 550px;
}

.vn-btn {
  display: inline-block;
  margin-top: 25px;
  background: #ff007f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  text-decoration: none;
}

.vn-btn:hover {
  background: #e60073;
}

.vn-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  flex: 1;
  min-width: 300px;
}

.vn-stat-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vn-stat-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.vn-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.vn-stat-label {
  margin-top: 5px;
  font-weight: 600;
  font-size: 16px;
}

.vn-underline {
  height: 4px;
  width: 100%;
  margin-top: 8px;
  border-radius: 2px;
}

.vn-underline.pink {
  background: #ff007f;
}

.vn-underline.orange {
  background: #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
  .vn-container {
    flex-direction: column;
  }

  .vn-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vn-container {
    flex-direction: column;
    gap: 40px;
  }

  .vn-left-content,
  .vn-stats-grid {
    flex: 1 1 100%;
  }
}


#fusion-footer-section {
  background: linear-gradient(to right, #0f0f0f, #1d0a0a);
  color: #fff;
  padding: 100px 40px 40px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Call To Action */
.fusion-footer-cta {
  text-align: center;
  margin-bottom: 60px;
}

.fusion-footer-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  animation: fadeUp 1s ease-in-out;
}

.footer-arrow {
  font-size: 2rem;
  display: inline-block;
  margin-left: 12px;
  animation: moveArrow 2s infinite ease-in-out;
}

/* Social Icons */
.fusion-social-links {
  margin-top: 20px;
}

.fusion-social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.fusion-social-links a:hover {
  color: #ff2956;
  transform: scale(1.3) rotate(10deg);
}

/* Columns */
.fusion-footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  animation: fadeUp 1.5s ease-in-out;
}

.fusion-footer-contact,
.fusion-footer-addresses,
.fusion-footer-about {
  flex: 1;
  min-width: 280px;
}

.fusion-footer-contact h4,
.fusion-footer-addresses h4,
.fusion-footer-about h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff4060;
  margin-bottom: 10px;
}

.fusion-footer-contact p,
.fusion-footer-addresses p,
.fusion-footer-about p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.7;
}

.fusion-footer-learn-more {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.fusion-footer-learn-more:hover {
  color: #ff5f7b;
}

/* Bottom Line */
.fusion-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* Animations */
@keyframes moveArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fusion-footer-cta h2 {
    font-size: 2rem;
  }

  .fusion-footer-columns {
    flex-direction: column;
    align-items: center;
  }
}


#impactPowerWrap {
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  padding: 80px 5% 100px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.impactPowerContainer {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

/* Intro Text Styling */
.impactIntroBlock {
  animation: fadeInUp 1s ease-out;
}

.impactTag {
  font-size: 14px;
  font-weight: bold;
  color: #ff3c8f;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.impactHeadline {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.highlightLine {
  background: linear-gradient(to right, #ff3c8f, #f7971e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impactDesc {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.impactButton {
  background: #ff3c8f;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.impactButton:hover {
  background: #f7971e;
}

/* Stats Block */
.impactStatsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  animation: fadeInRight 1.2s ease-out;
}

.impactStatBox {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.impactStatBox:hover {
  transform: translateY(-8px);
}

.impactStatBox h3 {
  font-size: 38px;
  color: #000;
  margin: 0;
}

.impactStatBox p {
  color: #333;
  font-size: 16px;
  margin-top: 5px;
}

.statLine {
  display: block;
  height: 4px;
  width: 100px;
  margin-top: 15px;
  border-radius: 5px;
}

.pinkLine {
  background-color: #ff3c8f;
}

.orangeLine {
  background-color: #f7971e;
}

.yellowLine {
  background-color: #ffc107;
}

.tealLine {
  background-color: #20c997;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .impactPowerContainer {
    grid-template-columns: 1fr;
  }

  .impactStatsGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .impactStatsGrid {
    grid-template-columns: 1fr;
  }

  .impactHeadline {
    font-size: 32px;
  }
}


/* ========== MODERN METRIC SECTION ========== */
#pulseMetricsArena {
  background-color: #f8fafc;
  padding: 100px 6% 80px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.metricGlowWrap {
  max-width: 1180px;
  margin: auto;
  animation: fadeSlideUp 1s ease-out;
}

.metricGlideTitle {
  font-size: 40px;
  font-weight: 750;
  color: #0f172a;
  margin-bottom: 14px;
}

.metricSubline {
  color: #64748b;
  font-size: 20px;
  margin-bottom: 60px;
}

.metricFlexStats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.metricCardBlock {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-width: 200px;
  max-width: 250px;
  flex: 1;
}

.metricCardBlock:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 35px rgba(14, 165, 233, 0.25);
}

.metricDigitGlow {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.metricLabelText {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
}

/* ========== ANIMATION ========== */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Logo Image */
.logo-img {
  width: 75px;
  height: 50px;
  /* Width of the logo image */

  /* Height of the logo image */
  object-fit: contain;
  /* Ensures aspect ratio is maintained */
}

/* Optional: Adjust size on larger screens */
@media (min-width: 768px) {
  .logo-img {
    width: 75px;
    /* Increase size on desktop */
    height: 75px;
    /* Increase size on desktop */
  }
}











#fusionBookProSection {
  padding: 80px 40px;
  background: linear-gradient(120deg, #f4f5f7, #e6ecf3);
  overflow: hidden;
}

.fusionBookProContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
  animation: slideUp 1s ease forwards;
}

.fusionBookProImageBox {
  flex: 1;
  position: relative;
  max-width: 500px;
  text-align: center;
  transition: transform 0.5s ease;
}

.fusionBookProImageBox:hover {
  transform: scale(1.03);
}

.fusionBookProImage {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.fusionBookProBadge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ff6a45;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(255, 106, 69, 0.4);
}

.fusionBookProContent {
  flex: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeRight 1s ease forwards;
}

.fusionBookProTitle {
  font-size: 2.0rem;
  font-weight: 800;
  color: #1e1e2f;
  margin-bottom: 10px;
}

.fusionBookProSubTitle {
  font-size: 2.1rem;
  color: #7d7f88;
  margin-bottom: 25px;
}

.fusionBookProDescription {
  font-size: 1.5 rem;
  color: #3b3e47;
  margin-bottom: 25px;
  line-height: 1.7;
}

.fusionBookProHighlights {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.fusionBookProHighlights li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #2b2c34;
}

.fusionBookProBtn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 126, 95, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fusionBookProBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 126, 95, 0.6);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fusionBookProContainer {
    flex-direction: column;
    gap: 40px;
  }

  .fusionBookProImageBox,
  .fusionBookProContent {
    max-width: 100%;
  }
}























.cool-button {
  position: relative;
  font-size: 16px;
  padding: 5px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #6e00ff, #b800ff);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(184, 0, 255, 0.5);
}

.cool-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 60%);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.cool-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(184, 0, 255, 0.8), 0 0 60px rgba(184, 0, 255, 0.3);
}

.cool-button:hover::before {
  top: -20%;
  left: -20%;
  opacity: 1;
}















.fusion-visual-zone {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Videos */
.fusion-visual-videos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.fusion-vid-horizontal {
  width: 400px;
  max-width: 90%;
  height: 225px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.fusion-vid-vertical {
  width: 150px;
  max-width: 90%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.fusion-vid-horizontal:hover,
.fusion-vid-vertical:hover {
  transform: scale(1.05);
}

/* Image Grid */
.fusion-visual-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  padding: 10px 0;
}

.fusion-visual-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fusion-visual-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.fusion-visual-item:hover img {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
















/* Base Styling */

.why-choose {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  padding: 0 30px;
  justify-content: space-between;
  align-items: center;
}

.text-side {
  flex: 1;
  min-width: 320px;
}

.text-side h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.text-side ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 2.5rem;
}

.text-side li {
  font-size: 1.6rem;
  /* Increased font size */
  margin-bottom: 1.5rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.text-side li:hover {
  color: #ff4d00;
}

/* Button Styling */
.shop-btn {
  background: #ff4d00;
  color: #fff;
  padding: 18px 40px;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 77, 0, 0.2);
}

.shop-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 77, 0, 0.3);
  background: #e44100;
}

/* Image Styling */
.image-side {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.image-side img {
  max-width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.image-side img:hover {
  transform: scale(1.05);
}

/* Scroll Banner */
.scroll-banner {
  width: 100%;
  background: #ff4d00;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 14px 0;
  z-index: 10;
}

.scroll-text {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Fade-in Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .text-side h2 {
    font-size: 3rem;
  }

  .text-side li {
    font-size: 1.4rem;
  }

  .scroll-text {
    font-size: 1rem;
  }
}

/* New styling for split heading */
/* Split heading with reduced gap */
.split-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.95;
  /* reduced gap */
  margin-bottom: 2rem;
}

.split-heading .top-text {
  align-self: flex-start;
  text-align: left;
  width: 100%;
  margin-bottom: -8px;
  /* tightens the space */
}

.split-heading .bottom-text {
  align-self: flex-end;
  text-align: right;
  width: 100%;
}











.promo-section {
  padding: 100px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.promo-content {
  max-width: 1300px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.promo-text {
  flex: 1;
  min-width: 320px;
  padding-right: 40px;
}

.promo-text h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.promo-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}

.promo-btn {
  background: #ff4d00;
  color: #fff;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 77, 0, 0.2);
}

.promo-btn:hover {
  background: #e44100;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 77, 0, 0.3);
}

.promo-image {
  flex: 1;
  min-width: 320px;
  text-align: right;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.promo-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .promo-text {
    padding: 0;
  }

  .promo-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .promo-text h2 {
    font-size: 2.5rem;
  }

  .promo-text p {
    font-size: 1.2rem;
  }
}




#dz-shop-btn-451.dz-shop-button-451 {
  margin-top: 15px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding: 0.8em 2.4em;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  /* black text initially */
  background: #fff;
  /* white background initially */
  border: 2px solid #000;
  /* black border */
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
  user-select: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  margin-top: 1.5rem;
}

#dz-shop-btn-451.dz-shop-button-451::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  border-radius: 2px;
  transition: width 0.4s ease, left 0.4s ease;
  will-change: width, left;
}

#dz-shop-btn-451.dz-shop-button-451:hover {
  color: #fff;
  /* text white on hover */
  background-color: #000;
  /* black background on hover */
  border-color: #000;
}

#dz-shop-btn-451.dz-shop-button-451:hover::before {
  width: 100%;
  left: 0;
}

#dz-shop-btn-451.dz-shop-button-451:active {
  transform: scale(0.97);
  transition-duration: 0.15s;
  background-color: #222;
  /* slightly lighter black on active */
  border-color: #222;
}

    /* Custom animations */
    @keyframes fadeInSlide {
      0% {
        opacity: 0;
        transform: translateY(50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-slideIn {
      animation: fadeInSlide 1.2s ease-out forwards;
    }

    .fusion-glow-btn {
      position: relative;
      transition: all 0.4s ease;
      overflow: hidden;
    }

    .fusion-glow-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(120deg, #00fff7, #ff00c8, #8eff00);
      transform: rotate(0deg);
      animation: spin 3s linear infinite;
      z-index: 0;
    }

    .fusion-glow-btn span {
      position: relative;
      z-index: 1;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .fusion-glow-btn:hover {
      transform: scale(1.05);
    }

    .fusion-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 70%);
      z-index: 0;
      pointer-events: none;
    }










    /* Root settings */
:root {
  --bg-black: #000;
  --text-white: #fff;
  --accent-orange: #ff4d00;
  --font-main: 'Poppins', sans-serif;
}

/* Layout */
#hero-sec-dznr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-black);
  color: var(--text-white);
  padding: 6rem 8%;
  overflow: hidden;
  font-family: var(--font-main);
}

/* Left text content */
.hero-content-dznr {
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

/* Heading with underline */
.hero-title-dznr {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.highlight-dznr {
  position: relative;
  display: inline-block;
  color: var(--text-white);
}

.highlight-dznr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 6px;
  background: var(--accent-orange);
  animation: underlineAnim 1s ease-out 0.8s forwards;
  border-radius: 3px;
}

/* Paragraph */
.hero-desc-dznr {
  font-size: 2.0rem;
  color: #cccccc;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

/* Button */
.cta-btn-dznr {
  background: var(--accent-orange);
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  color: var(--text-white);
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  transform: scale(0.95);
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-btn-dznr:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent-orange);
}

/* Right side image */
.hero-image-dznr {
  flex: 1;
  text-align: right;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1.2s ease-out 0.4s forwards;
}

.hero-image-dznr img {
  width: 90%;
  max-width: 450px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes underlineAnim {
  to {
    width: 100%;
  }
}










/* Container */
#hero_blackReveal_301 {
  position: relative;
  background: black;
  color: white;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* Moving Gradient */
.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, #00f2ff44, transparent 50%),
              radial-gradient(circle at 70% 70%, #ff00c844, transparent 50%);
  animation: bgMove 20s linear infinite;
  z-index: 0;
}

/* SVG Line */
.hero-svg-line {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.5s ease-out forwards;
  z-index: 1;
}

/* Content */
.hero-black-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-black-headline {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 20px;
}

.cursor {
  color: #00f2ff;
  font-weight: bold;
  animation: blink 1s infinite;
}

.hero-black-subheading {
  font-size: 1.7rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Button */
.hero-black-btn {
  display: inline-block;
  background: transparent;
  color: #00f2ff;
  border: 2px solid #00f2ff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 15px #00f2ff66;
}
.hero-black-btn:hover {
  background: #00f2ff;
  color: #000;
  box-shadow: 0 0 20px #00f2ff, 0 0 40px #00f2ff;
}

/* Animations */
@keyframes bgMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 768px) {
  .hero-black-headline {
    font-size: 2.4rem;
  }
  .hero-black-subheading {
    font-size: 1.1rem;
  }
}













 .fontkdsnf{
    font-weight: 400;
    /* font-size: 2.0rem; */
  }
  .djkb{
    font-weight: 300;
    /* font-size: 1.5rem; */
  }
/* Unique IDs and classes to avoid CSS conflicts */
#fusion-client-access {
  background: linear-gradient(to right, #1e1e2f, #2d2d44);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-portal-card {
  background: #ffffff10;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff20;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-portal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.client-portal-card h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.client-portal-card p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #cccccc;
}

.client-access-button {
  background-color: #6C5CE7;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
  position: relative;
  overflow: hidden;
}

.client-access-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.client-access-button:hover::after {
  left: 100%;
}

.client-access-button:hover {
  transform: scale(1.05);
  background-color: #8e7cf0;
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}




















.navbar {
  display: flex;
  justify-content: space-between;
}




.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}






















#fusion-advantages {
  position: relative;
  background: #12122b;
  color: #eee;
  padding: 80px 4%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fa-overlay {
  position: absolute;
  inset: 10px;
  background: rgba(20, 20, 50, 0.7);
  backdrop-filter: blur(14px);
  z-index: 0;
  border-radius: 4px;
}

.fa-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fa-title {
  font-size: 44px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #0fffc1;
}

.fa-subtitle {
  font-size: 20px;
  color: #a0a0b8;
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.fa-features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  max-width: 500px;
  text-align: left;
}

.fa-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-left: 8px;
  transition: background-color 0.3s ease;
  border-left: 4px solid transparent;
}

.fa-feature-item:hover {
  border-left-color: #0fffc1;
  background-color: rgba(15, 255, 193, 0.1);
  border-radius: 6px;
}

.fa-icon-circle {
  font-size: 36px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #00f0b1, #00a389);
  box-shadow: 0 0 15px #00f0b1aa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.fa-feature-text h3 {
  margin: 0 0 6px 0;
  font-weight: 600;
  color: #00e3a9;
}

.fa-feature-text p {
  margin: 0;
  color: #c0c0d0;
  font-size: 16px;
  line-height: 1.4;
}

.fa-button-wrap {
  display: flex;
  justify-content: flex-end;
  max-width: 500px;
  margin-left: auto;
}

.fa-btn {
  background: #00e3a9;
  color: #12122b;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 36px;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 6px 12px #00e3a9aa;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.fa-btn:hover {
  background-color: #009b74;
  box-shadow: 0 6px 18px #009b74cc;
}

/* Image & Glow */
.fa-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.fa-main-img {
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 255, 180, 0.3);
  position: relative;
  z-index: 2;
}

.fa-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 30%;
  right: 20%;
  background: radial-gradient(circle, #00e3a9aa 30%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 1;
  animation: fa-pulse 5s ease-in-out infinite;
}

/* Animations */
@keyframes fa-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 1; }
}

/* Responsive */
@media (max-width: 960px) {
  #fusion-advantages {
    grid-template-columns: 1fr;
    padding: 60px 4%;
    gap: 40px;
  }
  .fa-container {
    text-align: center;
  }
  .fa-button-wrap {
    justify-content: center;
    margin-top: 10px;
  }
  .fa-feature-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
  .fa-icon-circle {
    margin-bottom: 10px;
    box-shadow: 0 0 10px #00f0b1aa;
  }
  .fa-feature-text h3 {
    color: #0fffc1;
  }
  .fa-feature-text p {
    color: #b8d6d2;
  }
  .fa-image-wrapper {
    justify-content: center;
  }
  .fa-main-img {
    max-width: 300px;
  }
  .fa-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .fa-title {
    font-size: 32px;
  }
  .fa-subtitle {
    font-size: 16px;
  }
  .fa-btn {
    padding: 12px 28px;
    font-size: 16px;
  }
  .fa-main-img {
    max-width: 100%;
  }
}









.hero-visual {
  position: relative;
  width: 420px;
  height: 500px;
  margin: auto;
}

.glow-circle {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff9900, #ff007f, transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.main-image {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.main-image:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
}

/* Sub Images / Floating Info Boxes */
.sub-image {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: 20px;
  width: 140px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: transform 0.3s ease;
}

.sub-image img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

.sub-image:hover {
  transform: translateY(-5px);
}

/* Positioning */
.sub1 {
  top: 20px;
  right: -70px;
}
.sub2 {
  top: 150px;
  right: -70px;
}
.sub3 {
  top: 280px;
  right: -70px;
}


















.fusion-cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 32px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff007f, #ff9900);
  border-radius: 40px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(255, 105, 180, 0.3);
}

.fusion-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.4));
  transition: all 0.5s ease;
  z-index: 1;
}

.fusion-cta-button:hover::before {
  left: 100%;
}

.fusion-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 105, 180, 0.5);
}






















#linkedin-callout {
  padding: 5rem 4rem; /* large vertical & horizontal padding */
  background: white; /* changed from transparent to white */
}

#linkedin-callout .callout-glow {
  max-width: 72rem; /* 1152px max width */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9); /* mostly white with slight transparency */
  backdrop-filter: none; /* disable blur because bg is solid white */
  border: 1px solid #ff29c0; /* keep pink border for accent */
  border-radius: 1.5rem; /* rounded corners */
  padding: 3.5rem 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(255, 41, 192, 0.15); /* subtle pink shadow */
}

#linkedin-callout .callout-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255, 41, 192, 0.4); /* stronger pink glow */
}

#linkedin-callout h2 {
  font-size: 2.25rem; /* 36px */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #333; /* dark text for readability */
  max-width: 36rem; /* limit text width */
}
#linkedin-callout .callout-glow {
  flex-wrap: nowrap; /* prevent wrapping */
}

#linkedin-callout p {
  color: #666; /* medium gray for paragraph text */
  font-size: 1.425rem; /* 18px */
}

#linkedin-callout .callout-btn {
  background: linear-gradient(90deg, #ff9800, #ff2970);
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px; /* fully rounded */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 41, 192, 0.3);
}

#linkedin-callout .callout-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 41, 192, 0.5);
}

#linkedin-callout .callout-gradient-circle {
  border: 2px solid limegreen;
  border-radius: 9999px;
}

#linkedin-callout .flex.items-center.gap-3 img {
  width: 3rem; /* 48px */
  height: 3rem;
  object-fit: cover;
  border-radius: 9999px;
}

#linkedin-callout .flex.items-center.gap-3 div p:first-child {
  font-weight: 700;
  color: #222; /* dark text */
  margin-bottom: 0.125rem;
}

#linkedin-callout .flex.items-center.gap-3 div p:last-child {
  color: #888; /* softer gray */
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #linkedin-callout .callout-glow {
    flex-direction: column;
    padding: 2rem;
  }

  #linkedin-callout h2 {
    max-width: 100%;
    font-size: 1.75rem;
  }

  #linkedin-callout p {
    font-size: 1rem;
  }

  #linkedin-callout .flex.flex-col.md\\:items-end {
    align-items: flex-start !important;
    margin-top: 1rem;
  }
}




#cta-box-dfdskd123 {
  background: #f9f9f9;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.cta-card-dfdskd123 {
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 960px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}

.cta-card-dfdskd123:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.cta-text-group-dfdskd123 {
  flex: 1;
}

.cta-text-group-dfdskd123 h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #222;
  margin: 0 0 0.75rem 0;
}

.cta-text-group-dfdskd123 p {
  font-size: 1.45rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.cta-button-dfdskd123 {
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button-dfdskd123:hover {
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(238, 9, 121, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-card-dfdskd123 {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta-button-dfdskd123 {
    align-self: stretch;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }

  .cta-text-group-dfdskd123 h2 {
    font-size: 1.75rem;
  }

  .cta-text-group-dfdskd123 p {
    font-size: 1.1rem;
  }
}






























/* Main Section */
#fusionSectionMain {
  background: #0d001a;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Wrapper */
.fusionSectionWrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  animation: fadeInUp 1s ease;
}

/* Text Section */
.fusionTextBlock {
  flex: 1 1 500px;
  animation: fadeInLeft 1s ease;
}

.fusionTitle {
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
}

.fusionIntro {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

.fusionFeatures {
  margin-bottom: 20px;
}

.fusionFeatureItem {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 28px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.fusionFeatureItem:hover {
  transform: translateX(10px);
}

.fusionIcon {
  flex-shrink: 0;
  color: #ff4ba8;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.fusionFeatureItem:hover .fusionIcon {
  transform: scale(1.1) rotate(5deg);
}

.fusionFeatureItem h3 {
  font-size: 20px;
  margin: 0 0 6px;
}

.fusionFeatureItem p {
  color: #aaa;
  font-size: 16px;
  margin: 0;
}

/* CTA Button */
.fusionCTA {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff4ba8, #ff007f);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fusionCTA:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
}

/* Image Block */
.fusionImageBlock {
  flex: 1 1 400px;
  text-align: center;
  animation: fadeInRight 1s ease;
}

.fusionImageBlock img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 0, 128, 0.25);
  transition: transform 0.4s ease;
}

.fusionImageBlock img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .fusionSectionWrapper {
    flex-direction: column;
  }

  .fusionTextBlock {
    order: 1;
    text-align: center;
  }

  .fusionImageBlock {
    order: 2;
  }

  .fusionTitle {
    font-size: 32px;
  }

  .fusionFeatureItem {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fusionIcon {
    margin-bottom: 10px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}






















#testimonialWrap {
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  padding: 100px 5% 120px;
}

.testimonialContainer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonialTag {
  font-size: 14px;
  font-weight: 600;
  color: #ff3c8f;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.testimonialHeadline {
  font-size: 40px;
  font-weight: 800;
  color: #111;
  margin-bottom: 60px;
}

.testimonialGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.testimonialCard {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  text-align: left;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.testimonialCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.testimonialHeader {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonialAvatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff3c8f;
}

.testimonialName {
  font-size: 16px;
  color: #111;
}

.testimonialTitle {
  font-size: 14px;
  color: #777;
  display: block;
  margin-top: 2px;
}

.testimonialText {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.testimonialLine {
  display: block;
  height: 4px;
  width: 80px;
  border-radius: 4px;
}

.pinkLine {
  background-color: #ff3c8f;
}

.yellowLine {
  background-color: #ffc107;
}

.tealLine {
  background-color: #20c997;
}

/* Scroll animation */
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .testimonialHeadline {
    font-size: 32px;
  }

  .testimonialCard {
    padding: 25px 20px;
  }

  .testimonialAvatar {
    width: 50px;
    height: 50px;
  }
}
















.text-gray-300{
  font-size: 1.4rem;
}









