@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8B5CF6;
    --primary-purple-hover: #7C3AED;
    --lime-green: #C6F56F;
    --red-badge: #FCA5A5;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --bg-gray: #F3F4F6;
    --bg-dark: #1F2937;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-white: #FFFFFF;
    --border-light: #E5E7EB;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1365px;
    margin: 0 auto;
    padding: 0 20px;
}





@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* HERO SECTION CSS - WITH NAVBAR OVERLAY */

.hero-section-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 100px; 
}

.hero-background-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content-new {
    width: 100%;
    max-width: 1200px;
}

.hero-title-new {
    font-family: 'Sora', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-description-new {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.hero-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.hero-btn-new svg {
    transition: transform 0.3s ease;
}

.hero-btn-new:hover svg {
    transform: translateX(4px);
}

.fluid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: all;
}

@media (max-width: 1024px) {
    .hero-section-new {
        padding-top: 90px; 
    }
    
    .hero-content-wrapper {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        min-height: 100vh;
        padding-top: 80px; 
    }

    .hero-content-wrapper {
        padding: 80px 20px;
    }

    .hero-content-new {
        text-align: center;
        margin: 0 auto;
    }

    .hero-title-new {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-description-new {
        font-size: 1rem;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-btn-new {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .hero-background-new {
        background-image: url('Images/hero-bg.png');
        background-size: cover;
        background-position: center;
    }

    .hero-background-new .fluid-canvas {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section-new {
        padding-top: 70px; 
    }
    
    .hero-title-new {
        font-size: 1.75rem;
    }
}

/* Three cards section */
.three-cards-section {
    padding: 10px 0 70px 0;
    background: #ffffff;
}

.three-cards-section .container {
    max-width: 100%;
    padding: 0 20px;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.9fr;
    gap: 18px;
}

.card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    transition: transform 0.3s ease;
}

.card::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 91px;
    height: 79px;
    background-image: url('Images/ser-layer.png');
    border-radius: 0 0 20px 0;
    z-index: 2;
}

.card:hover {
    transform: translateY(-8px);
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-1 {
    background: linear-gradient(135deg, #2d3561 0%, #1e2340 100%);
}

.card-2 {
    background: linear-gradient(135deg, #4a5586 0%, #2d3561 100%);
}

.card-column-3 {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card-3a {
    background: linear-gradient(135deg, #b891e8 0%, #8b6bb8 100%);
    min-height: 115px;
    padding: 24px;
    text-align: center;
    justify-content: center;
}

.card-3a::before {
    display: none;
}

/* Counter Box Styling */
.card-3a .counter-box {
    margin-bottom: 12px;
}

/* Counter Number - Large with gradient fill */
.card-3a .counter-number {
    display: inline-block;
    background-color: transparent;
    color: #ac8de0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 80px;
    line-height: 80px;
    font-weight: 700;
    -webkit-text-stroke-width: 0px;
    background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 15%, #ffffff 100%);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 15%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

/* Counter Suffix - Matching style but smaller */
.card-3a .counter-suffix {
    display: inline-block;
    background-color: transparent;
    color: #ac8de0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    -webkit-text-stroke-width: 0px;
    background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 15%, #ffffff 100%);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 15%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    margin-left: 4px;
}

.card-3a .counter-label {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .card-3a .counter-number {
        font-size: 60px;
        line-height: 60px;
    }
    
    .card-3a .counter-suffix {
        font-size: 24px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .card-3a .counter-number {
        font-size: 50px;
        line-height: 50px;
    }
    
    .card-3a .counter-suffix {
        font-size: 20px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .card-3a .counter-number {
        font-size: 45px;
        line-height: 45px;
    }
    
    .card-3a .counter-suffix {
        font-size: 18px;
        line-height: 18px;
    }
}

.card-3b {
    background: linear-gradient(135deg, #6b5b95 0%, #4a4068 100%);
    min-height: 207px;
}

.card-3b::before {
    display: none;
}

.card-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

.card-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 14px;
}

.card-1 .card-title {
    max-width: 300px;
}

.card-2 .card-title {
    margin-top: 10px;
}

.card-description {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.social-icons li a img {
    width: 18px;
    height: 18px;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.card-arrow {
    position: absolute;
    bottom: 1px;
    right: 5px;
    width: 48px;
    height: 48px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 3;
}

.card-3a .counter-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
}

.counter-number {
    font-size: 58px;
    font-weight: 300;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-suffix {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
}

.counter-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.card-3b .card-content {
    margin-top: auto;
}

.card-3b .card-title {
    max-width: 270px;
}

.openai-logo {
    margin-top: 16px;
}

.openai-logo img {
    height: 24px;
    width: auto;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-column-3 {
        gap: 18px;
    }

    .card {
        min-height: 340px;
    }

    .card-3a {
        min-height: 115px;
    }

    .card-3b {
        min-height: 207px;
    }

    .card-badges {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .three-cards-section {
        padding: 45px 0 55px;
    }

    .card {
        min-height: 320px;
        padding: 26px;
    }

    .card-title {
        font-size: 17px;
    }

    .counter-number {
        font-size: 48px;
    }

    .counter-suffix {
        font-size: 26px;
    }

    .card-arrow {
        width: 42px;
        height: 42px;
        bottom: 18px;
        right: 18px;
    }
}

/* TEAM SECTION*/
.team-section {
    padding: 100px 0;
    text-align: center;
    background: #ffffff;
}

.team-section .section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section .section-title {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
}

.team-section .section-cta {
    margin-top: 40px;
}

.btn-team {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-purple);
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-team:hover {
    background: var(--primary-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* TEAM SECTION - MOBILE */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-section .section-content {
        padding: 0 20px;
    }

    .team-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .team-section .section-cta {
        margin-top: 30px;
    }

    .btn-team {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 50px 0;
    }

    .team-section .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .btn-team {
        padding: 12px 28px;
        font-size: 14px;
        width: 90%;
        max-width: 300px;
    }
}

/* SOLUTIONS SECTION*/
.solutions-section {
    padding: 100px 0 ;
    background: var(--bg-gray);
}

.solutions-section .section-header {
    display: block !important;
    text-align: center !important;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block !important; 
    width: 100% !important;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.solution-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    justify-content: space-between;
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 48px;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.solution-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
    flex-grow: 1;
}

.btn-white {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

/* SOLUTIONS SECTION - MOBILE */
@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }

    .solutions-section .section-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 15px;
    }
}

/*INTEGRATIONS SECTION*/
.integrations-section {
  padding: 56px 0 96px;
  background-color: #f8f9fa;
}

@media (min-width: 768px) {
  .integrations-section {
    padding: 64px 0 96px;
  }
}

@media (min-width: 1024px) {
  .integrations-section {
    padding: 88px 0 140px;
  }
}

@media (min-width: 1280px) {
  .integrations-section {
    padding: 100px 0 200px;
  }
}

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

.integrations-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (min-width: 1024px) {
  .integrations-content {
    flex-direction: row;
    gap: 80px;
  }
}

.integrations-text {
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .integrations-text {
    width: 50%;
    text-align: left;
  }
}

.integrations-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: #d4f4e1;
  color: #16a34a;
  border-radius: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.1s;
}

.integrations-title {
    font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.2s;
}

@media (min-width: 768px) {
  .integrations-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .integrations-title {
    font-size: 48px;
  }
}

.integrations-title-highlight {
  color: #8b5cf6;
  display: block;
}

@media (min-width: 1024px) {
  .integrations-title-highlight {
    display: inline;
  }
}

.integrations-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0 0 32px 0;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.3s;
}

@media (min-width: 1024px) {
  .integrations-description {
    max-width: 596px;
  }
}

.integrations-cta {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.4s;
}

.integrations-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #8b5cf6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 90%;
  text-align: center;
}

@media (min-width: 768px) {
  .integrations-btn {
    padding: 16px 40px;
    font-size: 18px;
    width: auto;
  }
}

.integrations-btn:hover {
  background-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.integrations-btn:active {
  transform: translateY(0);
}

.integrations-logos {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.5s;
}

@media (min-width: 1024px) {
  .integrations-logos {
    width: 50%;
  }
}

.gradient-left,
.gradient-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 15%;
  z-index: 10;
  pointer-events: none;
}

@media (min-width: 768px) {
  .gradient-left,
  .gradient-right {
    width: 20%;
  }
}

.gradient-left {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.gradient-right {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hide-on-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .hide-on-mobile {
    display: block;
  }
}

.marquee-track {
  display: flex;
  width: fit-content;
  will-change: transform;
  gap: 24px;
  backface-visibility: hidden;
  perspective: 1000px;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.logo-box {
  background-color: #ffffff;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .logo-box {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
}

@media (min-width: 1024px) {
  .logo-box {
    width: 96px;
    height: 96px;
    min-width: 96px;
  }
}

.logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marquee-ltr .marquee-track {
  animation: scroll-ltr 50s linear infinite;
}

@keyframes scroll-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-rtl .marquee-track {
  animation: scroll-rtl 50s linear infinite;
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/*servies*/

.services-carousel-section {
    padding: 100px 0 120px;
    background: #ffffff;
}

.services-carousel-section .section-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-bottom: 60px;
    gap: 40px !important;
}

.header-content {
    max-width: 55%;
}

.section-badge {
    display: block;
    width: fit-content;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
}

.carousel-nav {
    display: flex;
    gap: 0;
    background: #ecebeb;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2px;
    position: relative;
}

.carousel-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 15px;
    background: linear-gradient(90deg, #7b5cc8, #5e6bc9, #3480c8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.nav-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    color: #8b5cf6;
}

.nav-btn svg {
    width: 12px;
    height: 12px;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.services-swiper {
    overflow: visible;
    margin-left: 0;
    padding-left: 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    height: auto;
}

.service-card {
    position: relative;
    background: #eeeeee;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: -0.5px;
    right: -1px;
    width: 91px;
    height: 79px;
    background-image: url('Images/ser-layer.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 5;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.card-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    padding: 23px 20px 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 28px;
}

.image-label {
    position: absolute;
    bottom: -9px;
    left: 25px;
    font-size: 80px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.05em;
    white-space: nowrap;
    text-transform: lowercase;
}

.card-content {
    padding: 30px 25px 80px;
}

.card-title {
    font-family: 'Sora', sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
}

.card-arrow {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 56px;
    height: 55px;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.card-arrow:hover {
    background: #8b5cf6;
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .carousel-nav {
        align-self: flex-start;
    }
}

@media (max-width: 1024px) {
    .services-carousel-section .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 20px;
    }

    .header-content {
        max-width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .carousel-nav {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .services-carousel-section {
        padding: 60px 0 80px;
    }

    .services-carousel-section .section-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        min-height: 450px; 
    }

    .card-image {
        height: 300px; 
    }

    .image-label {
        font-size: 50px; 
        line-height: 45px; 
        bottom: -7px;
        left: 20px;
    }

    .card-content {
        padding: 25px 20px 70px;
    }

    .card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .service-card {
        min-height: 400px;
    }

    .card-image {
        height: 250px;
    }

    .card-content {
        padding: 20px 15px 65px;
    }

    .card-title {
        font-size: 16px;
    }
}

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.service-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10000;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-right: 40px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
    }

    .modal-title {
        font-size: 22px;
    }

    .modal-description {
        font-size: 15px;
    }
}
/*STACK CARDS SECTION*/
.stack-cards-section {
  position: relative;
  padding: 20px 0 100px;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .stack-cards-section {
    padding: 50px 300;
  }
}

@media (min-width: 1280px) {
  .stack-cards-section {
    padding: 80px 350;
  }
}

.stack-cards-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.stack-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
}

@media (min-width: 1024px) {
  .stack-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (min-width: 1280px) {
  .stack-cards-grid {
    gap: 100px;
  }
}

/*LEFT COLUMN - HOW IT WORKS*/
.stack-cards-left {
  width: 100%;
}

@media (min-width: 1024px) {
  .stack-cards-left {
    position: sticky;
    top: 112px;
    align-self: start;
  }
}

/* Feature Content */
.feature-content9 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Section Title */
.sec-title {
  margin-bottom: 20px;
}

.sec-title .sub-title {
  display: inline-block;
  color: #45d0bd;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sec-title .sub-text {
  display: inline-block;
  overflow: hidden;
}

.sec-title .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.sec-title .description {
  font-size: 16px;
  line-height: 1.75;
  color: #666666;
  margin: 0;
}

/* Animated Heading - Letter Animation */
.animated-heading .word {
  display: inline-block;
  white-space: nowrap;
}

.animated-heading .letter {
  display: inline-block;
}

.animated-heading .space {
  display: inline-block;
  width: 0.25em;
}

/* Feature Blocks */
.feature-block9 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.feature-block9:last-child {
  border-bottom: none;
}

.feature-block9:hover {
  padding-left: 8px;
}

.feature-block9 .block-number {
  flex-shrink: 0;
  position: relative;
  font-size: 60px;
  line-height: 50px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 2px rgba(85, 90, 177, 0.804);
  text-stroke: 2px rgba(0, 0, 0, 0.08);
  display: inline-block;
}

.feature-block9 .block-title {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}

.feature-block9 .block-text {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/*RIGHT COLUMN - STACKING CARDS*/
.stack-cards-right {
  width: 100%;
}

.stack-cards-wrapper {
  position: relative;
  width: 100%;
  max-width: 562px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .stack-cards-wrapper {
    max-width: 60%;
  }
}

@media (min-width: 768px) {
  .stack-cards-wrapper {
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .stack-cards-wrapper {
    max-width: 100%;
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .stack-cards-wrapper {
    max-width: 562px;
  }
}

.stack-card {
  position: relative;
  width: 100%;
  margin-bottom: 80px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.stack-card:last-child {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .stack-card {
    margin-bottom: 120px;
  }
}

@media (min-width: 1024px) {
  .stack-card {
    margin-bottom: 150px;
  }
}

.stack-card.is-stacking {
  position: sticky;
  top: 12vh;
}

.stack-card-inner {
  background-color: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .stack-card-inner {
    border-radius: 20px;
  }
}

@media (min-width: 768px) {
  .stack-card-inner {
    padding: 24px;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .stack-card-inner {
    padding: 32px;
  }
}

.stack-card-inner:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stack-card-icon {
  display: inline-flex;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .stack-card-icon {
    margin: 0;
  }
}

.stack-card-icon .icon-placeholder {
  font-size: 52px;
  line-height: 1;
  display: block;
}

.stack-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.stack-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .stack-card-title {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .stack-card-title {
    font-size: 24px;
  }
}

.stack-card-text {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .stack-card-text {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .stack-card-text {
    font-size: 16px;
  }
}

.stack-card {
  transform: translateY(0);
}

.stack-card-icon img,
.stack-card-icon .stack-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/*RESPONSIVE STYLES*/
@media (max-width: 1280px) {
  .sec-title .title {
    font-size: 36px;
  }
  
  .feature-block9 .block-number {
    font-size: 50px;
    line-height: 45px;
  }
  
  .feature-block9 .block-title {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .sec-title .title {
    font-size: 32px;
  }
  
  .feature-content9 {
    gap: 32px;
  }
  
  .feature-block9 {
    padding: 20px 0;
  }
  
  .feature-block9 .block-number {
    font-size: 45px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .sec-title .title {
    font-size: 28px;
  }
  
  .feature-block9 .block-number {
    font-size: 40px;
    line-height: 35px;
  }
  
  .feature-block9 .block-title {
    font-size: 20px;
  }
  
  .feature-block9 .block-text {
    font-size: 14px;
  }
}
.feature-section {
  padding: 100px 0;
}

.sub-title {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #6c6cff;
  margin-bottom: 16px;
  display: inline-block;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.description {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  margin-bottom: 40px;
}

.counter-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-box {
  font-size: 42px;
  font-weight: 700;
}

.counter-label {
  font-size: 14px;
  color: #666;
}

/* RIGHT SIDE */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.feature-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: #666;
}

/*FEATURE SECTION 7*/

.feature-sec7 {
  position: relative;
  padding: 20px 0;
}

.ser-content7 {
  max-width: 540px;
}

.ser-content7 .sec-title {
  margin-bottom: 260px;
}

.sub-title {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #45d0bd;
  margin-bottom: 16px;
}

.sec-title .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sec-title p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #666;
}

.about-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.solutions {
  font-size: 14px;
  color: #666;
}

/*FEATURE CARDS (RIGHT)*/

.feature-info7 {
  padding-top: 34px;
}

.feature-card7 {
  position: relative;
  margin-bottom: 50px;
}
.feature-card7:last-child {
  margin-bottom: 0;
}

.feature-card7 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 85px;
}

.feature-content7 {
  margin-left: 136px;
  padding-bottom: 26px;
    border-bottom: none !important;
  
}

.feature-content7.mb-0 {
  border-bottom: none !important;
  margin-bottom: 0;
}

.feature-content7 .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
.feature-content7 .title a {
  text-decoration: none;
  color: #111;
  font-size: 20px; 
  font-weight: 600; 
  transition: color 0.3s ease;
}

.feature-content7 .title a:hover {
  color: #46e1cf;
}

.feature-content7 p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 460px;
  color: #666;
}

/*HEADING ANIMATION SUPPORT*/

.animated-heading .word {
  display: inline-block;
  white-space: nowrap;
}

.animated-heading .letter {
  display: inline-block;
}

.animated-heading .space {
  display: inline-block;
  width: 0.25em;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 820px) {
  .ser-content7 .sec-title {
    margin-bottom: 50px;
  }

  .feature-card7 img {
    position: static;
    margin-bottom: 16px;
  }

  .feature-content7 {
    margin-left: 0;
  }
}

/* ===============================
   BUTTON STYLE
   =============================== */

.ibt-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ibt-btn-outline {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}

.ibt-btn-outline:hover {
  background: #111;
  color: #fff;
}
/* FEATURE-SEC7 GRID ONLY*/
.feature-sec7 .row {
  display: flex;
  flex-wrap: wrap;
}

.feature-sec7 .col-lg-6 {
  width: 50%;
}

/* Responsive for mobile */
@media (max-width: 992px) {
  .feature-sec7 .col-lg-6 {
    width: 100%;
  }
}

/*FEATURE-SEC7 COUNTER BOX*/
.feature-sec7 .counter-box4 .counter-number,
.feature-sec7 .counter-box4 .counter-text {
  font-family: "Manrope", Sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: -0.05em;

  color: transparent; 
  -webkit-text-stroke: 1px #8258c8; 
  text-stroke: 1px #8258c8; 
  -webkit-text-fill-color: transparent;

}

@media (max-width: 1025px) {
  .feature-sec7 .counter-box4 .counter-number,
  .feature-sec7 .counter-box4 .counter-text {
    font-size: 82px;
    line-height: 75px;
  }
}

@media (max-width: 390px) {
  .feature-sec7 .counter-box4 .counter-number,
  .feature-sec7 .counter-box4 .counter-text {
    font-size: 55px;
    line-height: 58px;
  }
}

/*counter box mobile improved*/
@media (max-width: 768px) {
    .feature-sec7 .about-counter {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .feature-sec7 .counter-box4 {
        display: flex;
        align-items: baseline;
        gap: 0;
        white-space: nowrap;
    }

    .feature-sec7 .counter-box4 .counter-number,
    .feature-sec7 .counter-box4 .counter-text {
        font-size: 72px;
        line-height: 72px;
        display: inline;
    }

    .feature-sec7 .solutions {
        font-size: 14px;
        line-height: 1.4;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .feature-sec7 .counter-box4 .counter-number,
    .feature-sec7 .counter-box4 .counter-text {
        font-size: 56px;
        line-height: 56px;
    }
}
/*CTA SECTION*/
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-content p {
        font-size: 16px;
        margin-bottom: 32px;
    }
}


/* Email Form Styling */
.cta-form {
    max-width: 500px;
    margin: 0 auto;
}

.cta-form .form-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    width: auto;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.email-input-wrapper:focus-within {
    background: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.email-icon {
    position: absolute;
    left: 20px;
    color: #9ca3af;
    pointer-events: none;
    flex-shrink: 0;
}

.cta-form .email-input {
    width: 100%;
    padding: 14px 20px 14px 52px ;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #1f2937;
    font-size: 16px;
    outline: none;
}

.email-input::placeholder {
    color: #9ca3af;
}

.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive adjustments - keep inline but adjust sizing */
@media (max-width: 640px) {
    .cta-form {
        max-width: 100%;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .email-input {
        padding: 12px 16px 12px 44px;
        font-size: 14px;
    }
    
    .email-icon {
        left: 16px;
        width: 18px;
        height: 18px;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
}


/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 100px 0 60px;
    background: #0A0B0F;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Gradient blur effects like reference */
.footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131, 231, 238, 0.35) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134, 79, 254, 0.50) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.social-links a:hover svg {
    fill: white;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    font-size: 14px;
}

/* FOOTER - MOBILE */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
    }

    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px;
    }

    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px;
    }

    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        font-size: 12px;
    }
}

/*LEGAL PAGES (Privacy Policy, Terms)*/
.legal-section {
    padding: 140px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
        border-radius: 12px;
    }
    
    .legal-section {
        padding: 120px 0 60px;
    }
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 28px;
    }
}

.legal-updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-purple);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-contact {
    background: var(--bg-gray);
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

.legal-contact p {
    margin-bottom: 8px;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}



/*COOKIE CONSENT BANNER*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-purple);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-purple);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--primary-purple-hover);
}

.cookie-btn.decline {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.cookie-btn.decline:hover {
    background: #e5e7eb;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   FADE IN ANIMATION
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  .marquee-ltr .marquee-track,
  .marquee-rtl .marquee-track,
  .marquee-container .marquee-content,
  .logos-marquee .marquee-content {
    animation: none;
  }

  .card-flipper,
  .stack-card,
  .stack-card-inner,
  .stack-cards-btn,
  .integrations-btn,
  .logo-box {
    transition: none;
  }

  .integrations-badge,
  .integrations-title,
  .integrations-description,
  .integrations-cta,
  .integrations-logos,
  .reviews-badge,
  .reviews-title,
  .marquee-container {
    animation: none;
    opacity: 1;
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title, .section-title {
        font-size: 36px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}


/*CONTACT SECTION*/
.contact-section {
    padding: 128px 0 64px;
    background: #d1d1d1; 
}

@media (min-width: 768px) {
    .contact-section {
        padding: 168px 0 64px;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 180px 0 80px;
    }
}

@media (min-width: 1280px) {
    .contact-section {
        padding: 180px 0 100px;
    }
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.contact-header {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-header h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contact-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 32px;
    }
}

@media (min-width: 1280px) {
    .contact-content {
        gap: 70px;
    }
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .contact-cards {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .contact-cards {
        flex-direction: column;
    }
}

.contact-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 44px;
    width: 100%;
    max-width: 371px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Background Overlays */
.contact-card-bg {
    position: absolute;
    user-select: none;
    pointer-events: none;
    overflow: hidden;
}

.contact-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card-bg-1 {
    width: 350px;
    height: 350px;
    top: -187px;
    left: 174px;
    transform: rotate(-78deg);
}

.contact-card-bg-2 {
    width: 350px;
    height: 350px;
    top: -206px;
    left: -36px;
    transform: rotate(62deg);
}

.contact-card-bg-3 {
    width: 450px;
    height: 450px;
    top: -264px;
    left: -255px;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: rgb(11, 11, 11);
}

.contact-card-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(13, 13, 13, 0.6);
}

.contact-card-text a {
    color: rgba(23, 22, 22, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card-text a:hover {
    color: rgba(30, 29, 29, 0.9);
}

/* Contact Form Container */
.contact-form-container {
    max-width: 847px;
    width: 100%;
    background: white;
    border-radius: 32px;
    padding: 24px;
    padding-bottom: 55px; 
}

@media (min-width: 768px) {
    .contact-form-container {
        padding: 32px;
        padding-bottom: 55px;
    }
}

@media (min-width: 1024px) {
    .contact-form-container {
        padding: 44px;
        padding-bottom: 55px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

@media (min-width: 1024px) {
    .form-row .form-group {
        max-width: 364px;
    }
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 9999px;
    border: 1px solid #D7DDE5;
    background: #FCFCFD;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.15s;
}

.form-group input {
    height: 48px;
}

@media (min-width: 1280px) {
    .form-group input {
        height: 41px;
    }
}

.form-group textarea {
    border-radius: 12px;
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 26, 28, 0.6);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #D7DDE5;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #864FFE;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #864FFE;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-label {
    font-size: 12px;
    color: rgba(26, 26, 28, 0.6);
    cursor: pointer;
}

.checkbox-link {
    color: #864FFE;
    text-decoration: underline;
    font-size: 12px;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--text-primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: capitalize;
}

.form-submit-btn:hover {
    background: #864FFE;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(134, 79, 254, 0.3);
}


/* Make anchor tags styled as buttons work properly */
a.btn-primary,
a.btn-cta {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

