/*---------------------------
  Import Fonts
----------------------------*/

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*---------------------------
  GLOBAL COLOR VARIABLES
----------------------------*/
:root {
  --primary-color: #f9f9f9;
  --secondary-color: #000;
  --tertiary-color: #f9f9f9;
  --quaternary-color: #000;
  --quinary-color: #f9f9f9;
  --senary-color: #000;
  --septenary-color: #f9f9f9;
  --octonary-color: #000;
  --nonary-color: #f9f9f9;
  --denary-color: #000;

  /* Fonts */
}

/*---------------------------
  DARk MODE SECTION
----------------------------*/

/*---------------------------
  Reset Browser CSS
----------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/*---------------------------
  GLOBAL SECTION PADDING
----------------------------*/
.section-padding {
  padding: 50px 100px;
}

/*---------------------------
  HEADER SECTION
----------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* position: fixed; 
  top: 0;        
  left: 0;        
  width: 100%;    
  z-index: 1000;  
  background: #fff; */
}

/* .header.active {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.7px);
  -webkit-backdrop-filter: blur(6.7px);
  padding: 20px 100px;
} */



.brand .profile-pics {
  width: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 50px;
}


.header-btn {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  background: black;
  color: #fff;
  border: 0;
  transition: 0.4s ease;
  cursor: pointer;
}

.header-btn:hover {
  background: #ddd;
  color: black;
  transition: 0.5s ease;
}

a {
  text-decoration: none;
  color: inherit;
}





/* Hamburger-button */
.menu-icon-container {
  position: relative; /* Changed from fixed */
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.hamburger {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.hamburger .icon {
	color: white;
	font-size: 1.5rem;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger .fa-burger {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

.hamburger .fa-xmark {
	position: absolute;
	opacity: 0;
	transform: scale(0.5) rotate(-90deg);
}

/* When menu is active */
.hamburger.active {
	transform: rotate(180deg);
	background: #ccc;
}

.hamburger.active .fa-burger {
	opacity: 0;
	transform: scale(0.5) rotate(90deg);
}

.hamburger.active .fa-xmark {
  color: #000;
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

/* Menu-overlay */
.menu-overlay {
  position: absolute;
  background: #252422;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(4.7px);
  -webkit-backdrop-filter: blur(4.7px);
  width: 250px;
  height: 250px;
  top: calc(50px + 1.5rem); /* Height of hamburger + header padding */
  right: 7.5rem; /* Same as header padding */
  border-radius: 10px;
  clip-path: circle(0% at 95% 5%);
	transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 999;
  display: flex;
  align-items: center;
  opacity: 0;
  /* transform: translateY(-20px); */
}

.menu-overlay.active {
  opacity: 1;
  clip-path: circle(150% at 95% 5%);
}

.menu-items {
	/* text-align: center; */
	opacity: 1;
	/* transform: translateY(30px); */
	transition: all 0.4s ease 0.2s;
}

.menu-overlay.active {
	clip-path: circle(150% at 95% 5%);
}

.menu-items ul li {
	list-style: none;
	padding: 10px 0;
	margin-left: 20px;
}

.menu-items ul li a {
	text-decoration: none;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	/* position: relative; */
	padding: 0 10px;
	transition: all 0.3s ease;
}

/* .menu-items ul li .cWm{
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  color: #000;
} */

.menu-items ul li a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #6e8efb, #a777e3);
}

.menu-items ul li a:hover {
	color: #fefae0;
}

/*---------------------------
  MAIN CONTAINER
----------------------------*/
/* #main-container{
  margin-top: 180px;
} */



/*---------------------------
  HERO SECTION
----------------------------*/
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.hero-section h1 {
  font-size: 60px;
  text-align: center;
  width: 65rem;
  font-family: DM serif Text;
  font-weight: 800;
}

.hero-section small {
  font-size: 17px;
  /* font-weight: 500; */
}

/* glowing dot  */
.glowing-dot {
  display: flex;
  align-items: center;
}

/* Old Animation for Glowing Dot */
/* .glowing-dot .dot {
  width: 30px;
  height: 30px;
  background-color: rgb(144, 231, 13);
  border-radius: 50%;
  margin-right: 5px;
  border: 3px solid rgb(190, 255, 190);
  box-shadow: 0px 0px 20px rgba(114, 255, 149, 0.5);
  animation: dots 0.7s ease-in-out infinite;
} */

/* @keyframes dots {
  0%,
  40%,
  100% {
    transform: scale(0.5);
  }
  20% {
    transform: scale(0.6);
  }
} */

/* New Animation for Glowing Dot */
.glowing-dot .dot {
  width: 30px;
  height: 30px;
  background-color: rgb(144, 231, 13);
  border-radius: 50%;
  margin-right: 5px;
  border: 3px solid rgb(190, 255, 190);
  box-shadow: 0px 0px 20px rgba(114, 255, 149, 0.5);
  animation: smoothDots 0.5s ease-in-out infinite alternate; /* Changed animation name, duration, and added alternate */
}

@keyframes smoothDots {
  0% {
    transform: scale(0.5); /* Slightly smaller start */
    opacity: 0.8; /* Slightly less opaque start */
  }
  100% {
    transform: scale(0.7); /* Slightly larger end */
    opacity: 1; /* Fully opaque end */
  }
}

/*---------------------------
  PORTFOLIO SECTION
----------------------------*/
.portfolio {
  width: 100%;
  display: flex;
  align-content: content;
}

.portfolio-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Category Toggle */
.category-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.toggle-item {
  color: #000;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.toggle-item:hover {
  background-color: #e7e5e5;
}

.menu-active {
  background-color: #e7e5e5;
}

/* Portfolio Gallery */

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.card-wrapper {
  position: relative;
  animation: sclAnimation 1s ease;
  display: flex;
  flex-direction: column;
  min-height: 200px; /* Set minimum height for consistency */
  overflow: hidden;
}

@keyframes sclAnimation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

/* Project image */
.project-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border-bottom: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.project-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* lazy load fade-in effect */



/* Card-Content */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: linear-gradient(transparent, #000000); */
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.7px);
  -webkit-backdrop-filter: blur(6.7px);
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 10px 10px;
  border-top: none;
  box-sizing: border-box;
  z-index: 1; /* Ensure content is above image */
}

/* Gallery Hover States */

.card-wrapper:hover .project-img img {
  transform: scale(1.1);
}

.card-wrapper:hover .card-content {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

/* buttons */
.buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* margin-top: 10px; */
  margin: 0 auto;
  gap: 10px;
  
}

.buttons button {
  padding: 5px 10px;
  border: none;
  background: #000;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  transition: background 0.3s ease-in-out;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}

.buttons button a {
  text-decoration: none;
  color: #fff;
}

.buttons button a:hover {
  color: #fdfddb;
}

.buttons button:hover {
  background: #0d0d0d;
  color: #fdfddb;
}

.buttons .project-name {
  background: #fff;
  color: #000;
  padding: 5px 10px;
  font-size: 0.6rem;
  font-weight: 500;
  border-radius: 5px;
}


/* Modal  */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.modal-content {
  background: white;
  padding: 25px;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.modal-content img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin: 15px 0;
}

/* Modal Entrance Animation */
.animate {
  animation-duration: 0.3s;
  animation-delay: 0.1s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-fill-mode: backwards;
}

/* Glow In */
.animate.glow {
  animation-name: animate-glow;
  animation-timing-function: ease;
}

@keyframes animate-glow {
  0% {
    opacity: 0;
    filter: brightness(5) saturate(5);
    transform: scale(0.8, 0.8);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: scale(1, 1);
  }
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close:hover {
  color: #333;
}

/*----------------------------------
 TEXT - INFINITE SCROLL SECTION  
------------------------------------*/
.service-marquee {
  display: grid;
  place-content: center;
  font-size: 1.125rem;
  background-color: black;
  padding: 0px 150px;
  margin-block: 50px;
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li {
  padding-block: 1rem;
  color: white;
  font-size: 2.5rem;
  /* background-color: rgba(0, 0, 0, 0.1); */
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem -0.25rem rgba(0, 0, 0, 0.8);
}

.tag-list li span {
  font-weight: bold;
  color: rgb(255, 94, 0);
  margin-left: 1rem;
}
.scroller {
  max-width: 1600px;
  /* outline: 3px solid lime; */
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

/* .scroller[data-animated="true"] .scroller__inner:hover {
  animation-play-state: paused;
} */

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/*-------------------------------------
LET'S TALK 
--------------------------------------*/
.letsTalk{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  position: relative;
}

.lt_wrapper .hglogo{
  width: 20rem;
  z-index: 20;
  position: absolute;
  left: 19rem;
  top: -2rem;
}

.lt_wrapper .happyClient {
  width: 18rem;
   z-index: 20;
  position: absolute;
  right: 18rem;
  top:-1rem;
}

.lt_wrapper .lt_card{
  width: 40rem;
  height: 15rem;
  background: #ecebeb48;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: .5rem;
}

.lt_card h2{
  font-size: 2.1rem;
}

.lt_card a{
  padding: .5rem 2.5rem;
  margin-top: 1.5rem;
  background: #000;
  border-radius: .3rem;
  transition: all .3s ease-in-out;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.lt_card a:hover{
  background: #ff8000;
  color: #ffff;
}


/*-------------------------------------
CLIENTS LOGO  - INFINITE SCROLL SECTION 
--------------------------------------*/

.client-heading h2 {
  font-size: 30px;
  text-align: center;
}

.client-heading p {
  text-align: center;
  font-size: 25px;
}

.scroller__inner img {
  width: 160px;
  height: 118px;
  border-radius: 20px;
  border: 0.5px solid #ccc;
}

/* .scroller[data-animated="true"] .scroller__inner:hover {
  animation-play-state: paused;
} */

/*---------------------------
  TESTIMONIAL SECTION
----------------------------*/
.testimonials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-heading {
  margin-bottom: 50px;
}

.testimonial-heading h2 {
  font-size: 30px;
  text-align: center;
}

.testimonial-heading p {
  text-align: center;
  font-size: 25px;
}

.testimonial-card-wrapper {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 20px;
  border-radius: 20px;
  background-color: #f9f9f9;
  /* width: 450px; */
  transition: 0.5s ease-in-out;
}

.card:hover {
  transform: scale(1.02);
  /* transition: 0.5s ease-in-out; */
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05); */
}

.card-items {
}

.card-header {
  display: flex;
  align-items: center;
}

.card-header .card-header-text {
  margin-left: 10px;
}

.card-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.star-rating .star {
  font-size: 25px;
  color: orange;
}

.card-body p {
  font-size: 1rem;
  font-weight: 300;
}

/*---------------------------
  FAQS SECTION
----------------------------*/

.faqs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faqs-header {
  text-align: center;
}

.faqs-header h2 {
  font-size: 2rem;
}

.faqs-header p {
  font-size: 1.5rem;
}

.faqs-content {
  max-width: max-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  gap: 1rem;
  padding: 1rem;
}

.faqs-content .faq-accordion-card {
  margin-inline: auto;
}

/* Accordion */
.accordion {
}

.accordion h2 {
  position: relative;
}

/* Accordion-Panel */
.accordion-panel {
}

.accordion-panel .pan-tit {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
  /* padding: 1rem; */
}

/* Accordion-trigger */
.accordion-trigger {
  background: transparent;
  border: 0;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: 1px solid #000;
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Accordion-trigger Icon ( + ) */
.accordion-trigger::before,
.accordion-trigger::after {
  content: "";
  background: currentColor;
  width: 1em;
  height: 4px;
  display: block;
  position: absolute;
  right: 1.5em;
  top: 1.6em;
  transition: transform 500ms;
}

.accordion-trigger::after {
  rotate: 90deg;
  /* translate: 0 -0em; */
}

.accordion-trigger[aria-expanded="true"]::before,
.accordion-trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

/* Accordion content */
.accordion-content {
  /* padding: 1rem; */
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}

.accordion-content[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.accordion-content > div {
  overflow: hidden;
}

.accordion-content > div > p {
  padding: 15px;
  font-size: 1.2rem;
}

/* FAQS */

.faq-text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ecebeb48;
  border-radius: 20px;
}

.text-wrapper {
}

.text-wrapper,
h2 p {
  text-align: center;
}

.text-wrapper h2 {
  font-size: 2rem;
}

.text-wrapper p {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Faqs Section Button */
.fq-btn {
  margin-top: 2rem;
  font-size: 1.2rem;
  background: none;
  border: none;
  position: relative;
  /* to do, calc arrow-stripes so they repeat nicely on animation loop   */
  --padding-block: 1rem;
  --padding-inline: 2rem;
  --arrow: 5rem;
  --arrow-stripes: 0.8rem;

  padding: var(--padding-block) var(--padding-inline);
  padding-right: calc(var(--padding-inline) + var(--arrow));
  filter: drop-shadow(4px 4px 4px hsl(0 0% 0% / 0.5));
  color: white;
  border-radius: 999vmax 0 0 999vmax;
  cursor: pointer;
  transition: all 125ms;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.fq-btn:active {
  scale: 0.975;
}
.fq-btn:hover::after {
  background: rgb(48, 47, 47);
  background-image: linear-gradient(transparent 50%, hsla(0, 1%, 26%, 0.5) 0);
  animation-play-state: paused;
  transition: 0.4s ease;
}
.fq-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background-color: rgb(255, 113, 36);
  background-image: linear-gradient(transparent 50%, hsla(0, 0%, 0%, 0.108) 0);
  animation: mask-position 5s linear infinite;

  --conic-stops: black 0 90deg, #0000 0;
  --linear-stops: #0000 0px, black 1px var(--arrow-stripes), #0000 calc(var(--arrow-stripes) + 1px) calc(var(--arrow-stripes) * 2);
  --mask-image: conic-gradient(from 225deg at right, var(--conic-stops)), conic-gradient(from 225deg at right, var(--conic-stops)),
    repeating-linear-gradient(-135deg, var(--linear-stops)), repeating-linear-gradient(-45deg, var(--linear-stops));
  --mask-position: 0 0, 0 0, 0 0, 0 100%;
  --mask-position-to: 0, 0, -100% 0, -100% 100%;
  --mask-size: calc(100% - var(--arrow)) 100%, 100%, 200% 50%, 200% 50%;
  --mask-repeat: no-repeat, repeat, repeat-x, repeat-x;

  -webkit-mask-image: var(--mask-image);
  -webkit-mask-position: var(--mask-position);
  -webkit-mask-size: var(--mask-size);
  -webkit-mask-repeat: var(--mask-repeat);
  -webkit-mask-composite: source-over, source-out, source-over, source-over;

  mask-image: var(--mask-image);
  mask-position: var(--mask-position);
  mask-size: var(--mask-size);
  mask-repeat: var(--mask-repeat);
  mask-composite: add, subtract, add, add;
}

@keyframes mask-position {
  to {
    -webkit-mask-position: var(--mask-position-to);
    mask-position: var(--mask-position-to);
  }
}

.fq-btn a {
  text-decoration: none;
  color: #fff;
}

/* html, body { height: 100%; }
body { margin: 0; display: grid; place-items: center; background-color: hsl(0 0% 85%); } */

/*---------------------------
  FOOTER SECTION
----------------------------*/
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

/*  Social Icons */
.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-wrapper ul {
  display: flex;
  gap: 10px;
}

.icon-wrapper ul li {
  list-style-type: none;
}

.icon-wrapper ul li a {
  text-decoration: none;
  color: black;
}

.icon {
  font-size: 40px;
}

.fa-brands {
}

/*---------------------------
---------------------------
  MEDIA QUERIES SECTION
---------------------------
----------------------------*/

/* For Tablet Devices */
@media (max-width: 1200px){

  .section-padding{
    padding: 50px 50px;
  }

  /* Hamburger menu-overlay */
  .menu-overlay {
  
    top: calc(50px + 1.5rem); /* Height of hamburger + header padding */
    right: 3.5rem; /* Same as header padding */
   
  }
  
  /* hero section */
  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    width: 70%;
  }

  /* Lets Talk */
  .lt_wrapper .hglogo{
  width: 15rem;
  left: 3.0rem;
  top: -2rem;
}

.lt_wrapper .happyClient {
 width: 15rem;
  right: 3.0rem;
  top:-1rem;
}

  /* Client logos size */

  .client-heading p {
    font-size: 1.2rem;
    padding: 0 50px;
  }

  .scroller__inner img {
    width: 100px;
    height: 75px;
  }

  
  /* Testimonial */

  .testimonial-card-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  
}


@media (max-width: 996px) {

  /* Hamburger menu */
  .menu-overlay {
  
    top: calc(50px + 1.5rem); /* Height of hamburger + header padding */
    right: 3.5rem; /* Same as header padding */
   
  }

  .lt_wrapper .lt_card{
  /* width: 40rem;
  height: 15rem; */
}

.lt_wrapper .hglogo{
  width: 15rem;
  left: 3.0rem;
  top: -2rem;
}

.lt_wrapper .happyClient {
 width: 15rem;
  right: 3.0rem;
  top:-1rem;
}

  /* Accordion */
  /* .accordion-trigger {
    font-size: 1rem;
    padding: 0.8rem;
  } */

  .accordion-trigger::before,
  .accordion-trigger::after {
    right: 0.8em;
    top: 1.4em;
  }

  /* FAQ button */
  .fq-btn {
    margin-top: 0;
    --padding-inline: 1.5rem;
    --arrow: 2.5rem;
    padding-right: calc(var(--padding-inline) + var(--arrow));
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-size: 1rem;
  }


}





/* For Mobile Devices */

@media (max-width: 768px) {
  /* Global Settings */
  .section-padding {
    padding: 0 20px;
  }

  /* header section */
  .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .header-btn {
    display: none;
  }

  /* brand */
  .brand {
    display: flex;
    flex-direction: column;
  }

  .brand .profile-pics {
    width: 100px;
    border-radius: 50%;
  }

  .brand .name-tag {
    text-align: center;
    margin-bottom: 20px;
  }

  /* Hamburger menu */
  .menu-icon-container {
    position: absolute; /* Changed from fixed */
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    top: 20px;
    right: 20px;
  }

  /* Hamburger menu-overlay */
  .menu-overlay {
  
    top: 2.0rem; /* Height of hamburger + header padding */
    right: 2.5rem; /* Same as header padding */
   
  }

  /* hero section */
  .hero-section {
    padding: 0;
    display: flex;
    /* flex-direction: column-reverse; */
  }

  .hero-section h1 {
    font-size: 2rem;
    width: 100%;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  /* portfolio */
  .category-toggle {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }

  .toggle-item {
    padding: 8px 15px;
    font-size: 14px;
  }

  /* Gallery Wrapper */
  .gallery-wrapper {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  /* Modal */
  .modal-content {
    padding: 25px;
    width: 90%;
  }


  /* Lets Talk */
  .lt_wrapper .lt_card{
  width: 20rem;
  
  margin-top: 5rem;
}

.lt_wrapper .hglogo{
  width: 10rem;
  left: -1.5rem;
  top: 1rem;
}

.lt_wrapper .happyClient {
 width: 7rem;
  right: -0.5rem;
  top:3rem;
}

.lt_card h2{
  
  font-size: 1.5rem;
 
}

.lt_card a{

  margin-top: .5rem;

}



  /* Client logos size */
  .clients-logo-marquee {
    padding: 50px 0;
  }

  .client-heading p {
    font-size: 1.2rem;
    padding: 20px;
  }

  .scroller__inner img {
    width: 100px;
    height: 75px;
  }

  /* Marquee text size */
  .service-marquee {
    padding: 0px 50px;
  }

  .tag-list li {
    font-size: 1.5rem;
  }

  /* Testimonial */
  .testimonial-heading {
    margin-bottom: 20px;
  }

  .testimonial-heading h2 {
    font-size: 1.7rem;
    text-align: center;
  }

  .testimonial-heading p {
    text-align: center;
    font-size: 1.2rem;
  }

  .testimonial-card-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FAQS */
  .faqs {
    padding-bottom: 30px;
  }
  .faqs-header {
    font-size: 1.7rem;
  }

  .faqs-header p {
    font-size: 1.2rem;
  }

  .faqs-content {
    grid-template-columns: 1fr;
    padding: 0;
  }

  /* Accordian */
  .accordion-trigger {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .accordion-content > div > p {
    font-size: 1rem;
    padding: 10px;
    margin-top: -10px;
  }

  .accordion-trigger::before,
  .accordion-trigger::after {
    right: 0.9em;
    top: 1.4em;
  }

  /* Faqs-Text-card  */
  .text-wrapper {
    padding: 20px;
  }

  .text-wrapper h2 {
    font-size: 1.7rem;
  }

  /* FAQ button */
  .fq-btn {
    margin-top: 0;
    --padding-inline: 1.5rem;
    --arrow: 3rem;
    padding-right: calc(var(--padding-inline) + var(--arrow));
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  /* footer */
  footer {
  }

  footer .footer-content {
    margin-top: 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    padding-bottom: 20px;
  }

  .social-icons {
    order: 1;
  }

  .copywrite,
  .creator-attribute {
    order: 0;
  }
}



