/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/*=============== VARIABLES CSS ===============*/
:root {
  --first-color: hsl(213, 98%, 50%);
  --black-color: hsl(0, 0%, 0%);
  --black-color-light: hsl(0, 0%, 40%);
  --white-color: hsl(0, 0%, 95%);
  --title-color: hsl(0, 0%, 0%);
  --text-color: hsl(0, 0%, 35%);
  --text-color-light: hsl(0, 0%, 59%);
  --body-color: hsl(0, 0%, 87%);
  --body-color-two: rgb(235, 229, 223);
  --container-color: hsl(0, 0%, 83%);

  /* padding section */
  --padding-section-one: 10rem 8rem;
  --padding-section-two: 2rem 4rem;
  --padding-section-three: 2rem 6rem;
  --padding-section-four: 6rem 6rem;

  /* mobile padding section */
  --mobile-padding-section-one: 4rem 2rem;


/*========== Font and typography ==========*/
--first-font: "Inter", sans-serif;
--secondary-font: "Playfair Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--body-color);
  font-family: var(--first-font);
}

html {
  scroll-behavior: smooth;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  border: 1px solid rgba(134, 133, 133, 0.5); 
  background-color: var(--white-color);
  backdrop-filter: blur(5px);
  display: inline-flex;
  padding: 0.8rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s, background-color 0.4s;
  border-radius: 50%;
}

.scrollup img {
  height: 1rem;
  width: 1rem;
}

.scrollup:hover {
  transform: translateY(-0.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

@media screen and (min-width: 1150px) {
  .scrollup {
    right: 3rem;
    padding: 0.8rem;
  }
}

/* =============== NAVBAR =============== */

nav {
  padding: 1rem 2rem;
  background: transparent;
  width: 100%;
  top: 0;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--black-color);
}

.logo img {
  height: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links .contact-btn-1 {
  display: none;
}

.contact-btn-hamburger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
}

.nav-links a:hover {
  color: #624C63;
  transition: all 0.3s ease-in-out;
}

.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 2px;
  background-color: #5b185f; 
  transition: all 0.3s ease-in-out;
}

.contact-btn {
  background-color: var(--black-color);
  color: white !important;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
  /* background-color: #1d4ed8; */
  background-color: rgb(97, 96, 96);
  transition: all 0.3s ease-in-out;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

/* Mobile contact button - hidden by default */
.mobile-contact-btn {
  display: none;
}

/* =============== HERO SECTION =============== */
.hero-section {
  background-image: url(/casestudy/casestudy01/imgs/background.png);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  margin: auto;
  height: 100%;
  padding: 2.5rem;
  position: absolute;
}

.hero-card {
  background-color: rgba(255, 255, 255, 0.279);
  backdrop-filter: blur(1px);
  opacity: 0.8;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 70rem;
  padding: 1rem 2rem;
  gap: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}

.hero-card:hover {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1px);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.hero-card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.content h1 {
  font-family: var(--secondary-font);
  font-size: 4rem;
  font-weight: 400;
}

.content p {
  font-size: 1.2rem;
  color: rgb(61, 60, 60);
}

.read-more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.read-more-btn a {
  text-decoration: none;
  color: var(--black-color);
  font-weight: 500;
  font-size: 1.2rem;
}

.read-more-btn img {
  height: 2.5rem;
  width: 2.5rem;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: all 0.3s ease-in-out;
  /* filter: invert(1); */
}

.read-more-btn:hover {
  img {
    transform: translateX(10px);
    transition: all 0.3s ease-in-out;
  }
}

/* hero section end */

/* =============== ABOUT SECTION =============== */

.about-section, .objective-section, .solution-section {
  background-color: var(--body-color-two);
  padding: var(--padding-section-one)
}

.about-content, .objective-content, .solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-card, .objective-card, .solution-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.about-card-span, .objective-card-span, .solution-card-span {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.about-card img, .objective-card img, .solution-card img {
  height: 2.5rem;
  width: 2.5rem;
}

.about-card-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-card-content p, .objective-card-content p, .solution-card-content p {
  font-size: 1rem;
  color: rgb(61, 60, 60);
  width: 90%;
}

.about-card-content h1 {
  font-size: 4rem;
  font-weight: 500;
  width: 90%;
}

/* about section end */


/* =============== CLIENT IMAGE SECTION =============== */

.client-image-section {
  background-color: var(--body-color-two);
  padding: var(--padding-section-two);
}

.client-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-image-content img, .logo-image-content img {
  height: full;
  width: 100%;
}

/* client image section end */


/* =============== OBJECTIVE SECTION =============== */

/* similar to about section */



/* =============== LOGO SECTION =============== */

.logo-image-section {
  background-color: var(--body-color-two);
  padding: var(--padding-section-three);
}

.logo-image-content img {
  margin-bottom: 1.5rem;
}

.logo-img-3-div {
  display: grid;
  grid-template-columns: 60% 38.2%;
  gap: 1.5rem; 
}

.logo-img-3-div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 480px) {
  .logo-img-3-div {
    gap: 0.5rem;
  }
}

/* logo section end */


/* =============== WEBSITE IMAGE SECTION =============== */

.website-image-section {
  background-color: var(--body-color-two);
  padding: var(--padding-section-three);
}

.website-image-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.website-image-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.website-image-card img {
  height: 100%;
  width: 100%;
}

.website-font-content img {
  height: 100%;
  width: 100%;
}

/* website image section end */


/* =============== WEBSITE DESIGN DESCRIPTION SECTION =============== */

.website-design-description-section {
  background-color: var(--body-color-two);
  padding: var(--padding-section-three);
}

.website-design-description-card {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.website-design-description-card h1 {
  font-size: 8rem;
  font-weight: 700;
  /* color: rgb(47, 32, 88); */
  color: #624C63;

}

.website-design-description-card p {
  font-size: 1rem;
  color: rgb(61, 60, 60);
  width: 90%;
  margin-bottom: 1.5rem;
}

/* website design description section end */


/* =============== WEBSITE DESIGN IMAGE SECTION =============== */

.website-design-image-section {
  background-color: var(--body-color-two);
  padding: var(--padding-section-three);
}

.website-design-image-content-1 img, .website-design-image-content-2 img {
  height: 100%;
  width: 100%;
}

.website-design-image-content-1 img {
  padding-bottom: 2rem;
}

.website-design-image-content-2 {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

/* website design image section end */

/* =============== UNDERLINE SECTION =============== */

.underline-section {
  padding: var(--padding-section-two);
  background-color: var(--body-color-two);
}

.underline-content {
  width: 100%;
  height: 1.5px;
  background-color: var(--black-color-light);
}

/* underline section end */


/* =============== MORE PROJECT SECTION =============== */

.more-project-section {
  padding: var(--padding-section-three);
  background-color: var(--body-color-two);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.more-project-heading h1 {
  font-size: 4rem;
  font-weight: 500;
  padding-bottom: 2rem;
}

.more-project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 4rem;

  transition: all 0.3s ease-in-out;
}

.project-01, .project-02 {
  position: relative;
}

.project-01 img, .project-02 img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.project-01-content, .project-02-content {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: space-between;
  
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  opacity: 0.9;
  padding: 1rem;
  margin: 1rem;
  border-radius: 1rem;

  display: none;
  transition: all 0.3s ease-in-out;
}

.project-01:hover, .project-02:hover {
  .project-01-img, .project-02-img {
    filter: blur(2px);
    transition: all 0.3s ease-in-out;
  }
  .project-01-content, .project-02-content {
    display: flex;
    transition: all 0.3s ease-in-out;
  }
}

.project-01-content-info, .project-02-content-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-01-content-info h1, .project-02-content-info h1 {
  font-size: 1.2rem;
  font-weight: 600;
}

.project-01-content-info p, .project-02-content-info p {
  font-size: 0.8rem;
  color: var(--black-color-light);
}

.project-01-content-info p {
  width: 100%;
}

.project-02-content-info p {
  width: 70%;
}

.project-01-content a img, .project-02-content a img {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  background-color: white;
  filter: invert(1);
  border-radius: 50%;
  rotate: -45deg;
  transition: all 0.3s ease-in-out;
}

.project-01-content a:hover, .project-02-content a:hover {
  img {
    rotate: 0deg;
    transition: all 0.3s ease-in-out;
  }
}


/* more project section end */  


/* =============== WORK TOGETHER SECTION =============== */

.work-together-section {
  background-image: url(/casestudy/casestudy01/imgs/background-1.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  /* height: 100vh; */
  width: 100%;
}

.work-together-content-container {
  padding: var(--padding-section-three);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.work-together-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 4rem 4rem 4rem;
}

.great-idea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 1rem;
  width: 80%;
  margin: auto;
}

.great-idea h1 {
  font-size: 4rem;
  font-weight: 500;
  padding-right: 4rem;
}

.great-idea p {
  font-size: 1rem;
  color: var(--black-color-light);
}

.chat-text h1 {
  font-size: 4rem;
  font-weight: 500;
  align-items: center;
  text-align: center;
}


.chat-text h1 img {
  height: 2.5rem;
  width: 2.5rem;
}

@keyframes rotate-img {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.chat-text h1 img {
  animation: rotate-img 5s linear infinite;
  transform-origin: center;
}

/* moving text section */
.moving-text-div {
  background-color: blue;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  border-radius: 2.5rem;
  position: relative; 
  width: 85%;
  margin: auto auto 2rem auto;
  padding: 1rem;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.moving-text-div:hover {
  background-color: var(--black-color);
  transition: all 0.3s ease-in-out;

  .arrow-button {
    background-color: #FFFF00;
    filter: invert(1);
    transition: all 0.3s ease-in-out;
  }
}

.text-container {
  display: flex;
  animation: moveText 10s linear infinite;
  align-items: center;
  justify-content: flex-start;
  width: calc(300%);
}

.text-container h2 {
  font-size: 3rem;
  font-weight: 500;
}

.moving-text {
  color: var(--white-color);
  margin: 0;
  white-space: nowrap;
}

.arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px; 
  height: 40px; 
  margin: auto 2rem auto 0.5rem;
  background-color: var(--white-color); 
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.arrow-button img {
  height: 2.5rem; 
  width: 2.5rem; 
  rotate: -35deg;
}

@keyframes moveText {
  0% {
      transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}
/* moving text section end */

/* work together section end */


/* =============== FOOTER SECTION =============== */

.footer-section {
  background-color: rgb(201, 201, 201);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-content-right {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  padding: 3rem;
}

.footer-content-right .footer-logo {
  height: 8rem;
  width: 26rem;
  margin-bottom: 1.5rem;
}

.footer-content-right h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-content-right p {
  font-size: 1rem;
  color: var(--black-color-light);
  margin-bottom: 2rem;
}

.footer-contact-btn {
  display: flex;
  flex-direction: column;
}

.drop-us-email {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black-color-light);
}

.contact-email {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.contact-email img {
  height: 1.5rem;
  width: 1.5rem;
}

.contact-email span {
  font-size: 1rem;
  font-weight: 700;
}

.footer-content-left {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 4rem 4rem;
}

.contact-us-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 50%;
}

.contact-us-info h3, .social-media-links h3 {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

.contact-us-info-p {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-us-info-p span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-color-light);
}

.social-media-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 50%;
}

.social-media-links-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-media-links-container a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-color-light);
  transition: all 0.3s ease-in-out;
}

.social-media-links-container a img {
  height: 0.8rem;
  width: 0.8rem;
  margin-left: 0.2rem;
}

.social-media-links-container a:hover {
  color: var(--black-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.services-link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

.services-link h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.services-link a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-color-light);
  transition: all 0.3s ease-in-out;
}

.services-link a:hover {
  color: var(--black-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

/* footer section end */



/* =============== PRIVACY POLICY SECTION =============== */

.privacy-policy-section {
  background-color: rgb(201, 201, 201);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.8rem;
}

.privacy-policy-section span {
  font-weight: 400;
  color: var(--black-color-light);
}

.privacy-policy-section a {
  text-decoration: none;
  color: var(--black-color-light);
}

.privacy-policy-section a:hover {
  text-decoration: underline;
}

/* privacy policy section end */



/* media queries for desktop devices */

@media (max-width: 1024px) {

  /* about section */
  .about-section {
    padding: var(--padding-section-four);
  }

  /* objective section */
  .objective-section {
    padding: var(--padding-section-four);
  }

  /* solution section */
  .solution-section {
    padding: var(--padding-section-four);
  }

  /* website design section */
  .website-design-description-card {
    display: flex;
    flex-direction: column;
  }
  .website-design-description-card p {
    width: 100%;
    margin-top: 1rem;
  }
  
  /* more project section */
  .more-project-content {
    grid-template-columns: 1fr;
  }
  
  /* work together section */
  .work-together-content {
    padding: 1rem 3rem;
  }
  .work-together-content-container {
    padding: 1rem 2rem;
  }
  
  /* footer section */
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-content-right {
    padding: 1rem 3rem;
  }
  .footer-content-left {
    padding: 1rem 3rem;
  }
}


/* media queries for ipad devices */

@media (max-width: 768px) {

  .nav-links .contact-btn-1 {
    display: block;
  }

  .contact-btn-hamburger .contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
  .nav-links.active {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    background-color: var(--body-color);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    
    /* Add smooth transition for sliding and fading effect */
    transition: all 0.3s ease-in-out;
    
    /* Optional: Add transform for smoother animation */
    transform: translateY(-20px);
  }

  /* Active state for nav-links */
  .nav-links.active {
    top: 10%;
    opacity: 1;
    transform: translateY(0);
  }

  /* Hide desktop contact button */
  .contact-btn-hamburger .contact-btn {
    display: none;
  }

  /* Show hamburger menu */
  .hamburger {
    display: block;
  }

  /* Show mobile contact button in nav-links */
  .mobile-contact-btn {
    display: block;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
  }


  /* hero section */
  .hero-card {
    width: 90%;
  }

  .hero-card {
    flex-direction: column;
    align-items: start;
  }
  .read-more-btn {
    padding: 0;
  }
}

/* media queries for mobile devices */

@media (max-width: 435px) {
  
  .nav-links.active {
    top: 8%;
  }
  
  .hero-content {
    padding: 1rem 1rem;
  }

  .hero-card {
    width: 100%;
    padding: 0 1rem;
    background-color: rgba(255, 255, 255, 0.279);
    backdrop-filter: blur(5px);
  }

  .read-more-btn {
    margin-bottom: 0.5rem;
  }

  /* about section */
  .about-section {
    padding: var(--mobile-padding-section-one);
  }
  .about-card-content p {
    padding: 0 0.5rem;
  }

  /* client section */
  .client-image-section {
    padding: 0.5rem;
  }

  /* objective section */
  .objective-section {
    padding: var(--mobile-padding-section-one);
  }

  /* logo image section */
  .logo-image-section {
    padding: var(--mobile-padding-section-one);
  }

  /* solution section */
  .solution-section {
    padding: var(--mobile-padding-section-one);
  }

  /* website image section */
  .website-image-section {
    padding: var(--mobile-padding-section-one);
  }
  .website-image-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .website-image-card {
    display: flex;
    flex-direction: column;
  }

  /* website design description section */
  .website-design-description-section {
    padding: var(--mobile-padding-section-one);
  }
  .website-design-description-card {
    padding: 0;
    gap: 1rem;
  }
  .website-design-description-card h1 {
    font-size: 5rem;
  }
  .website-design-description-card p {
    width: 100%;
  } 
  .website-design-image-content-1 img {
    padding-bottom: 1rem;
  }
  .website-design-image-content-2 {
    flex-direction: column;
    gap: 1rem;
  }
  .website-design-image-section {
    padding: var(--mobile-padding-section-one);
    padding-top: 0;
  }

  /* underline section */
  .underline-section {
    padding: 1rem;
  }
  
  /* more project section */
  .more-project-section {
    padding: var(--mobile-padding-section-one);
    margin-bottom: 2rem;
  }
  .more-project-heading h1 {
    padding-bottom: 1rem;
  }
  .more-project-content {
    padding: 0;
    gap: 5rem;
  }  
  .project-01-content, .project-02-content {
    padding: 1rem;
    bottom: -20%;
    display: flex;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.678);
    align-items: center;
  }
  .project-01-content:hover, .project-02-content:hover {
    animation: none;
  }
  .project-02-content-info p {
    width: 100%;
  }

  .work-together-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: start;
  }
  .great-idea {
    width: 100%;
  }
  .great-idea h1 {
    font-size: 3rem;
    padding: 0;
  }
  .chat-text h1 {
    font-size: 3rem;
  } 
  .moving-text-div {
    width: 100%;
    background-color: black;
  }
  .text-container h2 {
    font-size: 1.5rem;
    margin-left: 0.5rem;
  }
  .arrow-button {
    height: 20px;
    width: 40px;
    margin: 0;
  }
  .arrow-button img {
    height: 1rem;
    width: 1rem;
  }


  /* footer section */
  .footer-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }
  .footer-content-right {
    padding: 1rem;
  }
  .footer-content-right .footer-logo {
    height: 6rem;
    width: 20rem;
    margin-bottom: 1.5rem;
  }
  .footer-content-left {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .footer-content-left .contact-us-info {
    width: 100%;
  }

  /* privacy policy section */
  .privacy-policy-section {
    /* padding: 1rem; */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

}

