/* General Layout */

/* .home-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
} */

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}

/* Header Content */
.header-content {
  text-align: center;
  width: 100%;
}

.main-heading {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.highlight-text {
  color: #4a6cf7;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  /* max-width: 700px; */
  margin: 0 auto 25px;
}

/* Media Container */
.profile-container {
  width: 100%;
  /* max-width: 800px; */
  margin: 0 auto;
  position: relative;
}

.profile-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.gradient-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.top-right {
  top: -100px;
  right: -50px;
  background: rgba(74, 108, 247, 0.3);
}

.bottom-left {
  bottom: -100px;
  left: -50px;
  background: rgba(241, 91, 181, 0.3);
}

.profile-media-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

.profile-media {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.profile-media:hover {
  transform: scale(1.02);
}

/* Buttons */
.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.secondary-button {
  padding: 12px 24px;
  background-color: transparent;
  color: #4a6cf7 !important;
  border: 2px solid #4a6cf7;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: #4a6cf7;
  color: white !important;
}

/* Social Icons */


/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .profile-container {
    margin-top: 40px;
  }
}

/* ---------------------------------------------------- */
.home-section {
    /* padding-top: 6rem; */
    padding-top: 4rem;
    
    padding-bottom: 64px;
  }
  
  /* @media (min-width: 768px) {
    .home-section {
      padding-top: 15%;
      padding-bottom: 96px;
      
    }
  } */
 
  
  /* .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  @media (min-width: 640px) {
    .container {
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding-left: 32px;
      padding-right: 32px;
    }
  }
  
  @media (min-width: 1024px) {
    .content-wrapper {
      display: flex;
      align-items: center;
    }
    
   
  }
  

  .left-content {
    width: 100%;
  }
  
  @media (min-width: 1024px) {
    .left-content {
      width: 50%;
    }
  }
  
  .main-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 4rem;
   margin: 0;
  }
  
  @media (min-width: 640px) {
    .main-heading {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 768px) {
    .main-heading {
      font-size: 3.75rem;
    }
  }
  
  .highlight-text {
    color: #2563eb;
  }
  
  .subtitle {
    margin-top: 24px;
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
  }
  
  .button-group {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .primary-button {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  
  .primary-button:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
    color: white;
  }
  
  .secondary-button {
    background-color: white;
    color: #2563eb !important;
    border: 1px solid #2563eb;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  
  .secondary-button:hover {
    background-color: #f3f4f6;
  }
  

  .right-content {
    margin-top: 40px;
    width: 100%;
  }
  
  @media (min-width: 1024px) {
    .right-content {
      margin-top: 0;
      width: 50%;
    }
  }
  
  .sidebar {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background-color: white;
    padding: 24px;
  }
  
  .sidebar-glow {
    animation: glow 3s infinite alternate;
  }
  
  @keyframes glow {
    from {
      box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    to {
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
    }
  }
  
  .top-gradient {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to bottom left, #3b82f6, #8b5cf6);
    opacity: 0.1;
    height: 256px;
    width: 256px;
    border-radius: 50%;
    margin-right: -128px;
    margin-top: -128px;
  }
  
  .bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top right, #3b82f6, #8b5cf6);
    opacity: 0.1;
    height: 256px;
    width: 256px;
    border-radius: 50%;
    margin-left: -128px;
    margin-bottom: -128px;
  }
  

.image-container, .video-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  width: 100%;
}


.profile-image, .profile-video {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-10px);
  }
  100% {
      transform: translateY(0px);
  }
}
  
  .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 1), transparent);
    padding: 24px;
  }
  
  .caption-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .caption-subtitle {
    color: #dbeafe;
  }
   */
  .social-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  
 
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #f3f4f6;
  outline: none !important;
}

.social-icon .icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover .icon {
  transform: scale(1.2);
}

/* Facebook */
.social-icon[aria-label="Facebook"] {
  color: #1877f2 !important;
}
.social-icon[aria-label="Facebook"]:hover {
  background-color: #1877f2;
  color: white !important;
  box-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
}

/* X (Twitter) */
.social-icon[aria-label="X (Twitter)"] {
  color: #1da1f2 !important;
}
.social-icon[aria-label="X (Twitter)"]:hover {
  background-color: #000000;
  color: white !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Instagram */
.social-icon[aria-label="Instagram"] {
  color: #e4405f !important;
}
.social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white !important;
  box-shadow: 0 0 10px rgba(228, 64, 95, 0.5);
}

/* YouTube */
.social-icon[aria-label="YouTube"] {
  color: #ff0000 !important;
}
.social-icon[aria-label="YouTube"]:hover {
  background-color: #ff0000;
  color: white !important;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* TikTok */
.social-icon[aria-label="TikTok"] {
  color: #000000 !important;
}
.social-icon[aria-label="TikTok"]:hover {
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
  color: white !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* LinkedIn */
.social-icon[aria-label="LinkedIn"] {
  color: #0077b5 !important;
}
.social-icon[aria-label="LinkedIn"]:hover {
  background-color: #0077b5;
  color: white !important;
  box-shadow: 0 0 10px rgba(0, 119, 181, 0.5);
}

/* Snapchat */
.social-icon[aria-label="Snapchat"] {
  color: #fffc00 !important;
}
.social-icon[aria-label="Snapchat"]:hover {
  background-color: #fffc00;
  color: #000000 !important;
  box-shadow: 0 0 10px rgba(255, 252, 0, 0.5);
}

/* Pinterest */
.social-icon[aria-label="Pinterest"] {
  color: #e60023 !important;
}
.social-icon[aria-label="Pinterest"]:hover {
  background-color: #e60023;
  color: white !important;
  box-shadow: 0 0 10px rgba(230, 0, 35, 0.5);
}

/* Reddit */
.social-icon[aria-label="Reddit"] {
  color: #ff4500 !important;
}
.social-icon[aria-label="Reddit"]:hover {
  background-color: #ff4500;
  color: white !important;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

/* Threads */
/* .social-icon[aria-label="Threads"] {
  color: #000000 !important;
}
.social-icon[aria-label="Threads"]:hover {
  background-color: #000000;
  color: white !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
} */
/* Threads */
.social-icon[aria-label="Threads"] {
  color: #000000 !important;
}
.social-icon[aria-label="Threads"]:hover {
  background-color: #000000;
  color: white !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.social-icon[aria-label="Threads"]:hover svg {
  fill: white !important;
}
/* Spotify */
.social-icon[aria-label="Spotify"] {
  color: #1db954 !important;
}
.social-icon[aria-label="Spotify"]:hover {
  background-color: #1db954;
  color: white !important;
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.5);
}

/* Discord */
.social-icon[aria-label="Discord"] {
  color: #5865f2 !important;
}
.social-icon[aria-label="Discord"]:hover {
  background-color: #5865f2;
  color: white !important;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

/* WhatsApp */
.social-icon[aria-label="WhatsApp"] {
  color: #25d366 !important;
}
.social-icon[aria-label="WhatsApp"]:hover {
  background-color: #25d366;
  color: white !important;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-icons {
    gap: 8px;
  }
  
  .social-icon {
    width: 36px !important;
    height: 36px !important;
  }
  
  .social-icon .icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .social-icons {
    gap: 6px;
  }
  
  .social-icon {
    width: 32px !important;
    height: 32px !important;
  }
  
  .social-icon .icon {
    width: 18px;
    height: 18px;
  }
}

/* For very small screens or when there are many icons */
@media (max-width: 360px) {
  .social-icons {
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
  }
}
  /* For better animation performance */
  .fade-animation {
    opacity: 0;
    animation: fadeIn 1s forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }


  /* right side  */

  /* Container Styles */
.profile-container {
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .profile-container {
    margin-top: 0;
    width: 100%;
  }
}

/* Card Styles */
.profile-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Animation for glow effect */
@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
}

.profile-card {
  animation: glow 3s infinite;
}

/* Gradient circles for decoration */
.gradient-circle {
  position: absolute;
  height: 16rem;
  width: 16rem;
  border-radius: 50%;
  opacity: 0.1;
}

.top-right {
  top: 0;
  right: 0;
  margin-right: -8rem;
  margin-top: -8rem;
  background: linear-gradient(to bottom left, #3b82f6, #8b5cf6);
}

.bottom-left {
  bottom: 0;
  left: 0;
  margin-left: -8rem;
  margin-bottom: -8rem;
  background: linear-gradient(to top right, #3b82f6, #8b5cf6);
}

/* Profile Image Container */
.profile-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

/* Profile Image */
.profile-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
}

/* Animation for float effect */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.profile-image {
  animation: float 6s ease-in-out infinite;
}

/* Profile Info Overlay */
.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #1e3a8a, transparent);
  padding: 1.5rem;
}

.profile-name {
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.profile-title {
  color: #dbeafe;
  margin: 0.25rem 0 0 0;
}

/* Social Icons */
.social-icons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  color: #9ca3af;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #2563eb;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}




/* -------------------- */
/* Existing desktop layout remains the same */
@media (min-width: 1024px) {
  .content-wrapper {
    display: flex;
    align-items: center;
  }
  
  .left-content {
    width: 50%;
    order: 1; /* Ensure left content stays first on desktop */
  }
  
  .profile-container {
    width: 90%;
    margin-top: 0;
    order: 2; /* Ensure profile container stays second on desktop */
  }
}

/* Tablet and Mobile Layout Changes */
@media (max-width: 1023px) {
  .content-wrapper {
    display: flex;
    flex-direction: column;
  }
  
  .profile-container {
    width: 100%;
    margin-top: 0;
    order: 1; /* Make profile container appear first on mobile/tablet */
  }
  
  .left-content {
    width: 100%;
    margin-top: 40px;
    order: 2; /* Make left content appear second on mobile/tablet */
  }
}

/* Ensure the profile card has proper width on all screens */
.profile-card {
  width: 100%;
  max-width: 100%;
}





/* ----------------about -------------------------------*/

/* About section */
.about-section {
  padding: 64px 0;
  background-color: #ffffff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

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

.section-header-fade {
  animation: fadeUp 0.8s ease-out;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1a202c;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  margin-top: 16px;
  font-size: 1.25rem;
  color: #6b7280;
}

/* Features grid */
.features-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-card {
  background-image: linear-gradient(to bottom, #ffffff, #ebf4ff);
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 24px;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card-fade {
  animation: fadeUp 0.8s ease-out;
}

.feature-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  border-radius: 9999px;
  background-color: #2563eb;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  height: 32px;
  width: 32px;
}

.feature-content {
  text-align: center;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.feature-description {
  color: #4b5563;
}

/* Approach section */
.approach-section {
  margin-top: 96px;
}

@media (min-width: 1024px) {
  .approach-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

.approach-content {
  background-image: linear-gradient(to bottom right, #ebf4ff, #ffffff);
  padding: 32px;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: fadeRight 1s ease-out;
}

.approach-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .approach-title {
    font-size: 1.875rem;
  }
}

.approach-description {
  margin-top: 12px;
  font-size: 1.125rem;
  color: #4b5563;
}

.approach-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.approach-feature {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 16px;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.approach-feature:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.approach-feature-icon-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  border-radius: 9999px;
  background-image: linear-gradient(to right, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.approach-feature-icon {
  height: 28px;
  width: 28px;
}

.approach-feature-content {
  margin-left: 16px;
}

.approach-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a202c;
}

.approach-feature-description {
  margin-top: 8px;
  color: #4b5563;
  margin: 0;
}

/* Image section */
.image-container {
  position: relative;
  margin-top: 32px;
  animation: fadeLeft 1s ease-out;
}

@media (min-width: 1024px) {
  .image-container {
    margin-top: 0;
  }
}

.main-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transition: transform 0.5s ease;
}

.image-container:hover .main-image-wrapper {
  transform: scale(1.05);
}

.main-image {
  width: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #2563eb, #4f46e5);
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.image-caption-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.image-caption-description {
  color: #dbeafe;
  margin-top: 8px;
}

.accent-circle-yellow {
  position: absolute;
  top: -16px;
  right: -16px;
  height: 96px;
  width: 96px;
  border-radius: 9999px;
  background-color: #facc15;
  opacity: 0.2;
  animation: pulse 2s infinite;
}

.accent-circle-blue {
  position: absolute;
  bottom: -24px;
  left: -24px;
  height: 128px;
  width: 128px;
  border-radius: 9999px;
  background-color: #60a5fa;
  opacity: 0.2;
  animation: pulse 2s infinite;
}

.decorative-image-1 {
  position: absolute;
  bottom: 6px;
  right: 9px;
  width: 128px;
  height: 128px;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  border: 4px solid white;
  transform: rotate(6deg);
  animation: floats 5s ease-in-out infinite;
}

@media (max-width: 767px) {
  .decorative-image-1
  ,.decorative-image-2 
  {
    display: none;
  }
}


.decorative-image-2 {
  position: absolute;
  top: 17px;
  left: 8px;
  width: 112px;
  height: 112px;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  border: 4px solid white;
  transform: rotate(-6deg);
  animation: floatDelayed 6s ease-in-out infinite;
  animation-delay: 1s;
  z-index: 1;
}

/* Impact section */
.impact-section {
  margin-top: 40px;
  padding: 10px 0;
  border-radius: 1.5rem;
  background-image: linear-gradient(to bottom right, #ebf4ff, #ffffff, #eef2ff);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: fadeUp 1s ease-out;
}

.impact-title {
  font-size: 1.875rem;
  font-weight: 800;
  text-align: center;
  color: #1a202c;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .impact-title {
    font-size: 2.25rem;
  }
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 32px;
}

@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.impact-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.3s ease;
  animation: zoomIn 0.5s ease-out;
}

.impact-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.impact-card-header-blue {
  background-image: linear-gradient(to right, #2563eb, #1d4ed8);
  height: 12px;
}

.impact-card-header-indigo {
  background-image: linear-gradient(to right, #4f46e5, #4338ca);
  height: 12px;
}

.impact-card-header-purple {
  background-image: linear-gradient(to right, #7c3aed, #6d28d9);
  height: 12px;
}

.impact-card-header-gradient {
  background-image: linear-gradient(to right, #3b82f6, #4f46e5);
  height: 12px;
}

.impact-card-content {
  padding: 24px;
}

.impact-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.impact-number-blue {
  color: #2563eb;
}

.impact-number-indigo {
  color: #4f46e5;
}

.impact-number-purple {
  color: #7c3aed;
}

.impact-label {
  color: #4b5563;
  font-weight: 500;
}

.impact-divider {
  width: 64px;
  height: 4px;
  margin-top: 16px;
}

.impact-divider-blue {
  background-color: #bfdbfe;
}

.impact-divider-indigo {
  background-color: #c7d2fe;
}

.impact-divider-purple {
  background-color: #ddd6fe;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

@keyframes floats {
  0% {
    transform: translateY(0px) rotate(6deg);
  }
  50% {
    transform: translateY(-10px) rotate(6deg);
  }
  100% {
    transform: translateY(0px) rotate(6deg);
  }
}

@keyframes floatDelayed {
  0% {
    transform: translateY(0px) rotate(-6deg);
  }
  50% {
    transform: translateY(-12px) rotate(-6deg);
  }
  100% {
    transform: translateY(0px) rotate(-6deg);
  }
}

/* ---------coin */
/* Base section styles */
.rafix-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right, #1e3a8a, #3730a3);
}

/* Overlay styles */
.rafix-overlay {
  position: absolute;
  inset: 0;
}

.rafix-overlay-color {
  position: absolute;
  inset: 0;
  background-color: #bfdbfe;
  mix-blend-mode: multiply;
}

.rafix-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-image: linear-gradient(to top, #1e40af, transparent);
}

/* Container styles */
.rafix-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

@media (min-width: 640px) {
  .rafix-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .rafix-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Grid layout */
.rafix-grid {
  display: block;
}

@media (min-width: 1024px) {
  .rafix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
  }
}

/* Animation classes */
.rafix-fade-right {
  animation-duration: 1000ms;
}

.rafix-fade-left {
  animation-duration: 1000ms;
}

.rafix-fade-up {
  animation-duration: 800ms;
}

/* Heading styles */
.rafix-heading {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

@media (min-width: 640px) {
  .rafix-heading {
    font-size: 2.25rem;
  }
}

/* Paragraph styles */
.rafix-subtitle {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #dbeafe;
}

/* Feature list styles */
.rafix-feature-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Feature item styles */
.rafix-feature {
  display: flex;
}

.rafix-feature-icon-container {
  flex-shrink: 0;
}

.rafix-feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  border-radius: 0.375rem;
  background-color: white;
  color: #2563eb;
}

.rafix-feature-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.rafix-feature-content {
  margin-left: 1rem;
}

.rafix-feature-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin: 0;
}

.rafix-feature-description {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #dbeafe;
  margin: 0;
}

/* CTA button styles */
.rafix-cta-container {
  margin-top: 2.5rem;
  margin-bottom:2.5rem;
}

.rafix-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #2563eb !important;
  background-color: white;
  text-decoration: none;
}

.rafix-cta-button:hover {
  background-color: #eff6ff;
}

.rafix-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0 0 0 4px #1e40af;
}

.rafix-cta-icon {
  margin-left: 0.5rem;
  height: 1.25rem;
  width: 1.25rem;
}

/* Coin image container */
/* .rafix-coin-container {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: c;
}

@media (min-width: 1024px) {
  .rafix-coin-container {
    margin-top: 0;
  }
}

.rafix-coin-wrapper {
  position: relative;
}

.rafix-coin-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rafix-coin-pulse {
  height: 14rem;
  width: 14rem;
  border-radius: 9999px;
  background-color: #60a5fa;
  opacity: 0.2;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}

.rafix-coin {
  position: relative;
}

.rafix-coin-image {
  height: 14rem;
  width: 14rem;
  animation: spin 10s linear infinite;
  margin-top: 8px;
} */

/* Stats grid */
.rafix-stats-container {
  margin-top: 4rem;
}

.rafix-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .rafix-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Stat box styles */
.rafix-stat-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.rafix-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.rafix-stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #dbeafe;
}





@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.coin-spin {
  animation: spin 10s linear infinite;
  /* transform-style: preserve-3d; */
}




.rafix-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rafix-prefix, .rafix-suffix {
  display: inline-block;
}










/* Alternative simpler approach */
/* 3D Coin Flip Animation Styles */
.rafix-coin {
  position: relative;
  perspective: 1000px;
  width: 14rem;
  height: 14rem;
  margin: 0 auto;
  border-radius: 9999px;
  animation: bgOpacity 2s ease-in-out infinite alternate;

}

.rafix-coin-flipper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: coinFlip 10s linear infinite;
}

.rafix-coin-front, .rafix-coin-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 50%;
  overflow: hidden;
  background-color: #60a5fa;
}

.rafix-coin-back {
  transform: rotateY(180deg);
}

.rafix-coin-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes coinFlip {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes bgOpacity {
  0% {
    background-color: rgba(96, 165, 250, 0.2);
  }
  100% {
    background-color: rgba(96, 165, 250, 1);
  }
}

/* Ensure the coin pauses briefly when showing each side */
.rafix-coin-flipper:hover {
  animation-play-state: paused;
}

/* ---------------------blog ------------------- */
/* Blog Section CSS */
.blog-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}

.blog-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .blog-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .blog-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

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

.blog-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
}

@media (min-width: 640px) {
  .blog-title {
    font-size: 2.25rem;
  }
}

.blog-subtitle {
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  color: #6b7280;
}

.blog-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  background-color: white;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  top: 0;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image-container {
  position: relative;
  padding-bottom: 12rem;
  overflow: hidden;
}

.blog-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4f46e5;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-category {
  color: #6366f1;
}

.blog-post-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  margin: 0;
}

.blog-post-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4f46e5;
  transition: width 0.3s ease;
}

.blog-card:hover .blog-post-title::after {
  width: 100%;
}

.blog-card:hover .blog-post-title {
  color: #4f46e5;
}

.blog-excerpt {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #6b7280;
}

.blog-author {
  
  display: flex;
  align-items: center;
}

.author-image-container {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 9999px;
}

.author-image {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  transition: transform 0.4s ease;
}

.blog-card:hover .author-image {
  transform: scale(1.1);
}

.author-info {
  margin-left: 0.75rem;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.blog-metadata {
  font-size: 0.875rem;
  color: #6b7280;
}

.blog-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
  transition: background-color 0.3s ease;
}

.blog-card:hover .blog-footer {
  background-color: #f9fafb;
}

.read-more-link {
  font-size: 1rem;
  font-weight: 500;
  color: #4f46e5 !important;
  text-decoration: none;
  position: relative;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.read-more-link::after {
  content: "→";
  position: relative;
  opacity: 1;
  margin-left: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.blog-card:hover .read-more-link {
  padding-left: 5px;
  color: #4338ca;
}

.blog-card:hover .read-more-link::after {
  transform: translateX(5px);
}

.blog-view-all {
  margin-top: 3rem;
  text-align: center;
}

.view-all-button {
  display: inline-flex
  ;
      align-items: center;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      background-color: #2563eb;
      color: white !important;
      font-size: 16px;
      font-weight: 500;
      text-decoration: none;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      outline: none;
}



.view-all-button:hover {
  background-color: #1d4ed8;
 
}

.view-all-button:hover::before {
  left: 100%;
}

.view-all-button:focus {
  outline: none;
}

/* Add animation keyframes for initial load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  animation: fadeInUp 0.5s ease forwards;
}

.blog-grid > div:nth-child(1) {
  animation-delay: 0.1s;
}

.blog-grid > div:nth-child(2) {
  animation-delay: 0.2s;
}

.blog-grid > div:nth-child(3) {
  animation-delay: 0.3s;
}


/* --------------------------------------------------new about us */
/* Base Styles */
.about-section {
  padding: 3rem 0;
  /* background-color: #f9fafb; */
  background-color: #ffffff;

  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }
}

/* Decorative Elements */
.decor-circle-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 12rem;
  height: 12rem;
  background-color: #ede9fe;
  border-radius: 9999px;
  margin-right: -6rem;
  margin-top: -6rem;
}

.decor-circle-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: #e0e7ff;
  border-radius: 9999px;
  margin-left: -8rem;
  margin-bottom: -8rem;
}

@media (min-width: 768px) {
  .decor-circle-top {
    width: 16rem;
    height: 16rem;
  }
  
  .decor-circle-bottom {
    width: 20rem;
    height: 20rem;
  }
}

/* Container Styles */
.about-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .about-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .about-container {
    padding: 0 2rem;
  }
}

/* Layout */
.about-grid {
  display: block;
}

@media (min-width: 1024px) {
  .about-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
  }
}

/* Profile Image Column */
.profile-column {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .profile-column {
    grid-column: span 5 / span 5;
    margin-bottom: 0;
  }
}

.profile-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 28rem;
}

@media (min-width: 1024px) {
  .profile-wrapper {
    max-width: none;
  }
}

/* Image Container */
.image-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(124, 58, 237, 0.3), rgba(79, 70, 229, 0.3));
  mix-blend-mode: multiply;
}

.profile-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Badge Styles */
.badge-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: white;
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 0.75rem;
}

@media (min-width: 768px) {
  .badge-wrapper {
    padding: 1rem;
  }
}

.badge-icon {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  border-radius: 9999px;
  padding: 0.375rem;
}

@media (min-width: 768px) {
  .badge-icon {
    padding: 0.5rem;
  }
}

.badge-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

@media (min-width: 768px) {
  .badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Stats Card */
.stats-card {
  position: absolute;
  bottom: -1rem;
  right: 0;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 1rem;
  width: 12rem;
}

@media (min-width: 768px) {
  .stats-card {
    bottom: -1.5rem;
    right: -1.5rem;
    padding: 1.5rem;
    width: 16rem;
  }
}

.stats-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .stats-content {
    gap: 1rem;
  }
}

.stats-icon-bg {
  background-color: #f3e8ff;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .stats-icon-bg {
    padding: 0.75rem;
  }
}

.stats-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #9333ea;
}

@media (min-width: 768px) {
  .stats-icon {
    width: 2rem;
    height: 2rem;
  }
}

.stats-label {
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .stats-label {
    font-size: 0.875rem;
  }
}

.stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

@media (min-width: 768px) {
  .stats-number {
    font-size: 1.5rem;
  }
}

.stats-subtext {
  font-size: 0.75rem;
  color: #9333ea;
  font-weight: 500;
}

/* Content Column */
.content-column {
  grid-column: span 7 / span 7;
}

.section-heading {
  display: inline-block;
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.5rem;
  position: relative;
  
}

@media (min-width: 768px) {
  .section-heading {
    font-size:2.25rem ;
  }
}

.about-text {
  max-width: none;
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-text {
    font-size: 1.125rem;
  }
}

.about-text p {
  margin-bottom: 1rem;
}

/* Core Values Section */
.values-section {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .values-section {
    margin-top:1rem;
  }
}

.values-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .values-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .values-grid {
    gap: 1.5rem;
  }
}

.value-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  transition: all 0.3s ease;
  border-top: 1px solid #f3f4f6;
  border-left: 1px solid #f3f4f6;
  border-right: 1px solid #f3f4f6;
}

.value-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .value-card {
    padding: 1rem;
  }
}

.value-content {
  display: flex;
  align-items: flex-start;
  
}

.value-icon-wrapper {
  flex-shrink: 0;
}

.value-icon-bg {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, #8b5cf6, #6366f1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .value-icon-bg {
    width: 3rem;
    height: 3rem;
  }
}

.value-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

@media (min-width: 768px) {
  .value-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.value-text {
  margin-left: 1rem;
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

@media (min-width: 768px) {
  .value-title {
    font-size: 1.125rem;
  }
}

.value-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .value-description {
    font-size: 1rem;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.active {
  max-height: 300px; /* Adjust this value based on your content */
  overflow-y: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.accordion-toggle {
  cursor: pointer;
  color: #007bff;
  background: none;
  border: none;
  padding: 5px 0;
  font-weight: 600;
  text-align: left;
}

.accordion-toggle:hover {
  text-decoration: underline;
}

/* Very thin scrollbar for webkit browsers */
.accordion-content::-webkit-scrollbar {
  width: 3px; /* Reduced from 6px to 3px for a thinner scrollbar */
}

.accordion-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.accordion-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

.accordion-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* For Firefox */
.accordion-content {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* Animations */
@keyframes floatCircle {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.decor-circle-top {
  animation: floatCircle 8s ease-in-out infinite;
}

.decor-circle-bottom {
  animation: floatCircle 10s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-wrapper {
  animation: fadeInUp 1s ease-out forwards;
}

.content-column {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes pulseBadge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

.badge-wrapper {
  animation: pulseBadge 3s infinite;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stats-card {
  animation: slideInRight 0.8s ease-out forwards;
  animation-delay: 0.6s;
}

@keyframes valueCardHover {
  to {
    transform: translateY(-5px);
  }
}

.value-card:hover {
  animation: valueCardHover 0.3s ease forwards;
}


/* CTA Button Styles */
.cta-button-wrapper {
  margin-bottom: 1.5rem;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #8b5cf6, #6366f1);
  color: white !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.about-cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: all 0.6s ease;
}

.about-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.5);
}

.about-cta-button:hover:before {
  left: 100%;
}

.about-cta-button:active {
  transform: translateY(-1px);
}

.cta-arrow {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.about-cta-button:hover .cta-arrow {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .about-cta-button {
    padding: 0.50rem 0.75rem;
    font-size: 1rem;
  }
  
  .cta-arrow {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Animation for CTA button */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button-wrapper {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}


/* current project ------------------------------------------------------------- */


/* Brand Colors */
.brand-color {
  color: #1e3a8a;
}

.brand-bg {
  background-color: #1e3a8a;
}

.gradient-bg {
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

/* Section Styles */
#remarkable-projects {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
  background-color: #ffffff;
}

@media (min-width: 640px) {
  #remarkable-projects {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  #remarkable-projects {
    padding: 5rem 4rem;
  }
}

/* Heading Styles */
.text-center {
  text-align: center;
}

h2 {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  h2 {
    font-size: 2.25rem;
  }
}

.section-description {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Card Grid */
.category-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* Card Styles */
.category-card {
  background-color: white;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.25);
}

.card-header {
  height: 0.75rem;
}

.card-body {
  padding: 1.5rem;
}

/* Icon Styles */
.icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
}

.category-card:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.icon-project {
  height: 2rem;
  width: 2rem;
  stroke: #1e3a8a;
}

/* Card Content */
.card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card-description {
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Link Styles */
.card-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #1e3a8a !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #1e40af;
}

.category-card:hover .card-link {
  transform: translateX(5px);
}

.card-link svg {
  height: 1.25rem;
  width: 1.25rem;
  margin-left: 0.25rem;
}

/* Particle Effects */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background-color: rgba(30, 58, 138, 0.6);
  animation: float-particle 6s infinite;
}

.particle:nth-child(1) {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.2;
  top: 5rem;
  left: 25%;
}

.particle:nth-child(2) {
  width: 1rem;
  height: 1rem;
  opacity: 0.3;
  top: 10rem;
  right: 25%;
}

.particle:nth-child(3) {
  width: 2rem;
  height: 2rem;
  opacity: 0.1;
  bottom: 5rem;
  left: 33.333%;
}

.particle:nth-child(4) {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.25;
  top: 50%;
  right: 20%;
}

@keyframes float-particle {
  0% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -50px);
  }
  66% {
    transform: translate(-50px, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Mission Particles */
.mission-particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(10, 68, 230, 0.15);
  pointer-events: none;
}

.mission-particle-1 {
  width: 24px;
  height: 24px;
  top: 20%;
  left: 15%;
  animation: mission-float-1 10s infinite ease-in-out;
}

.mission-particle-2 {
  width: 16px;
  height: 16px;
  top: 30%;
  right: 20%;
  animation: mission-float-2 8s infinite ease-in-out;
}

.mission-particle-3 {
  width: 32px;
  height: 32px;
  bottom: 15%;
  left: 25%;
  animation: mission-float-3 12s infinite ease-in-out;
}

@keyframes mission-float-1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(5deg); }
  66% { transform: translate(-20px, 10px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes mission-float-2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-25px, -15px) rotate(-8deg); }
  66% { transform: translate(15px, 25px) rotate(8deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes mission-float-3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -30px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Highlight Text Effect */
.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-text {
  color: #1e3a8a;
}

.highlight-text::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 6px;
  bottom: 0;
  left: 0;
  background: #1e3a8a;
  z-index: -1;
  /* animation: highlightAnimation 3s ease-in-out infinite; */
}

@keyframes highlightAnimation {
  0% {
    width: 0%;
    left: 0;
    background: rgba(30, 58, 138, 0.2); /* Lightest shade of #1e3a8a */
  }
  25% {
    background: rgba(30, 58, 138, 0.4); /* Light shade of #1e3a8a */
  }
  50% {
    width: 100%;
    background: rgba(30, 58, 138, 0.6); /* Medium shade of #1e3a8a */
  }
  75% {
    background: rgba(30, 58, 138, 0.8); /* Dark shade of #1e3a8a */
  }
  100% {
    width: 0%;
    left: 100%;
    background: rgba(30, 58, 138, 1); /* Full #1e3a8a */
  }
}

/* --------------------------------------------------------past project---------------------------------- */
/* Base Container Styles */
.remarkable_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

/* Section Header Styles with new accent design */
.remarkable_section_header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.title-accent-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.title-accent-container1 {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 1rem;
}

.title-accent {
  height: 3px;
  width: 50px;
  background: linear-gradient(90deg, rgba(30,58,138,0.2) 0%, rgba(30,58,138,1) 50%, rgba(30,58,138,0.2) 100%);
  display: inline-block;
}

.remarkable_section_title {
  font-size: 2.8rem;
  color: #1e3a8a;
  margin: 0;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.remarkable_section_subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 900px;
  margin: 1rem auto 0;
  line-height: n1.6;
  display: flex;
  justify-content: center;
}

/* Projects Grid Layout */
.remarkable_projects_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Project Card Styles */
.remarkable_project_card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(30, 58, 138, 0.08);
}

.remarkable_project_card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 30px rgba(30, 58, 138, 0.15);
  border-color: rgba(30, 58, 138, 0.12);
}

/* Project Image Styles */
.remarkable_project_image_container {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.remarkable_project_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.remarkable_project_card:hover .remarkable_project_image {
  transform: scale(1.1);
}

.remarkable_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.remarkable_image_placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
}

/* Project Status Badge */
.remarkable_project_status {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.remarkable_status_completed {
  background-color: #10b981;
  color: white;
}

.remarkable_status_ongoing {
  background-color: #1e3a8a;
  color: white;
}

.remarkable_status_planned {
  background-color: #f59e0b;
  color: white;
}

/* Project Content Styles */
.remarkable_project_content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.remarkable_project_header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.remarkable_icon_container {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 15px rgba(30, 58, 138, 0.25);
  animation: gentle-pulse 3s infinite;
}

.remarkable_project_info {
  flex: 1;
}

.remarkable_project_title {
  font-size: 1.4rem;
  color: #1e3a8a;
  /* margin: 0 0 0.8rem 0; */
  font-weight: 700;
  line-height: 1.3;
}

.remarkable_project_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.remarkable_project_location,
.remarkable_project_date {
  display: flex;
  align-items: center;
  margin: 0;
}

.remarkable_meta_icon {
  margin-right: 8px;
  stroke: #1e3a8a;
}

.remarkable_project_description {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

/* Button Styles */
.remarkable_button_container {
  margin-top: auto;
}

.remarkable_view_button {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(to right, #1e3a8a, #3b82f6);
  color: white !important;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(30, 58, 138, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.remarkable_view_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #3b82f6, #1e3a8a);
  transition: width 0.3s ease;
  z-index: -1;
}

.remarkable_view_button:hover::before {
  width: 100%;
}

.remarkable_view_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.remarkable_button_icon {
  margin-left: 0.6rem;
  transition: transform 0.3s ease;
}

.remarkable_view_button:hover .remarkable_button_icon {
  transform: translateX(4px);
}

.remarkable_view_all_container {
  text-align: center;
  margin-top: 2rem;
}

.remarkable_view_all_button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  color: #1e3a8a !important;
  border: 2px solid #1e3a8a;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.remarkable_view_all_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #1e3a8a;
  transition: width 0.3s ease;
  z-index: -1;
}

.remarkable_view_all_button:hover::before {
  width: 100%;
}

.remarkable_view_all_button:hover {
  color: white !important;
}

.remarkable_view_all_button:hover .remarkable_button_icon {
  transform: translateX(5px);
  color: white !important;
}

/* Animation Classes */
.js-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}

.js-scroll.fade-in-bottom {
  transform: translateY(40px);
}

.js-scroll.fade-in {
  transform: translateY(20px);
}

.js-scroll.scrolled {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Animation Keyframes */
@keyframes gentle-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(30, 58, 138, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 15px rgba(30, 58, 138, 0.25);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover effect */
.remarkable_project_card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.remarkable_project_card:hover::after {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .remarkable_projects_grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .remarkable_section_title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .remarkable_section_title {
    font-size: 2.2rem;
  }
  
  .remarkable_projects_grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .remarkable_container {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .remarkable_section_title {
    font-size: 1.8rem;
  }
  
  .remarkable_projects_grid {
    grid-template-columns: 1fr;
  }
  
  .remarkable_project_meta {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .remarkable_project_content {
    padding: 1.5rem;
  }
  
  .title-accent {
    width: 30px;
  }
}


/* ------------------------------------categories------------------------------------------------ */
/* Category Archive Styles */
.category-archive-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.archive-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.archive-description {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

.category-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.category-item-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-item-card:hover .card-image img {
  transform: scale(1.05);
}

.no-image-placeholder {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  height: 100%;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.card-excerpt {
  color: #666;
  margin-bottom: 15px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.read-more-link svg {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.read-more-link:hover svg {
  transform: translateX(3px);
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 5px 12px;
  margin: 0 3px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
}

.pagination .current {
  background: #0066cc;
  color: white;
}

.no-posts-found {
  text-align: center;
  padding: 60px 0;
  color: #666;
}

/* Single Item Styles */
.single-item-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.single-item-header {
  text-align: center;
  margin-bottom: 30px;
}

.item-title {
  font-size: 36px;
}

.item-featured-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.item-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.item-main-content {
  line-height: 1.6;
  color: #333;
}

.item-navigation {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.prev-item, .next-item, .back-to-archive {
  flex: 0 0 auto;
}

.back-to-archive a {
  display: inline-block;
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
}

.back-to-archive a:hover {
  background: #e5e5e5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-items-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .category-items-grid {
      grid-template-columns: 1fr;
  }
  
  .item-navigation {
      flex-direction: column;
      gap: 15px;
  }
}


/* ----------------------------------------------------award-------------------------- */

.awards-section-unique {
  padding: 20px 0;
 
  margin: 0 auto;
}

.awards-section-title-unique {
  text-align: center;
  margin-bottom: 50px;
}

.awards-section-title-unique h2 {
  font-size: 36px;
  color: #1e3a8a;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-weight: 700;
}

.awards-section-title-unique h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: #1e3a8a;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.awards-grid-unique {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.award-card-unique {
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp-unique 0.8s forwards;
}

/* Staggered animation delay for cards */
.award-card-unique:nth-child(1) { animation-delay: 0.1s; }
.award-card-unique:nth-child(2) { animation-delay: 0.3s; }
.award-card-unique:nth-child(3) { animation-delay: 0.5s; }
.award-card-unique:nth-child(4) { animation-delay: 0.7s; }
.award-card-unique:nth-child(5) { animation-delay: 0.9s; }
.award-card-unique:nth-child(6) { animation-delay: 1.1s; }

@keyframes fadeInUp-unique {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.card-inner-unique {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.award-card-unique:hover .card-inner-unique {
  transform: rotateY(180deg);
}

.card-front-unique, .card-back-unique {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.card-front-unique {
  background-color: #fff;
}

.card-front-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.award-card-unique:hover .card-front-unique img {
  transform: scale(1.05);
}

.card-front-unique::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(30, 58, 138, 0.8), transparent);
}

.card-front-title-unique {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  transition: transform 0.3s ease;
}

.award-card-unique:hover .card-front-title-unique {
  transform: translateY(-5px);
}

.card-back-unique {
  background: #1e3a8a;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.card-back-unique h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown-unique 0.5s forwards;
  animation-delay: 0.2s;
}

.card-back-unique p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-unique 0.5s forwards;
  animation-delay: 0.4s;
}

.award-card-unique:hover .card-back-unique h3,
.award-card-unique:hover .card-back-unique p {
  animation-play-state: running;
}

@keyframes fadeInDown-unique {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.card-back-unique .award-date-unique {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* CTA Button Styles */
.cta-container-unique {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  opacity: 0;
  animation: fadeIn-unique 1s forwards;
  animation-delay: 1.3s;
}

@keyframes fadeIn-unique {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.cta-button-unique {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: white !important;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.cta-button-unique:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3b82f6, #1e3a8a);
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button-unique:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(30, 58, 138, 0.4);
}

.cta-button-unique:hover:before {
  left: 0;
}

/* Pulse Animation */
.cta-button-unique {
  animation: pulse-unique 2s infinite;
}

@keyframes pulse-unique {
  0% {
      transform: scale(1);
      box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
  }
  50% {
      transform: scale(1.05);
      box-shadow: 0 15px 25px rgba(30, 58, 138, 0.4);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
  }
}

@media (max-width: 992px) {
  .awards-grid-unique {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .awards-grid-unique {
      grid-template-columns: 1fr;
  }
  
  .awards-section-title-unique h2 {
      font-size: 28px;
  }
  
  .cta-button-unique {
      padding: 14px 30px;
      font-size: 16px;
  }
}

.award-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.award-card-unique {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.award-card-link:hover .award-card-unique {
  transform: translateY(-5px);
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #0066cc;
  font-weight: bold;
}

/* Ensure the card flip still works */
.card-inner-unique {
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.award-card-unique:hover .card-inner-unique {
  transform: rotateY(180deg);
}

.card-front-unique, .card-back-unique {
  backface-visibility: hidden;
}

.card-back-unique {
  transform: rotateY(180deg);
}



/* =============================================timeline====================================== */
.tm-container {
  margin: 0;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tm-timeline-container {
  position: relative;
  margin: 0 auto 20px;
  overflow: hidden; /* Hide scrollbar */
  padding: 20px 0;
}

.tm-timeline-track {
  position: relative;
  width: max-content;
  display: flex;
  align-items: flex-start;
  padding: 0 20px;
  transition: transform 1.2s ease; /* Slower transition for smoother sliding */
}

/* Central line */
.tm-timeline-track::before {
  content: "";
  position: absolute;
  height: 4px;
  background: linear-gradient(to right, #2563eb, #3b82f6, #60a5fa);
  top: 80px;
  left: 20px;
  right: 20px;
  z-index: 1;
  border-radius: 2px;
}

.tm-timeline-item {
  position: relative;
  width: 200px;
  margin-right: 15px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  margin-top: 15px;
}

.tm-timeline-item.tm-visible {
  opacity: 1;
  transform: translateY(0);
}

.tm-timeline-item:last-child {
  margin-right: 0;
}

/* Year circle */
.tm-year-badge {
  width: 60px;
  height: 60px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.25);
}

/* Content card */
.tm-content {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid #2563eb;
}

.tm-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.tm-content-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.tm-content-title {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1f2937;
  line-height: 1.3;
}

.tm-content-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Enhanced Navigation arrows with better alignment */
.tm-nav-arrows {
  display: flex;
  justify-content: center; /* Center the arrows horizontally */
  gap: 20px; /* Add space between arrows */
  margin: 20px auto; /* Add margin for spacing */
  padding: 0 10px;
  position: relative; /* For proper positioning */
  z-index: 10;
}

.tm-nav-arrow {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

/* Add animation and hover effects */
.tm-nav-arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  top: 0;
  left: -100%;
  transition: all 0.3s ease;
  border-radius: 50%;
  z-index: -1;
}

.tm-nav-arrow:hover::before {
  left: 0;
}

.tm-nav-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.4);
}

/* Modern shiny effect */
.tm-nav-arrow::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 40%;
  background: rgba(255, 255, 255, 0.2);
  top: 5%;
  left: 5%;
  border-radius: 50%;
  filter: blur(3px);
}

/* Arrow pulsing animation - more subtle */
@keyframes tm-subtlePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }
}

.tm-nav-arrow {
  animation: tm-subtlePulse 2s infinite;
}

.tm-nav-arrow:hover {
  animation: none;
}

/* Updated view toggle to match arrow style */
.tm-view-toggle {
  display: flex;
  justify-content: center;

  gap: 15px;
}

.tm-view-btn {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  color: #4b5563;
  border: none;
  padding: 10px 20px;
  border-radius: 30px; /* Rounded buttons */
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tm-view-btn.tm-active {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.tm-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Gallery view */
.tm-gallery-view {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.tm-gallery-view.tm-active {
  display: flex;
}

.tm-gallery-item {
  width: calc(33.33% - 15px);
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.tm-gallery-item.tm-visible {
  opacity: 1;
  transform: scale(1);
}

/* Hide scrollbars but keep functionality */
.tm-timeline-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.tm-timeline-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Responsive */
@media screen and (max-width: 768px) {
  .tm-gallery-item {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 480px) {
  .tm-gallery-item {
    width: 100%;
  }

  .tm-timeline-item {
    width: 180px;
  }

  .tm-year-badge {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }
  
  .tm-nav-arrows {
    gap: 15px;
  }
  
  .tm-nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .tm-view-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}



/* page header====================================================== */



