/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 2.9;
  color: #333;
  overflow-x: hidden;
}

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

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

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

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

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

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideDown 0.8s ease-out;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 68px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.nav-link:nth-child(1) {
  animation-delay: 0.3s;
}
.nav-link:nth-child(2) {
  animation-delay: 0.4s;
}
.nav-link:nth-child(3) {
  animation-delay: 0.5s;
}

.nav-link:hover {
  color: #0E7F66;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #555;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(2) {
  margin: 3px 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  max-height: 200px;
}

.mobile-menu-content {
  padding: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #0E7F66;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-backgrounds {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.5s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 5rem;
    }
}

.hero-text {
    color: white;
    text-align: left;
    animation: heroFadeInUp 0.8s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.experience-badge {
    background-color: #eaeaed;
    border-radius: 20px;
    padding: 0.1rem 0.50rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #636363;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (min-width: 640px) {
    .experience-badge {
        border-radius: 30px;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
        gap: 1rem;
        font-size: 18px;
        letter-spacing: 0.81px;
    }
}

.avatars {
    display: flex;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatars {
        margin-left: -0.5rem;
    }
}
.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -0.5rem;
    }
}
.avatar-1 { background-color: #d1d5db; }
.avatar-2 { background-color: #9ca3af; }
.avatar-3 { background-color: #6b7280; }
.avatar-4 { background-color: #4b5563; }

.hero-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 1.5px;
        margin-bottom: 5.5rem;
    }
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 2.6px;
    }
}
.hero-subtitle {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    max-width: 90%;
}
@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: 0.8px;
        margin-bottom: 2rem;
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.42;
        letter-spacing: 1.1px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 28px;
        line-height: 1.43;
        letter-spacing: 1.4px;
        max-width: 724px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn {
    padding: 0.75rem 1rem;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.3px;
    border-radius: 10px;
    height: 46px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 16px;
        letter-spacing: 0.7px;
        height: 50px;
        width: auto;
        min-width: 240px;
    }
}

@media (min-width: 1024px) {
    .btn {
        font-size: 18px;
        letter-spacing: 0.9px;
        height: 58px;
        min-width: 260px;
    }
}

@media (min-width: 1280px) {
    .btn {
        min-width: 280px;
    }
}

.btn-primary {
    background-color: #0E7F66;
    color: white;
}

.btn-primary:hover {
  background: #1FA58A;
  box-shadow: 0 10px 25px #1FA58A;
}

.btn-group {
    display: flex;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-group {
        width: auto;
    }
}

.btn-secondary {
    border: 2px solid;
    color: #1cb40e;
    
    background: transparent;
    flex: 1;
    border-radius: 10px ;
    min-width: 200px;
}

@media (min-width: 1024px) {
    .btn-secondary {
        min-width: 220px;
    }
}

@media (min-width: 1280px) {
    .btn-secondary {
        min-width: 280px;
    }
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    background-color: #4f4f4f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
    font-size: 20px;
}

@media (min-width: 640px) {
    .btn-arrow {
        padding: 0 1rem;
    }
}


/* Section Styles */
.section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 9rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionHeaderFadeIn 0.6s ease-out forwards;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

@keyframes sectionHeaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #171712;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }
}

.highlight {
    color: #0E7F66;
}

.section-header p {
    font-size: 16px;
    color: #727272;
    letter-spacing: 0.5px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-header p {
        font-size: 20px;
        letter-spacing: 0.8px;
        max-width: 48rem;
    }
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 24px;
        letter-spacing: 1.1px;
        line-height: 1.42;
    }
}

@media (min-width: 1024px) {
    .section-header p {
        font-size: 28px;
        letter-spacing: 1.4px;
        line-height: 1.43;
        max-width: 88rem;
    }
}



/* Approach Section */


.approach-grid {
    display: grid;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.approach-card {
    background-color: #ffffff;
    border: 1px solid #e5e5db;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: #2c2c2c;
    transition: #777777;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeInUp 0.6s ease-out forwards;
}

@media (min-width: 640px) {
    .approach-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .approach-card {
        padding: 2rem;
    }
}

.approach-card:nth-child(2) {
    animation-delay: 0.2s;
}

.approach-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    position: relative;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .approach-icon {
        margin-bottom: 1.5rem;
    }
}

.icon-bg-1 {
    width: 30px;
    height: 30px;
    background: linear-gradient(to bottom, #1A9B88, #15bda7);
    border-radius: 5px;
    transform: rotate(15deg);
    position: absolute;
}
/*
@media (min-width: 640px) {
    .icon-bg-1 {
        width: 37px;
        height: 37px;
    }*/


.icon-bg-2 {
    width: 24px;
    height: 24px;
    background: linear-gradient(to bottom, #11a579, #0ae69c);
    border-radius: 5px;
    position: relative;
    margin-left: 3px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@media (min-width: 640px) {
    .icon-bg-2 {
        width: 30px;
        height: 30px;
    }
}

.approach-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #222c38;
    letter-spacing: 0.8px;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

@media (min-width: 640px) {
    .approach-card h3 {
        font-size: 24px;
        letter-spacing: 1.2px;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .approach-card h3 {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin-bottom: 1.5rem;
    }
}

.approach-card:hover h3 {
    color: #0E7F66;
}


.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.approach-card p {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    line-height: 1.57;
}

@media (min-width: 640px) {
    .approach-card p {
        font-size: 16px;
        letter-spacing: 0.6px;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .approach-card p {
        font-size: 18px;
        letter-spacing: 0.9px;
        line-height: 2;
    }
}




/* services section and anether body section */
/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 72px);
}

.section-header h1, .section-header h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: clamp(16px, 3vw, 24px);
    letter-spacing: -0.02em;
}

.section-header .highlight {
    color: #0E7F66;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 28px);
    color: #727272;
    letter-spacing: 0.05em;
    line-height: 1.4;
    max-width: min(90%, 1155px);
    margin: 0 auto;
}

/* Sections */
section {
    padding: clamp(50px, 8vw, 80px) 0;
    position: relative;
}
/* Services Section */
.services-section {
    padding-top: clamp(80px, 12vw, 120px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(30px, 6vw, 80px);
    justify-items: center;
}

.service-card {
    position: relative;
    max-width: min(100%, 400px);
    height: clamp(380px, 50vw, 565px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
    opacity: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.service-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(20px, 4vw, 30px);
    background: white;
    border-radius: 10px;
    margin: clamp(12px, 2vw, 20px);
    transform: translateY(100px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: bold;
    color: rgba(22, 22, 22, 0.6);
    margin-bottom: clamp(12px, 2vw, 16px);
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.card-content p {
    font-size: clamp(15px, 2vw, 18px);
    color: #8f9497;
    line-height: 1.5;
    letter-spacing: 0.025em;
}


/* Services Offer Section */
.services-offer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(25px, 4vw, 38px);
    margin-bottom: clamp(30px, 5vw, 40px);
}
.services-offer-grid .single-card {
    grid-column: auto;
}
.offer-card {
    height: clamp(350px, 45vw, 400px);
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.offer-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.offer-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.offer-overlay h3 {
    color: #0E7F66;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Specializations Section */
.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.specialization-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialization-card.slide-right {
    transform: translateY(40px);
}

.specialization-card.animate {
    transform: translateY(0);
    opacity: 1;
}
/* IFS Highlight - Purple */
.ifs-highlight {
    color: #5c2d91 !important; /* IFS Purple */
    text-shadow: 0 0 2px rgba(92, 45, 145, 0.3);
}

/* Oracle Highlight - Red */
.oracle-highlight {
    color: #c74634 !important; /* Oracle Red */
    text-shadow: 0 0 2px rgba(199, 70, 52, 0.3);
}

/* IFS Button - Purple */
.specialization-card:first-child .learn-more-btn {
    background: #5c2d91; /* IFS Purple */
    color: white;
    border: none;
}

.specialization-card:first-child .learn-more-btn:hover {
    background: #4a2373;
    box-shadow: 0 0px 0px rgba(92, 45, 145, 0.5);
    transform: translateY(-3px);
}

.specialization-card:first-child .learn-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 0px 0px rgba(92, 45, 145, 0.4);
}

/* Oracle Button - Red */
.specialization-card:last-child .learn-more-btn {
    background: #c74634; /* Oracle Red */
    color: white;
    border: none;
}

.specialization-card:last-child .learn-more-btn:hover {
    background: #a63828;
    box-shadow: 0 0px 0px rgba(199, 70, 52, 0.5);
    transform: translateY(-3px);
}

.specialization-card:last-child .learn-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 0px 0px rgba(199, 70, 52, 0.4);
}

/* Optional: Add hover effect to titles */
.specialization-card:hover .ifs-highlight {
    text-shadow: 0 0 0px rgba(92, 45, 145, 0.6);
}

.specialization-card:hover .oracle-highlight {
    text-shadow: 0 0 0px rgba(199, 70, 52, 0.6);
}

.spec-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: clamp(300px, 50vw, 500px);
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.specialization-card:hover .spec-image img {
    transform: scale(1.1);
}

.spec-mask {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        45deg,
        rgba(254, 202, 40, 0.2) 0%,
        rgba(254, 202, 40, 0.1) 100%
    ); */
}

.spec-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    align-content: space-around;
    flex-direction: row;
}

.spec-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: bold;
    color: #222c38;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.spec-content p {
    font-size: clamp(16px, 2vw, 18px);
    color: #8f9497;
    letter-spacing: 0.025em;
    line-height: 1.5;
    margin-bottom: clamp(20px, 3vw, 24px);
}

.learn-more-btn {
    background: #0E7F66;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.learn-more-btn:hover {
    background: #1FA58A;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(254, 202, 40, 0.3);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(254, 202, 40, 0.2);
}













/* Footer */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.pixabay.com/photo/2020/05/04/13/30/outdoors-5129182_960_720.jpg");
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
}

.footer-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

.footer-company {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-company {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #555;
}

.social-link:hover {
  background: #0E7F66;
  transform: scale(1.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-section-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links p {
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links p:hover {
  color: white;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }
}

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}



/* IFS Modal Styles */
.ifs-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.ifs-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}


.modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #0a0a0a;
}

.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(254, 202, 40, 0.3);
  border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(254, 202, 40, 0.5);
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: #0E7F66;
  border-color: #0E7F66;
  transform: rotate(90deg) scale(1.1);
}

.modal-close svg {
  width: 24px;
  height: 24px;
  color: white;
}

.modal-close:hover svg {
  color: #0a0a0a;
}

/* Navigation Arrows */
.modal-nav-arrow {
  position: fixed;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(254, 202, 40, 0.3);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-nav-up {
  bottom: 140px;
}

.modal-nav-down {
  bottom: 70px;
}

.modal-nav-arrow:hover {
  background: #0E7F66;
  border-color: #0E7F66;
  transform: scale(1.1);
}

.modal-nav-arrow svg {
  width: 24px;
  height: 24px;
  color: #0E7F66;
  transition: color 0.3s ease;
}

.modal-nav-arrow:hover svg {
  color: #0a0a0a;
}

.modal-nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Section Indicators */
.modal-section-indicators {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(254, 202, 40, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator-dot:hover {
  background: rgba(254, 202, 40, 0.5);
  transform: scale(1.3);
}

.indicator-dot.active {
  background: #0E7F66;
  box-shadow: 0 0 12px rgba(254, 202, 40, 0.6);
}

.modal-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.modal-section-snap {
  scroll-snap-align: start;
}

/* Modal Hero */
.modal-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.modal-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(12, 80, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(254, 202, 40, 0.06) 0%, transparent 50%);
}

.modal-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(254, 202, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 202, 40, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.modal-hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  animation: heroFadeInUp 0.8s ease-out;
}

.modal-hero-content h2 {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: bold;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Modal Sections */
.modal-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 60px);
  position: relative;
  background: #0a0a0a;
}

.modal-section h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 80px);
  letter-spacing: -0.02em;
}

/* Services Grid */
.modal-services-grid {
  display: grid;
  gap: clamp(30px, 5vw, 60px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}

.modal-service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(30px, 5vw, 40px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

.modal-service-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(254, 202, 40, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-service-icon {
  position: relative;
  margin-bottom: clamp(20px, 4vw, 30px);
  width: fit-content;
}

.modal-service-card .icon-bg-1 {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #1A9B88, #1581bd);
  border-radius: 8px;
  transform: rotate(15deg);
  position: absolute;
}

.modal-service-card .icon-bg-2 {
  width: 34px;
  height: 34px;
  background: linear-gradient(to bottom, #0c99ff, #0ce2ff);
  border-radius: 8px;
  position: relative;
  margin-left: 3px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-service-card .icon-bg-2 img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.modal-service-card h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: bold;
  color: white;
  margin-bottom: clamp(16px, 3vw, 20px);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.modal-service-card p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: clamp(16px, 3vw, 24px) 0;
}

.modal-list li {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.5;
}

.modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #0E7F66;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(254, 202, 40, 0.5);
}

.modal-note {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Why Choose Us Section */
.modal-why-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 4vw, 30px);
  max-width: 900px;
  margin: 0 auto;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(16px, 3vw, 24px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.modal-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(254, 202, 40, 0.4);
  transform: translateX(8px);
}

.feature-dot {
  width: 12px;
  height: 12px;
  background: #0E7F66;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(254, 202, 40, 0.6);
}

.modal-feature p {
  font-size: clamp(15px, 2vw, 18px);
  color: white;
  margin: 0;
  line-height: 1.4;
}

/* Clients Section */


.modal-clients-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.modal-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(30px, 5vw, 40px);
  max-width: 1000px;
  margin: 0 auto;
}



.modal-client-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(30px, 5vw, 40px);
  text-align: center;


}



.modal-client-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(254, 202, 40, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.client-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto clamp(16px, 3vw, 24px);
  background: linear-gradient(135deg, rgba(12, 80, 255, 0.15), rgba(12, 226, 255, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 226, 255, 0.3);
}

.client-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.modal-client-card p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: white;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modal-close {
    width: 44px;
    height: 44px;
    top: 16px;
    right: 16px;
  }

  .modal-nav-arrow {
    width: 44px;
    height: 44px;
    right: 16px;
  }

  .modal-nav-up {
    bottom: 120px;
  }

  .modal-nav-down {
    bottom: 60px;
  }

  .modal-section-indicators {
    right: 16px;
  }
  
  .modal-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
  .modal-container {
    scroll-behavior: smooth;
  }
}
/* Capabilities Section with Header */
.modal-capabilities-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.modal-capabilities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(12, 80, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(254, 202, 40, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.modal-capabilities-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(254, 202, 40, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 202, 40, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

.modal-section-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
  position: relative;
  z-index: 1;
  animation: headerFadeIn 0.8s ease-out;
}

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

.modal-section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: bold;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  position: relative;
  display: inline-block;
}

.modal-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0E7F66, transparent);
  border-radius: 2px;
}

/* Update services grid to have better spacing */
.modal-capabilities-section .modal-services-grid {
  position: relative;
  z-index: 1;
}
/* Oracle Modal - Reuses IFS Modal Styles */
.oracle-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.oracle-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Intro Text */
.modal-intro-text {
  max-width: 1000px;
  margin: 0 auto clamp(50px, 8vw, 70px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.modal-intro-text p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}

.modal-intro-text p:last-child {
  margin-bottom: 0;
}

/* Modal Divider */
.modal-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0E7F66, transparent);
  margin: clamp(60px, 10vw, 80px) auto;
  border-radius: 2px;
}

/* Secondary Heading */
.modal-secondary-heading {
  margin-top: clamp(60px, 10vw, 80px);
  margin-bottom: clamp(40px, 8vw, 60px);
}

/* Engagement Grid - Slightly Different Layout */
.modal-engagement-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive adjustments for modal intro text */
@media (max-width: 768px) {
  .modal-intro-text {
    text-align: left;
  }
}
/* Enhanced Approach Section Intro - Bold Highlight */
.approach-section .section-header {
    margin-bottom: clamp(60px, 8vw, 80px);
}

.approach-section .section-header h2 {
    margin-bottom: clamp(40px, 6vw, 60px);
}

.approach-section .section-header p {
   
    /*border: 1px solid #0E7F66;
    padding: clamp(35px, 5vw, 55px);
    border-radius: 18px;*/
    /* box-shadow: 
        0 15px 40px rgba(254, 202, 40, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1); */
    /*text-align: left;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.85;
    color: #2c2c2c;*/

            font-size: 28px;
        letter-spacing: 1.4px;
        line-height: 1.43;
        
}
/*
.approach-section .section-header p::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #0E7F66, #020d29);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.1;
}
*/
.approach-section .section-header p::after {
    
    position: absolute;
    top: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    font-size: clamp(30px, 5vw, 40px);
    opacity: 0.3;
}

/* Highlight the company name */
.approach-section .section-header p .highlight {
    font-weight: 700;
    color: #0E7F66;
    text-shadow: 0 0 1px rgba(12, 80, 255, 0.3);
}
/* Enhanced Services Section */
.services-section {
    padding-top: clamp(40px, 6vw, 60px);
    padding-bottom: clamp(60px, 10vw, 100px);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 202, 40, 0.3), transparent);
}

/* Services Header */
.services-section .section-header {
    margin-bottom: clamp(40px, 6vw, 60px);
}

.services-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
}

/* Image Cards Container */
.image-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(30px, 5vw, 50px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Individual Image Card */
.image-card {
    position: relative;
    height: clamp(400px, 50vw, 500px);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(0);
}

.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(254, 202, 40, 0.05) 0%,
        rgba(12, 80, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.image-card:hover {
    /* transform: translateY(-15px) scale(1.02); */
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(254, 202, 40, 0.3);
}

/* .image-card:hover::before {
    opacity: 1;
} */

/* Card Background Image */
.image-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .image-card:hover .image-card-bg {
    transform: scale(1.1);
} */

/* Gradient Overlay */
.image-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    transition: background 0.5s ease;
}

/* .image-card:hover .image-card-bg::after {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.9) 100%
    );
} */

/* Card Content */
.image-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(25px, 5vw, 40px);
    z-index: 2;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .image-card:hover .image-card-content {
    transform: translateY(-10px);
} */

/* Card Title */
.image-card-content h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: white;
    margin-bottom: clamp(12px, 2vw, 16px);
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.image-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0E7F66, #1A9B88);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* .image-card:hover .image-card-content h3::after {
    width: 100%;
} */

/* Card Description */
.image-card-content p {
    font-size: clamp(15px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin: 0;
    opacity: 0.95;
    transition: all 0.3s ease;
}

/* .image-card:hover .image-card-content p {
    opacity: 1;
    color: white;
} */

/* Icon Badge (Optional) */
.image-card-content::before {
    content: '→';
    position: absolute;
    top: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    width: 50px;
    height: 50px;
    background: rgba(254, 202, 40, 0.2);
    border: 2px solid rgba(254, 202, 40, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0E7F66;
    font-weight: bold;
    opacity: 0;
    transform: translate(10px, -10px) rotate(-45deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* .image-card:hover .image-card-content::before {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
} */

/* Number Badge for Each Card 
.image-card::after {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: #0E7F66;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    z-index: 3;
    /* box-shadow: 0 4px 12px rgba(254, 202, 40, 0.4); 
    transition: all 0.3s ease;
}*/

.image-card:hover::after {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 20px  #1A9B88;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .image-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-card {
        height: 450px;
    }
}

/* Animation on Scroll */
.image-card {
    opacity: 0;
    transform: translateY(50px);
    animation: cardFadeInUp 0.8s ease-out forwards;
}

.image-card:nth-child(1) {
    animation-delay: 0.1s;
}

.image-card:nth-child(2) {
    animation-delay: 0.3s;
}

.image-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Animation for Hover State */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(254, 202, 40, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(254, 202, 40, 0);
    }
}

  /* .image-card:hover {
      animation: pulse 1.5s infinite;
  } */

  /* Enhanced Approach Section */
.approach-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254, 202, 40, 0.5), transparent);
}

/* Approach Grid */
.approach-grid {
    display: grid;
    gap: clamp(30px, 5vw, 40px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Approach Card */
.approach-card {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: clamp(30px, 5vw, 45px);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideUp 0.6s ease-out forwards;
}

.approach-card:nth-child(1) { animation-delay: 0.1s; }
.approach-card:nth-child(2) { animation-delay: 0.3s; }
.approach-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Background Pattern */
.approach-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(254, 202, 40, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.approach-card:hover::before {
    opacity: 1;
    top: -20%;
    right: -20%;
}

/* Card Border Gradient on Hover */
.approach-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #0E7F66, #54e6d0, #8ef0da);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approach-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(254, 202, 40, 0.1);
}

.approach-card:hover::after {
    opacity: 1;
}

/* Enhanced Icon Container */
.approach-icon {
    position: relative;
    margin-bottom: clamp(24px, 4vw, 32px);
    width: fit-content;
}
/*
.icon-bg-1 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1A9B88 0%, #1A9B88 100%);
    border-radius: 16px;
    transform: rotate(15deg);
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(4, 216, 68, 0.25);
}
*/
.approach-card:hover .icon-bg-1 {
    transform: rotate(25deg) scale(1.05);
    /* box-shadow: 0 12px 32px #1A9B88; */
}
/*
.icon-bg-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0E7F66 0%, #0E7F66 100%);
    border-radius: 14px;
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 
        0 4px 16px rgba(12, 153, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}*/

.approach-card:hover .icon-bg-2 {
    transform: scale(1.1) translateY(-3px);
    /* box-shadow: 
        0 8px 24px rgba(12, 153, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4); */
}

.icon-bg-2 img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.approach-card:hover .icon-bg-2 img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Number Badge */
.approach-card {
    counter-increment: approach-counter;
}

.approach-grid {
    counter-reset: approach-counter;
}
/*
.approach-icon::before {
    content: counter(approach-counter, decimal-leading-zero);
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0E7F66, #0A5F4D);
    color: #fffefe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    z-index: 2;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}*/

.approach-card:hover .approach-icon::before {
    transform: scale(1.15) rotate(360deg);
    /* box-shadow: 
        0 6px 16px rgba(254, 202, 40, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4); */
}

/* Card Title */
.approach-card h3 {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: #222c38;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin-bottom: clamp(14px, 2.5vw, 18px);
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.approach-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0E7F66, #1A9B88);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.approach-card:hover h3 {
    color: #0E7F66;
}

.approach-card:hover h3::after {
    width: 100%;
}

/* Card Description */
.approach-card p {
    font-size: clamp(15px, 2.2vw, 17px);
    color: #5a6c7d;
    letter-spacing: 0.2px;
    line-height: 1.75;
    margin: 0;
    transition: color 0.3s ease;
}

.approach-card:hover p {
    color: #3d4f5d;
}

/* Decorative Corner Elements */
.approach-card:nth-child(1)::before {
    background: radial-gradient(
        circle,
        rgba(254, 202, 40, 0.08) 0%,
        transparent 70%
    );
}

.approach-card:nth-child(2)::before {
    background: radial-gradient(
        circle,
        rgba(12, 80, 255, 0.08) 0%,
        transparent 70%
    );
}

.approach-card:nth-child(3)::before {
    background: radial-gradient(
        circle,
        rgba(12, 226, 255, 0.08) 0%,
        transparent 70%
    );
}

/* Arrow Indicator */
.approach-card h3::before {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    color: #0E7F66;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover h3::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Shine Effect on Hover */
.approach-card .icon-bg-2::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.approach-card:hover .icon-bg-2::after {
    transform: translateX(100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        padding: clamp(25px, 5vw, 35px);
    }

    .icon-bg-1 {
        width: 60px;
        height: 60px;
    }

    .icon-bg-2 {
        width: 52px;
        height: 52px;
    }

    .icon-bg-2 img {
        width: 24px;
        height: 24px;
    }
}

/* Accessibility - Focus States */
.approach-card:focus-within {
    outline: 3px solid rgba(254, 202, 40, 0.5);
    outline-offset: 4px;
}

/* Add subtle animation loop */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.approach-card:hover .approach-icon {
    animation: float 2s ease-in-out infinite;
}
/* Enhanced Specializations Section */
.specializations-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 10vw, 100px) 0;
}

.specializations-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(254, 202, 40, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Specializations Grid */
.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: clamp(40px, 6vw, 60px);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Enhanced Specialization Card */
.specialization-card {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 5vw, 40px);
    opacity: 0;
    transform: translateY(50px);
    animation: cardFadeIn 0.8s ease-out forwards;
    position: relative;
}

.specialization-card.slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.specialization-card.slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

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

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

/* Enhanced Spec Image */
.spec-image {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: clamp(350px, 50vw, 450px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin: 0 auto;
}

.spec-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0E7F66, #1A9B88);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.specialization-card:hover .spec-image {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15);
}

.specialization-card:hover .spec-image::before {
    opacity: 1;
}

.spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialization-card:hover .spec-image img {
    transform: scale(1.08);
}

/* Spec Mask Overlay */
.spec-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    transition: background 0.5s ease;
}

.specialization-card:hover .spec-mask {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Badge on Image */
.spec-image::after {
    content: 'ERP Solution';
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0E7F66;
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(254, 202, 40, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.specialization-card:hover .spec-image::after {
    transform: scale(1.05);
    box-shadow: 0 6px 16px #0E7F66;
}

/* IFS Specific Badge */
.specialization-card:first-child .spec-image::after {
    content: 'IFS Solution';
    background: rgba(99, 99, 100, 0.95);
    color: white;
    box-shadow: 0 4px 12px rgba(92, 45, 145, 0.4);
}

/* Oracle Specific Badge */
.specialization-card:last-child .spec-image::after {
    content: 'Oracle Solution';
    background: rgba(99, 99, 100, 0.95);
    color: white;
    box-shadow: 0 4px 12px rgba(199, 70, 52, 0.4);
}

/* Enhanced Spec Content */
.spec-content {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vw, 24px);
    align-items: flex-start;
    position: relative;
}

/* Enhanced Title */
.spec-content h3 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #222c38;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin: 0;
    position: relative;
    transition: all 0.4s ease;
}

.spec-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0E7F66, #1A9B88);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialization-card:hover .spec-content h3::after {
    width: 100%;
}

/* IFS Highlight Enhanced */
.ifs-highlight {
    color: #3e3e3f !important;
    background: linear-gradient(135deg, #3e3e3f 0%, #3e3e3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.specialization-card:hover .ifs-highlight {
    filter: drop-shadow(0 0 8px rgba(101, 101, 102, 0.4));
}

/* Oracle Highlight Enhanced */
.oracle-highlight {
    color: #3e3e3f !important;
    background: linear-gradient(135deg, #3e3e3f 0%, #3e3e3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.specialization-card:hover .oracle-highlight {
    filter: drop-shadow(0 0 8px rgba(54, 54, 54, 0.4));
}

/* Enhanced Description */
.spec-content p {
    font-size: clamp(16px, 2.5vw, 19px);
    color: #5a6c7d;
    letter-spacing: 0.2px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.specialization-card:hover .spec-content p {
    color: #3d4f5d;
}

/* Enhanced Learn More Buttons */
.learn-more-btn {
    background: #0E7F66;
    color: #0a0a0a;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 4px 15px #0E7F66; */
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.learn-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.learn-more-btn::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.learn-more-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.learn-more-btn:hover {
    padding-right: 48px;
    box-shadow: 0 8px 25px rgba(254, 202, 40, 0.5);
}

/* IFS Button - Purple */
.specialization-card:first-child .learn-more-btn {
    background: linear-gradient(135deg, #057960 0%, #057960 100%);
    color: white;
    /* box-shadow: 0 4px 15px rgba(92, 45, 145, 0.3); */
}

.specialization-card:first-child .learn-more-btn:hover {
    background: linear-gradient(135deg, #057960 0%, #057960 100%);
    /*  box-shadow: 0 8px 25px rgba(92, 45, 145, 0.5); */
    transform: translateY(-3px);
}

.specialization-card:first-child .learn-more-btn::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Oracle Button - Red */
.specialization-card:last-child .learn-more-btn {
    background: linear-gradient(135deg, #057960 0%, #057960 100%);
    color: white;
    /* box-shadow: 0 4px 15px rgba(199, 70, 52, 0.3); */
}

.specialization-card:last-child .learn-more-btn:hover {
    background: linear-gradient(135deg, #057960 0%, #057960 100%);
    /* box-shadow: 0 8px 25px rgba(199, 70, 52, 0.5); */
    transform: translateY(-3px);
}

.specialization-card:last-child .learn-more-btn::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Decorative Elements */
.spec-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #0E7F66, #1A9B88);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.specialization-card:hover .spec-content::before {
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .specializations-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .spec-image {
        max-width: 100%;
        height: 400px;
    }

    .spec-content {
        align-items: center;
        text-align: center;
    }

    .spec-content::before {
        display: none;
    }
}

/* Add floating animation */
@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.specialization-card:hover .spec-image {
    animation: floatImage 3s ease-in-out infinite;
}
/* Footer Link Styling */
.footer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

/* Update footer grid for 4 columns */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Contact Item Alignment Fix */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact Text Wrapper */
.contact-text {
  flex: 1;
}

.contact-text p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Clickable Contact Links */
.contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #1FA58A;
  transform: translateX(2px);
}

/* Ensure footer sections are well spaced */
.footer-section {
  display: flex;
  flex-direction: column;
}

/* Remove default margins on footer contact items */
.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact span {
  display: block;
  line-height: 1.6;
}
/* Footer Copyright Styling */
.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .footer-copyright {
    font-size: 18px;
    letter-spacing: 0.6px;
  }
}

@media (min-width: 1024px) {
  .footer-copyright {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

/* Highlight Text for Exam Genius FZCO */
.highlight-text {
  color: #f8fafa;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(254, 202, 40, 0.3);
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #feca28, transparent);
  opacity: 0.6;
}

.footer-copyright:hover .highlight-text {
  text-shadow: 0 0 25px rgba(254, 202, 40, 0.5);
  transform: scale(1.02);
}