@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");


body {
    line-height: 1;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color:#faf7f1;
}

img {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  max-width: 10000px;
  margin-left: 30px;
  margin-right: 30px;

}

.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.site-logo {
  width: 220px; /* Set a fixed width */
  height: auto; /* Adjust height proportionally */
  animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* Container for email and policies buttons */
.site-header__end.top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
  position: relative;
}


.phone-link {
  text-decoration: none;
  color: #e34400; /* Optional: A subtle blue color like Apple's site */
  font-weight: 500;
}

.phone-link:hover {
  text-decoration: underline;
}

.email-link {
  text-decoration: none;
  color: #e33900; /* Optional: A subtle blue color like Apple's site */
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}


/* Style for the button containers */
/* Add a 3D perspective to the container */
.button-container-wrapper {
  perspective: 1000px; /* Control the intensity of the 3D effect */
}

.button-container {
  display: inline-flex;
  align-items: center;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d; /* Enable 3D transformations */
  animation: fadeInUp 1s ease forwards;
}

.button-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 123, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.button-container:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.button-container:hover {
  background-color: #e0e0e0;
  transform: rotateY(15deg) rotateX(10deg) scale(1.05); /* 3D rotation */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow for 3D effect */
}

.button-container .icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.button-container:hover .icon {
  transform: rotate(20deg) scale(1.2);
}

.button-container .icon svg {
  width: 32px;
  height: 32px;
  fill: #fe413f;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.button-container:hover .icon svg {
  fill: #fe413f;
}

.button-container .text-container {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.button-container:hover .text-container {
  opacity: 0.8;
}

.button-container .text {
  font-size: 16px;
  color: #333;
  transition: transform 0.3s ease;
}

.button-container:hover .text {
  transform: translateZ(30px); /* 3D translation */
}

.button-container .email-address,
.button-container .phone-number {
  font-size: 14px;
  color: #555;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive adjustments for tablets */
@media (max-width: 1024px) {
  .button-container {
    padding: 14px;
  }

  .button-container .icon svg {
    width: 28px;
    height: 28px;
  }

  .button-container .text {
    font-size: 15px;
  }

  .button-container .email-address,
  .button-container .phone-number {
    font-size: 13px;
  }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
  .site-header__end.top {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .button-container {
    width: auto;
    max-width: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .button-container .text-container {
    display: none;
  }

  .button-container .icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .site-logo {
      width: 150px; /* Smaller width for tablets and smaller screens */
  }
}

@media (max-width: 480px) {
  .site-logo {
      width: 150px;
  }
  .site-header__wrapper {
    padding: 2px;
  }
}

.site-header__top {
    background-color: #dfd9d4;
    animation: fadeInDown 1s ease forwards;
}

.site-header__top ul {
    display: flex;
}

.site-header__top li:not(:last-child) {
    margin-right: 1.5rem;
}

.site-header__top .site-header__start {
    display: none;
}

.site-header__bottom {
  position: relative;
  background-color: #fe413f;
  animation: fadeInDown 1s ease forwards;
  height: 70PX;
  align-items: center; /* Vertically center contents */
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 480px) {
  .site-header__bottom {
      background-color: #f43a3a; /* Adjust background color for mobile if needed */
      font-size: 14px; /* Adjust font size for mobile */
      /* You can add more mobile-specific styles here */
  }
}


@media (max-width: 939px) {
    .site-header__bottom .site-header__end {
        order: -1;
    }
}

.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 1s ease forwards;
    padding-top: 10px;
    
}

.site-header-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
  
}

@media (min-width: 940px) {
    .site-header__wrapper {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.site-header__end {
    display: flex;
    align-items: center;
    animation: fadeInRight 1s ease forwards;
}

.site-header__end.top > * + * {
    margin-left: 0.5rem;
}

@media (min-width: 940px) {
    .site-header__end.bottom > *:not(:last-child) {
        margin-right: 1.5rem;
    }
}

.site-header__end.bottom svg {
    width: 22px;
    height: 22px;
}

@media (min-width: 940px) {
    .nav__wrapper {
        display: flex;
        animation: fadeIn 1s ease forwards;
        margin-top: -5px; /* Move 4px upwards */
    }
}

@media (max-width: 939px) {
    .nav__wrapper {
        position: absolute;
        right: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        max-height: 330%;
        background-color:#fc2306;
        opacity: 0;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        margin-left: 29px;
        margin-top: 3px;
        
    }
    .nav__wrapper.active {
        visibility: visible;
        animation: fadeInUp 1s ease forwards;
    }
}


.nav__item:not(:last-child) {
    margin-right:2rem;
}

.nav__item a {
    display: block;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: .8rem;
}

@media (max-width: 939px) {
    .nav__item a {
        padding: 1rem;
      
    }
}

.nav__item svg {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    margin-right: 1rem;
}

@media (min-width: 940px) {
    .nav__item svg {
        display: block;
        margin: 0 auto 0.5rem;
    }
}

.nav__item.active a {
    border-left-color: #ADD8E6; /* light blue */
}

@media (min-width: 800px) {
    .nav__item.active a {
        border-bottom-color: #ADD8E6; /* light blue */
    }
}
/* Basic styles for the toggle button */
/* Initially hide the burger button */
.nav__toggle {
  display: none;
}

/* Show the burger button only on mobile screens */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex; /* Flex display for proper alignment */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    position: relative;
    z-index: 1000; /* Ensure the toggle button is above other elements */
  }
}

/* Styling for the lines in the burger button */
/* Adjust the size of the burger button */
.nav__toggle {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 48px; /* Adjusted width */
  height: 60px; /* Adjusted height */
}

.nav__toggle-line {
  display: block;
  width: 100%;
  height: 4px;
  margin: 6px 0;
  background-color: #fbf5f5; /* Make sure this matches your color scheme */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile view */
@media screen and (max-width: 767px) {
  .nav__toggle {
    display: block;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Container for the social media icons */
.site-header__end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}

.social-media {
  display: flex;
  gap: 20px; /* Space between each icon */
  animation: fadeIn 1s ease-in-out; /* Fade-in animation for the social media container */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff, #f0f0f0); /* Radial gradient background */
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(151, 19, 19, 0.2); /* Shadow for the icons */
  cursor: pointer; /* Pointer cursor on hover */
}

.social-icon svg {
  width: 26px;
  height: 26px;
  fill: #fe413f; /* Default color for the icons */
  transition: fill 0.3s ease; /* Smooth color transition */
}

.social-icon:hover {
  background: radial-gradient(circle at center, #333, #555); /* Background color on hover */
  transform: scale(1.2) rotate(15deg); /* Zoom and rotate effect on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.social-icon:hover svg {
  fill: #fff; /* Icon color on hover */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .site-header__end {
    justify-content: center;
    padding: 15px;
  }

  .social-media {
    gap: 15px; /* Reduce space between icons */
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }
}


/* ABOUT US */

.about-us {
  padding: 10px 0 30px;
  background-color:transparent;
  border-bottom: 1px solid #ddd;
  transition: transform 0.5s; /* Add transition effect */

}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.section {
  margin-top: 40px;
  width: 100%;
  min-height: 100vh;
  background-color: transparent;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.container {
  width: 80%;
  margin: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
}

.heading {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1.4s ease-out forwards;
  animation-delay: 0.7s;
}

.heading h1 {
  font-size: 28px;
  text-transform: uppercase;
  padding: 20px;
}

.content-section,
.image-section {
  flex: 1;
  opacity: 0;
  animation: fadeInUp 1.6s ease-out forwards;
  animation-delay: 0.9s;
}

.content-section {
  width: 55%;
}

.image-section {
  width: 40%;
}

.image-section img {
  width: 100%;
  height: auto;
  max-width: 100%;
  opacity: 0;
  animation: fadeInUp 1.8s ease-out forwards;
  animation-delay: 1.1s;
}

.content-section .title {
  text-transform: uppercase;
  font-size: 28px;
}

.content-section .content h3 {
  color: #5d5d5d;
  font-size: 21px;
}

.content-section .content p {
  margin-top: 20px;
  margin-right: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  color: #1c1e3a;
}

.content-section .content .button {
  margin-top: 30px;
}

.content-section .content .button a {
  background-color: #f0403d;
  padding: 12px 40px;
  text-decoration: none;
  color: #fff;
  font-size: 25px;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 30px;
}

.content-section .content .button a:hover {
  background-color: #a52a2a;
  color: #fff;
  transform: translateY(-3px); /* Adds a slight lift on hover */
}

@media screen and (max-width: 768px) {
  .container {
      flex-direction: column;
      padding-top: 20px;
      opacity: 0;
      animation: fadeInUp 1.5s ease-out forwards;
      animation-delay: 0.5s;
      margin-top: 20px;
  }

  .heading {
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeInUp 1.4s ease-out forwards;
      animation-delay: 0.7s;
  }

  .content-section,
  .image-section {
      width: 100%;
      opacity: 0;
      animation: fadeInUp 1.6s ease-out forwards;
      animation-delay: 0.9s;
  }

  .content-section {
      order: 2; /* Content section appears after the image on mobile */
      text-align: center;
  }

  .image-section {
      order: 1; /* Image section appears first on mobile */
      text-align: center;
  }

  .image-section img {
      display: block;
      margin: auto;
      opacity: 0;
      animation: fadeInUp 1.8s ease-out forwards;
      animation-delay: 1.1s;
  }

  .content-section .title {
      font-size: 19px;
  }

  .content-section .content .button {
      text-align: center;
  }

  .content-section .content .button a {
      padding: 9px 30px;
      margin-top: 40px;
  }

  .content-section .social {
      text-align: center;
  }

  .content-section .content h3 {
      margin-top: 20px; /* Adjust margin-top for mobile screens */
      color: #333;      /* Change text color if desired */
      font-size: 18px; /* Reduce font size for mobile screens */
      text-align: left;
      opacity: 0;
      animation: fadeInUp 1.5s ease-out forwards;
      animation-delay: 1.3s;
  }

}

.section-title {
  color:#fe413f;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  margin: auto;
  font-family: 'Poppins', sans-serif;}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */

@media (max-width: 768px) {
  .section-title {
    font-size: 84px;

  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 38px;
  }
}

.section-heading {
  font-size: 36px;  /* Adjust the font size */
  font-weight: bold;
  color: #333;  /* Dark text color */
  text-align: center;
  margin: 50px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 2px;  /* Add spacing between letters */
  color: red;
  -webkit-background-clip: text;
  background-clip: text;
  animation: fadeIn 1.5s ease-out;
}

/* Adding a fade-in animation for the heading */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  Our Purpose and Principles */
/* Container and Card Styling for Large Screens (Desktop) */
.container-purpose {
  display: flex;
  flex-wrap: nowrap; /* Prevent cards from wrapping on large screens */
  justify-content: space-between; /* Spread cards evenly */
  overflow-x: auto; /* Allows horizontal scrolling if needed */
  margin: 10px 50px;
  gap: 10px;
}

.info-card {
  position: relative;
  width: 250px;  /* Fixed width for each card */
  height: 400px; /* Fixed height for equal-sized cards */
  color: white;
  padding: 20px;
  margin: 10px 7px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* Distribute content evenly */
  opacity: 0; /* Start with cards hidden */
  animation: fadeInUp 1s ease-in-out forwards; /* Animation on landing */
}

.info-card:nth-child(1) {
  animation-delay: 0.2s; /* Delay for the first card */
}

.info-card:nth-child(2) {
  animation-delay: 0.4s; /* Delay for the second card */
}

.info-card:nth-child(3) {
  animation-delay: 0.6s; /* Delay for the third card */
}

.info-card:nth-child(4) {
  animation-delay: 0.8s; /* Delay for the fourth card */
}

.info-card:nth-child(5) {
  animation-delay: 1s; /* Delay for the fifth card */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); /* Start slightly below */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* End at the original position */
  }
}

.info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.info-card p {
  font-size: 0.9rem;
  line-height: 1.4;
  flex-grow: 1;  /* Makes the paragraph take up remaining space */
}

.info-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: white;
  color: #000dff;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.info-card a:hover {
  background-color: #6b73ff;
  color: white;
}

.icon img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.info-card:hover {
  transform: scale(1.05);
}

/* Gradient Backgrounds for Each Card */
.mission {
  background: linear-gradient(45deg, #6b73ff, #c2c3be);
}

.vision {
  background: linear-gradient(45deg, #ff6a6a, #ff3a3a);
}

.value {
  background: linear-gradient(45deg, #ffaf7b, #d76d77);
}

.strategy {
  background: linear-gradient(45deg, #43cea2, #185a9d);
}

.goals {
  background: linear-gradient(45deg, #ffcc70, #ff6600);
}

/* Tablet Responsive Design (768px to 1024px) */
@media (max-width: 1024px) {
  .container-purpose {
    flex-wrap: wrap;  /* Allow wrapping */
    justify-content: center;  /* Center cards */
    gap: 15px;  /* Adjust gap for smaller screens */
    margin: 10px 30px;  /* Adjust margins */
  }

  .info-card {
    width: 45%;  /* 2 cards in a row on tablet view */
    height: 380px;  /* Adjust height slightly */
  }
}

/* Mobile Responsive Design (below 768px) */
@media (max-width: 768px) {
  .container-purpose {
    flex-direction: column;  /* Stack cards vertically */
    align-items: center;
    gap: 20px;
    margin: 10px 20px;  /* Reduce margins */
  }

  .info-card {
    width: 90%;  /* Full-width card on mobile */
    height: auto;  /* Adjust height to content */
  }
}

/* Additional Mobile Styling for Very Small Screens (below 480px) */
@media (max-width: 480px) {
  .info-card h2 {
    font-size: 1.2rem;  /* Adjust heading size for small screens */
  }

  .info-card p {
    font-size: 0.85rem;  /* Adjust paragraph size */
  }

  .info-card a {
    padding: 8px 16px;  /* Reduce button size */
  }

  .icon img {
    width: 80px;
    height: 80px;  /* Smaller icon size */
  }
}


/* Team section styling */
/* General styling for the team section */
.team-section {
  background-image: url(../assets/footer/bg.png);
  text-align: center;
  max-width: -webkit-fill-available;
  margin: 80px auto;
  padding: 40px 20px;
  background-color: #ff676d;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsiveness */
@media screen and (max-width: 767px) {
  .team-section {
      margin: 40px ;
      padding: 30px 15px;
  }
}

/* Team section styling */
/* General styling for the team section */
.team-section {
  background-image: url(../assets/footer/bg.png);
  text-align: center;
  max-width: -webkit-fill-available;
  margin: 80px auto;
  padding: 40px 20px;
  background-color: #ff676d;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsiveness */
@media screen and (max-width: 767px) {
  .team-section {
      margin: 40px 10px; /* Reduced side margin for smaller screens */
      padding: 30px 15px;
  }

  .team-container {
    flex-direction: column; /* Stack team members vertically */
    align-items: center; /* Ensure alignment in the center */
  }

  .team-member {
    width: 100%; /* Full width on small screens */
    max-width: 300px; /* Ensure reasonable size on mobile */
    margin-bottom: 20px; /* Add spacing between members */
  }

  .team-member h3, .team-member p {
    text-align: center; /* Center align text */
  }

  .social-icons-team {
    justify-content: center;
  }

  h2 {
    font-size: 1.8rem;
  }
}

/* Further adjustments for very small screens */
@media screen and (max-width: 480px) {
  .team-member {
    width: 100%; 
    max-width: 280px; /* Slightly smaller for very small screens */
    margin-bottom: 15px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .badge {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

/* Team heading styling */
.team-heading {
  margin-bottom: 40px;
  animation: fadeInDown 1s ease forwards;
}

/* Badge styling */
.badge {
  display: inline-block;
  background: linear-gradient(45deg, #ff3d59, #ff676d);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(255, 63, 89, 0.4);
}

/* Heading 2 styling */
.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #180c0c;
}

/* Team container styling */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center items horizontally */
  gap: 50px;
  margin-top: 20px;
}

/* Team member styling */
.team-member {
  background-image: url(../assets/footer/bg.png);
  background-color: #ff4b5c;
  padding: 30px;
  border-radius: 20px;
  width: 240px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 0.6s ease forwards;
  animation-delay: 1s;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hover effect for team member */
.team-member:hover {
  box-shadow: 0 8px 20px rgba(255, 63, 89, 0.5);
}

/* Team member image styling */
.team-member img {
  width: 200px;
  height: 220px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid white;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

/* Team member heading styling */
h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
  font-weight: bold;
}

/* Team member description styling */
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #eee;
}

/* Social icons styling */
.social-icons-team {
  display: flex;
  justify-content: center;
  align-items: center; /* Center vertically */
  gap: 15px; /* Adjust if necessary */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
}

.social-icons-team a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons-team a:hover {
  background-color: #ff676d;
  transform: scale(1.2);
}

/* Social icons image styling */
.social-icons-team i {
  font-size: 20px;
  color: #e0475e;
}

/* Animation for landing (initial load) */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for team member sliding up */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*footer */


footer {
  background: #24262b;
  margin-top: 20px;
}

.full {
  padding-top: 50px;
  background-image: url(../assets/footer/bg.png);
  opacity: 20;

}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px; /* Reduced gap between sections */
  padding-bottom: 50px;
}

.footer-section {
  flex: 1; /* Makes all sections the same width */
  margin-right: 0px; /* Reduced horizontal margins */
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  color: #f43a3a;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.footer-section ul li i {
  margin-right: 10px;
  color: #f43a3a;
}

.footer-section p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-section img.logo {
  width: 225px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 22px;
  color: #fff;
  background-color: #f43a3a;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #e17979;
}

footer .footer-section p,
footer .footer-section li {
  color: #ffffff;
}

footer .footer-section a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section a:hover {
  color: #b3006e;
}

/* Contact section icons */
.footer-section ul li i {
  font-size: 16px;
  color: #f43a3a;
}

/* Move 'Services' to the right only on desktop */
@media (min-width: 940px) {
  .footer-container {
      justify-content: flex-start; /* Align all sections to the left */
  }
  .footer-section.services-section {
    padding-left: 50px;
  }
}

@media (max-width: 939px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .footer-section {
      width: 100%;
      margin: 0 0 30px 0; /* Bottom margin to space out sections in mobile */
  }
}

/* Footer Bar Styles */
.footer-bar {
  display: flex;
  justify-content: space-between;
  background-color: #f43a3a;
  color: #fff;
  padding: 10px 20px; /* Adjust padding as needed */
  font-size: 14px;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.footer-bar p {
  margin: 0;
}

.footer-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-bar a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .footer-bar {
    flex-direction: column; /* Stack the items vertically on smaller screens */
    text-align: center; /* Center align the text */
  }

  .footer-bar p {
    margin: 5px 0; /* Add spacing between the paragraphs */
    font-size: 13px; /* Slightly smaller text for mobile */
  }

  .footer-bar a {
    font-size: 13px; /* Adjust font size for mobile */
  }
}
