/* 
 * Aicon Website - Hero and Vision CSS V3
 * Based on Figma design and user-provided reference images
 * GSAP version with improved animations and scroll triggers
 */

:root {
  /* Color variables */
  --primary-blue: #0033A0;
  --blue-gradient-start: #0033A0;
  --blue-gradient-end: #0078FF;
  --bright-blue: #1E90FF;
  --white: #FFFFFF;
  --black: #111111;
  --text-gray: rgba(255, 255, 255, 0.15);
  --text-blue: #1782FF;
  --card-bg: #FFFFFF;
  --card-text: #333333;
  --card-gery: #BCBCBC;
  --card-active: #1782FF;
  --tag-bg: #E6F0FF;
  --tag-text: #0078FF;
  --button-bg: #0078FF;
  --overlay-gray: rgba(0, 0, 0, 0.3);
  --partnership-bg: #D9D9D9;
  --footer-blue: #1782FF;
  --background-blue: #1782FF;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
}

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

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Spacer sections for GSAP ScrollTrigger */
.spacer {
  height: 100vh;
  width: 100%;
}

/* Loading screen - exact match to Figma */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-icon {
  width: 120px;
  height: 120px;
  background-image: url('../assets/main/loading.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.loading-progress {
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
}

/* Layout containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header - non-sticky as per latest requirements */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 40px;
  opacity: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: block;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  background-color: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
}

.nav-link {
  color: var(--text-blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link.active{
	cursor: default;
}

.nav-link.active::before {
    content: ""; /* Required for ::before */
    position: absolute;
    left: 0; /* Place before the text */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Vertical centering */
    width: 10px; /* Adjust based on image size */
    height: 10px; /* Adjust based on image size */
    background-image: url('../assets/main/active-menu.png'); /* Image path */
    background-size: contain; /* Fit image within element */
    background-repeat: no-repeat;
    background-position: center;
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
}

.hamburger-icon {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger-icon span {
    background-color: var(--white);
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu (Hidden on Desktop) */
.mobile-menu {
    display: none; /* Hidden on desktop */
}

/* Hero section - pixel perfect match to Figma */
.hero {
  background: linear-gradient(135deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-tag {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  z-index: 10;
}

.rectangle-154 {
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

.hero-title-container {
  position: relative;
  text-align: center;
}

.hero-title {
  font-size: 120px;
  font-weight: 700;
  color: var(--text-gray);
  line-height: 1.1;
  text-transform: lowercase;
  opacity: 0;
  transform: translateY(30px);
}

.banner-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60%;
  max-width: 600px;
  opacity: 0;
}

.home-banner-image{
  animation: float 2s ease-in-out infinite; /* Apply animation */
}

/* 
@keyframes float {
    0% {
        transform: translateY(0); 
    }
    50% {
        transform: translateY(-106px); 
    }
    100% {
        transform: translateY(0);
    }
}
 */

@media (min-width: 1600px) {
  .banner-element {
    width: 80%;
    max-width: 900px;
  }
}

.hero.blur {
  filter: blur(10px);
}

.banner-element img {
  width: 100%;
  height: auto;
}

.banner-element.blur {
  filter: blur(10px);
}

/* Vision and Mission Statement - exact match to Figma */
.vision-statement {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
}

.vision-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-text {
  font-size: 36px;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--text-gray);
  opacity: 0;
  transform: translateY(20px);
  font-weight: 500;
  position: relative;
  z-index: 2;
  padding-left: 30px;
}

.vision-text img {
  width: 12px;
  height: 12px;
  margin-right: 10px;
  vertical-align: middle;
}

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

/* What We Offer Section */
.what-we-offer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

/* Blue circle that transforms into background */
.blue-circle-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.blue-circle {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: var(--bright-blue);
  border-radius: 50% 50% 0 0;
  transform: translateY(100%);
  position: absolute;
  bottom: -50%;
}

/* Circle text navigation */
.circle-text-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}

.circle-text-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: auto;
  margin-top: 10px;
}

@media (min-width: 1600px) {
  .circle-text-img {
    top: 0;
    width: 100%;
    margin-top: 10px;
  }
}

/* Content sections */
.offer-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.offer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.offer-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
}

.offer-key-image {
  width: 70%;
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

@media (min-width: 1600px) {
  .offer-key-image {
    width: 100%;
    max-width: 600px;
  }
}

.offer-key-image img {
  width: 100%;
  height: auto;
}

.offer-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  max-width: 800px;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
}

/* See Our Works Section - Based on Frame 124.png */
.see-our-works {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bright-blue);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.see-our-works-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.see-our-works-icon {
  width: 200px;
  height: 200px;
  opacity: 0;
  transform: scale(0.8);
}

.see-our-works-icon img {
  width: 100%;
  height: auto;
}

/* Job Reference Section - Based on Frame 127.png */
.job-reference {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bright-blue);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.job-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
}

/* Grey overlay for inactive job cards */
.grey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-gray);
    z-index: 2;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0; /* Default hidden */
    transition: none; /* Ensure GSAP handles animations */
}

.job-card-content {
  background-color: var(--card-bg);
  border-radius: 20px;
  width: 90%;
  max-width: 1500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--card-text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Desktop layout for job cards - Updated to match reference */
@media (min-width: 768px) {
  .job-card-content {
    flex-direction: column;
    height: auto;
    max-height: 80vh;
  }
  
  .job-card-header {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .job-card-info {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
  
  .job-card-right {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .job-image {
    width: 100%;
    height: auto;
    max-height: 60vh;
    overflow: hidden;
  }
  
  .job-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* Mobile layout for job cards */
@media (max-width: 767px) {
  .job-card-content {
    flex-direction: column-reverse;
  }
  
  .job-card-header {
    padding: 20px;
    flex-direction: column;
  }
  
  .job-card-info {
    width: 100%;
  }
  
  .job-card-right {
    width: 100%;
    margin-top: 20px;
  }
  
  .job-image {
    width: 100%;
    height: auto;
  }
}

.job-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-blue);
}

.job-image {
  overflow: hidden;
}

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

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.job-tag {
  color: var(--tag-text);
  padding: 6px 12px;
  border-radius: 20px;
  border-color: var(--tag-text);
  border: solid 1px;  
  font-size: 14px;
  font-weight: 500;
}

.job-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--card-text);
}

.view-button {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px 30px 0px 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  align-self: end;
}

.view-button:after {
  content: '\003E';
  position: relative;
  top: 0;
  right: -10px;
  transition: 0.5s;
}

.view-button:hover {
  background-color: var(--primary-blue);
}

/**
 * Client Section Styles
 * Based on the design video and provided assets
 */

/* What Our Clients Say Section */
.clients-say {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

/* Blue circle animation for clients section */
.clients-circle-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.clients-circle {
  width: 100%;
  height: 100%;
  background-color: var(--bright-blue);
  border-radius: 50%;
  position: absolute;
  Padding-bottom: 100%
}

/* Main heading */
.clients-say-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-blue);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
  width:100%
}

/* Decorative elements */
.clients-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.binoculars-element {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 300px;
  height: auto;
  transform: rotate(-15deg);
}

.binoculars-element img {
  width: 100%;
  height: auto;
}

.stars-element {
  position: absolute;
  bottom: 25%;
  left: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stars-element img {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.great-result-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  transform: rotate(-5deg);
}

.ellipse-element {
  position: absolute;
}

.ellipse-1 {
  top: 30%;
  left: 50%;
  width: 80px;
  height: auto;
}

.ellipse-element img {
  width: 100%;
  height: auto;
}

.testimonial-card {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 450px;
  opacity: 1;
  transform: rotate(-25deg);
  pointer-events: auto;
}

.testimonial-card-2 {
  position: absolute;
  top: 60%;
  right: 5%;
  width: 450px;
  opacity: 1;
  transform: rotate(20deg);
  pointer-events: auto;
}

.testimonial-card-inner {
  background-color: var(--bright-blue);
  border-radius: 20px;
  padding: 30px;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 51, 160, 0.2);
}

.testimonial-quote {
  width: 100%;
  margin-bottom: 20px;
}

.testimonial-quote p {
  font-size: 24px;
  line-height: 1;
  font-weight: 100;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  width: 50%;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.4;
}

.testimonial-project {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.testimonial-project img {
  max-width: 100%;
  max-height: 120px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation classes */
.float-animation {
  animation: float 6s ease-in-out infinite;
}

.rotate-animation {
  animation: rotate 10s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

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

/**
 * Show Case Section Styles
 */

/* Show Case Section */
.show-case {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 30; /* Higher than .job-reference to layer above */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white); /* Light background, consistent with previous */
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.show-case-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    overflow-y: auto;
    align-items: center; /* Vertically center grid items */
    justify-items: center; /* Horizontally center grid items */ */
}

/* Offset case-card-1 and case-card-3 20% below case-card-2 */
#case-card-1,
#case-card-3 {
    transform: translateY(5vh); /* 5% of viewport height below their center */
}

.case-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 51, 160, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Ensure card takes full grid cell width */
    max-width: 350px; /* Optional: Limit card width for consistency */
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 51, 160, 0.15);
}

.case-card:hover#case-card-1,
.case-card:hover#case-card-3 {
    transform: translateY(calc(5vh - 5px));
}

.case-card-content {
    position: relative; /* Make this a positioning context for absolute child */
    display: flex;
    flex-direction: column;
}

.case-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-content {
    position: absolute; /* Position over the image */
    bottom: 0; /* Anchor to the bottom of case-card-content */
    left: 0;
    right: 0;
    padding: 15px 20px; /* Adjust padding for overlay */
    text-align: left;
    border-radius: 0 0 12px 12px; /* Match card's rounded corners at the bottom */
    background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgb(0 0 0));
}

.case-title {
    font-size: 18px;
    font-weight: 100;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end; /* Align tags to the right */
}

.case-tag {
    background-color: transparent;
    color: var(--white);
    font-size: 12px;
    font-weight: 100;
/*     text-transform: uppercase; */
    padding: 4px 8px;
    border-radius: 12px;
    border-color: var(--white);
    border: solid 1px;
    display: inline-block;
}

/* Partnership Section - New section based on partnership.jpg */
.partnership {
  position: relative;
  width: 100%;
  background-color: var(--partnership-bg);
  padding: 80px 0;
  border-radius: 50px 50px 0 0;
  z-index: 40;
}

.partnership-container {
  width: 100%;
  border-radius: 50px 50px 0 0;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partnership-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.partner-logo {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  height: 180px;
}

.partner-img {
  max-width: 100%;
  max-height: 60px;
  filter: brightness(0) invert(1);
}

/* Footer Section - New section based on footer.jpg */
.footer {
  position: relative;
  width: 100%;
  background-color: var(--partnership-bg);
  z-index: 45;
}

.footer-block{
  padding: 120px 0 60px;
  background-color: var(--footer-blue);
  border-radius: 50px 50px 0 0;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: flex;
  justify-content: right;
  gap: 100px;
  margin-bottom: 40px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-social {
  display: block;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 40px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.social-img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-copyright {
  color: var(--white);
  font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #ffffff00;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000; /* Ensure it’s above other content */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-4px);
}

.back-to-top img {
    width: 45px;
    height: auto;
    object-fit: contain; /* Ensure PNG scales nicely */
}



/* Responsive styles for partnership and footer */
@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .partnership-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  
  .footer-links {
    gap: 60px;
  }
  
  .circle-text-nav {
    scale: 2;
    top: 50%;
  }
}

@media (max-width: 768px) {
  .partnership {
    padding: 60px 0;
  }
  
  .partnership-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .partner-logo {
    height: 100px;
    padding: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .circle-text-nav {
    scale: 2;
    top: 50%;
  }
  
  .nav-menu, .binoculars-element, .stars-element {
	display: none;
  }
  
  .vision-text {
    font-size: 28px;
  }
  
  #case-card-1, #case-card-3 {
    transform: translateY(0vh);
  }
  
  .show-case {  
    z-index: 35;
  }
  
  .show-case-container {
	width: 75%;
	padding: 0;
	gap: 20px;
  }
  
  .clients-say-title {
    font-size: 32px;
  }
  
  .testimonial-card, .testimonial-card-2{
	  width: 380px
  }
  
  .hero-title {
    font-size: 100px;
  }
  
  .banner-element{
	width: 100%;
  }
  
  .clients-circle {
    height: 0;
  }

  .testimonial-quote p {
    font-size: 20px;
  }
  
  .author-info h4 {
	line-height: 1;
  }
  
  .ellipse-1 {
    top: 35%;
  }
  
	  /* Show Hamburger Icon */
	.hamburger-icon {
		display: flex;
	}

	/* Checkbox Hack: Toggle Mobile Menu */
	.mobile-menu-toggle {
		display: none; /* Still hidden, but used for toggling */
	}

	.mobile-menu-toggle:checked ~ .mobile-menu {
		transform: translateX(0); /* Slide in when checked */
	}

	/* Mobile Menu Styles */
	.mobile-menu {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		transform: translateX(100%); /* Hidden by default (off-screen to the right) */
		transition: transform 0.3s ease;
		z-index: 1000;
	}

	.mobile-menu-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 15px;
		border-bottom: 1px solid #e6e6e6;
	}

	.mobile-logo img {
		height: 40px; /* Adjust based on your logo size */
	}

	.close-icon {
		font-size: 24px;
		color: #0033a0;
		cursor: pointer;
	}

	.mobile-menu-links {
		display: flex;
		flex-direction: column;
		padding: 20px 15px;
	}

	.mobile-nav-link {
		color: #0033a0;
		font-family: 'Poppins', sans-serif;
		font-size: 18px;
		font-weight: 500;
		text-decoration: none;
		padding: 15px 0;
		border-bottom: 1px solid #e6e6e6;
		transition: color 0.3s ease;
	}

	.mobile-nav-link:hover {
		color: #0056d2;
	}
	
	.back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .back-to-top img {
        width: 40px;
        height: auto;
    }
}

/* FIXME: remove */
.job-description + a {
  display: none;
}