
:root {
    --primary: #00bcd4;
    --secondary: #80deea;
    --background: #f5f5f5;  /* Changed from #ffffff to a softer gray */
    --text: #1a1a1a;
    --card-bg: #ffffff;     /* Changed to white, creating contrast with background */
    --accent: #006064;
}

[data-theme="dark"] {
    --primary: #00bcd4;
    --secondary: #006064;
    --background: #0a0a0a;
    --text: #ffffff;
    --card-bg: #1a1a1a;
    --accent: #80deea;
}

/* Update nav background for light theme */
[data-theme="light"] nav {
    background: rgba(245, 245, 245, 0.9); /* Match new background color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

nav {
position: fixed;
top: 0;
width: 100%;
padding: 1.5rem;
background: rgba(10, 10, 10, 0.95); /* Default dark background */
backdrop-filter: blur(10px);
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s;
}

[data-theme="light"] nav {
background: rgba(255, 255, 255, 0.9); /* Light theme background */
}


.theme-toggle {
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin-top: 2px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    background: transparent;
    transition: all 0.3s;
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--background);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
display: flex;
align-items: center; /* Align items in the center vertically */
gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 17px;
    right: 0;
    width: 100%;
    background-color: var(--background);
    height: 100vh;
    padding: 2rem;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    margin: 1.5rem 0;
    color: var(--text);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 500;
}


/* .hero {
height: 100vh;
display: flex;
align-items: center;
padding: 0 10%;
background: linear-gradient(45deg, var(--background), var(--card-bg));
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
width: 200%;
height: 200%;
background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
opacity: 0.1;
animation: rotate 20s linear infinite;
}

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

.hero-content {
max-width: 600px;
position: relative;
z-index: 1;
}

.hero h1 {
font-size: 4rem;
margin-bottom: 1.5rem;
line-height: 1.2;
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: var(--text);
opacity: 0.8;
} */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  background: linear-gradient(135deg, var(--background), var(--card-bg));
  position: relative;
  overflow: hidden;
}

/* Background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.07;
  animation: rotate 30s linear infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  filter: blur(20px);
  animation-duration: 25s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 15%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  filter: blur(30px);
  animation-duration: 30s;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 30%;
  background: var(--accent);
  filter: blur(15px);
  animation-duration: 20s;
  animation-delay: 5s;
}

.particle:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 30%;
  right: 30%;
  background: var(--primary);
  filter: blur(10px);
  animation-duration: 18s;
  animation-delay: 3s;
}

/* Hero content styles */
.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-content:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  filter: blur(8px);
  opacity: 0.3;
  z-index: -1;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* CTA Button Style */
.hero .cta-button {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.hero .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.hero .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.hero .cta-button:hover::before {
  opacity: 1;
}

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

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-down:hover {
  opacity: 1;
}

.scroll-down span {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text);
  border-radius: 50px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--text);
  border-radius: 100%;
  animation: scroll 2s infinite;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(5px) translateX(-15px);
  }
  75% {
    transform: translateY(15px) translateX(5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-content {
    padding: 2rem;
    max-width: 100%;
  }
  
  .particle:nth-child(1),
  .particle:nth-child(3) {
    display: none;
  }
}
.cta-button {
display: inline-block;
padding: 1rem 2rem;
background: var(--primary);
color: var(--background);
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: all 0.3s;
position: relative;
overflow: hidden;
}

.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: 0.5s;
}

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




.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--primary);
}

.services, .tech-stack {
    padding: 100px 10%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}



.tech-stack-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
padding: 2rem;
transition: all 0.3s ease;
}

.tech-card {
position: relative;
padding: 2rem;
text-align: center;
background: var(--card-bg);
border-radius: 15px;
transition: all 0.3s;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-icon {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--primary);
transition: color 0.3s ease;
}

.tech-card:hover .tech-icon {
color: var(--secondary);
}

.tech-card h3 {
margin: 1rem 0;
font-size: 1.8rem;
color: var(--text);
}

.tech-card p {
font-size: 1.1rem;
color: var(--text);
opacity: 0.8;
}
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 1001;
}
@media (max-width: 768px) {
.tech-stack-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}


/* Enhanced About Section Styles */
.about-us {
    padding: 120px 10%;
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.05));
    z-index: 0;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--secondary-rgb), 0.2));
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--background);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-badge .years {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.floating-badge .text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.3rem;
}

.about-header {
    margin-bottom: 2rem;
}

.about-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.about-header h3 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.achievement-card i {
    font-size: 2rem;
    color: var(--primary);
}

.achievement-card h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.achievement-card p {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
}

/* Enhanced Process Section Styles */
.process-section {
    padding: 120px 10%;
    background: var(--background);
    position: relative;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline {
    position: relative;
    padding: 3rem 0;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-icon-container {
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    border: 3px solid var(--primary);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-connector {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% - 40px);
    background: var(--primary);
    opacity: 0.3;
}

.process-step:last-child .step-connector {
    display: none;
}

.process-content {
    flex: 1;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.process-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--primary);
    color: var(--background);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.process-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.process-content p {
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-features {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.process-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
    opacity: 0.8;
}

.process-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-icon-container {
        display: flex;
        justify-content: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-content:hover {
        transform: translateY(-5px);
    }
}

.contact {
    padding: 100px 10%;
    background: var(--card-bg);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--primary);
    border-radius: 5px;
    background: var(--background);
    color: var(--text);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--background);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

footer {
    padding: 3rem 10%;
    background: var(--card-bg);
    text-align: center;
}

/* FAQ Section Styles */
.faq-section {
padding: 100px 10%;
background: var(--background);
position: relative;
}

.faq-container {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
margin-bottom: 1.5rem;
border-radius: 10px;
background: var(--card-bg);
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid transparent;
}

.faq-item:hover {
border-color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-question {
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
font-size: 1.1rem;
color: var(--text);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease, padding 0.5s ease;
background: rgba(0,0,0,0.03);
border-top: 0px solid var(--primary);
}

.faq-answer-content {
padding: 0 1.5rem;
opacity: 0;
transform: translateY(10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 300px;
padding-top: 1rem;
padding-bottom: 1.5rem;
border-top: 2px solid var(--primary);
}

.faq-item.active .faq-answer-content {
opacity: 1;
transform: translateY(0);
}

.faq-toggle {
background: var(--primary);
border-radius: 50%;
height: 30px;
width: 30px;
display: flex;
align-items: center;
justify-content: center;
color: var(--background);
font-size: 14px;
transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
transform: rotate(135deg);
}

/* Animated accent */
.faq-section::before {
content: '';
position: absolute;
width: 200px;
height: 200px;
background: var(--primary);
border-radius: 50%;
opacity: 0.05;
top: 50px;
left: 5%;
filter: blur(50px);
}

.faq-section::after {
content: '';
position: absolute;
width: 150px;
height: 150px;
background: var(--secondary);
border-radius: 50%;
opacity: 0.05;
bottom: 50px;
right: 5%;
filter: blur(40px);
}

/* Search bar */
.faq-search-container {
margin-bottom: 3rem;
position: relative;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}

.faq-search {
width: 100%;
padding: 1rem 1.5rem;
border-radius: 50px;
border: 2px solid var(--primary);
background: var(--card-bg);
color: var(--text);
font-size: 1rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.faq-search:focus {
outline: none;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
transform: translateY(-2px);
}

.faq-search-icon {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
color: var(--primary);
}


/* CTA Section Styles */
.cta-section {
padding: 100px 10%;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.cta-container {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.cta-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 1.5rem;
color: var(--background);
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-description {
font-size: 1.2rem;
margin-bottom: 2.5rem;
color: var(--background);
opacity: 0.9;
max-width: 600px;
line-height: 1.6;
}

.cta-button-group {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
justify-content: center;
}

.cta-main-button {
padding: 1.2rem 2.5rem;
background: var(--background);
color: var(--primary);
font-weight: 700;
font-size: 1.1rem;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
border: 2px solid var(--background);
display: flex;
align-items: center;
gap: 0.5rem;
}

.cta-main-button:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cta-alt-button {
padding: 1.2rem 2.5rem;
background: transparent;
color: var(--background);
font-weight: 700;
font-size: 1.1rem;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
border: 2px solid var(--background);
display: flex;
align-items: center;
gap: 0.5rem;
}

.cta-alt-button:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-5px);
}

.cta-shape {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
z-index: 1;
}

.cta-shape-1 {
width: 300px;
height: 300px;
top: -150px;
left: -150px;
}

.cta-shape-2 {
width: 200px;
height: 200px;
bottom: -100px;
right: 10%;
}

.cta-shape-3 {
width: 150px;
height: 150px;
top: 20%;
right: -50px;
}

.cta-floating-icon {
position: absolute;
font-size: 2rem;
color: rgba(255, 255, 255, 0.2);
z-index: 1;
animation: float 6s ease-in-out infinite;
}

.cta-icon-1 {
top: 15%;
left: 10%;
animation-delay: 0s;
}

.cta-icon-2 {
top: 25%;
right: 15%;
animation-delay: 1s;
}

.cta-icon-3 {
bottom: 20%;
left: 20%;
animation-delay: 2s;
}

@keyframes float {
0% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(5deg);
}
100% {
transform: translateY(0) rotate(0deg);
}
}

.cta-trust-badges {
display: flex;
gap: 2rem;
justify-content: center;
margin-top: 3rem;
flex-wrap: wrap;
}

.cta-badge {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--background);
font-weight: 500;
}

.cta-badge i {
font-size: 1.5rem;
}

/* Animation for elements */
.cta-animated {
animation: fadeInUp 1s ease forwards;
opacity: 0;
}

.cta-delay-1 {
animation-delay: 0.2s;
}

.cta-delay-2 {
animation-delay: 0.4s;
}

.cta-delay-3 {
animation-delay: 0.6s;
}

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

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

.cta-title {
font-size: 2.2rem;
}

.cta-button-group {
flex-direction: column;
width: 100%;
max-width: 300px;
}

.cta-main-button, .cta-alt-button {
width: 100%;
justify-content: center;
}

.cta-trust-badges {
flex-direction: column;
align-items: center;
gap: 1rem;
}
}
@media (max-width: 768px) {
.faq-section {
padding: 80px 5%;
}

.faq-question {
font-size: 1rem;
padding: 1.2rem;
}
}
/* Scroll Animations */


/* Enhanced Footer Styles */
.enhanced-footer {
    position: relative;
    background: var(--background);
    padding-top: 100px;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-about {
    animation: fadeInUp 0.6s ease-out;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
}

.footer-heading {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-right: 0.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: rotate(90deg);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    animation: fadeInRight 0.6s ease-out;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-right: 1rem;
}

.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--background-alt);
    color: var(--text-primary);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--primary);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-policy-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: var(--primary);
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policy-links {
        justify-content: center;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  [data-theme="dark"] .testimonials::before {
    background: radial-gradient(circle at 30% 20%, rgba(125, 90, 255, 0.1) 0%, transparent 50%);
  }
  
  [data-theme="light"] .testimonials::before {
    background: radial-gradient(circle at 30% 20%, rgba(125, 90, 255, 0.05) 0%, transparent 50%);
  }
  
  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .testimonial-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  [data-theme="dark"] .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  [data-theme="light"] .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
  }
  
  [data-theme="dark"] .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  [data-theme="light"] .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-header {
    margin-bottom: 25px;
  }
  
  .testimonial-author {
    flex: 1;
  }
  
  .testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }
  
  [data-theme="dark"] .testimonial-name {
    color: #ffffff;
  }
  
  [data-theme="light"] .testimonial-name {
    color: #333333;
  }
  
  .testimonial-role {
    font-size: 0.9rem;
    margin-top: 5px;
  }
  
  [data-theme="dark"] .testimonial-role {
    color: rgba(255, 255, 255, 0.6);
  }
  
  [data-theme="light"] .testimonial-role {
    color: rgba(0, 0, 0, 0.6);
  }
  
  .testimonial-quote {
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  [data-theme="dark"] .testimonial-quote {
    color: rgba(255, 255, 255, 0.8);
  }
  
  [data-theme="light"] .testimonial-quote {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
  }
  
  [data-theme="dark"] .testimonial-quote::before {
    color: rgba(125, 90, 255, 0.2);
  }
  
  [data-theme="light"] .testimonial-quote::before {
    color: rgba(125, 90, 255, 0.1);
  }
  
  .testimonial-rating {
    display: flex;
    gap: 5px;
  }
  
  .star {
    color: #ffd700;
    font-size: 1.2rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonial-card {
      padding: 30px;
    }
  }
/* Enhanced Footer Styles */
/* footer {
background: var(--card-bg);
padding: 5rem 10% 2rem;
position: relative;
overflow: hidden;
}

.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-logo {
color: var(--primary);
font-size: 1.8rem;
font-weight: bold;
margin-bottom: 1.5rem;
display: inline-block;
}

.footer-about p {
color: var(--text);
opacity: 0.8;
line-height: 1.6;
margin-bottom: 1.5rem;
}

.footer-heading {
color: var(--text);
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.5rem;
}

.footer-heading::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background: var(--primary);
border-radius: 2px;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: var(--text);
opacity: 0.7;
text-decoration: none;
transition: all 0.3s;
display: inline-flex;
align-items: center;
}

.footer-links a:hover {
opacity: 1;
color: var(--primary);
transform: translateX(5px);
}

.footer-links a i {
margin-right: 0.5rem;
font-size: 0.9rem;
}

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

.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--background);
color: var(--primary);
border-radius: 50%;
font-size: 1.2rem;
transition: all 0.3s;
border: 1px solid var(--primary);
}

.social-icon:hover {
background: var(--primary);
color: var(--background);
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-subscribe {
margin-top: 1.5rem;
}

.footer-subscribe form {
display: flex;
max-width: 100%;
}

.footer-subscribe input {
flex: 1;
padding: 0.8rem 1rem;
border: 1px solid var(--primary);
border-radius: 5px 0 0 5px;
background: var(--background);
color: var(--text);
}

.footer-subscribe button {
padding: 0.8rem 1rem;
background: var(--primary);
color: var(--background);
border: none;
border-radius: 0 5px 5px 0;
cursor: pointer;
transition: all 0.3s;
}

.footer-subscribe button:hover {
background: var(--secondary);
}

.footer-contact-item {
display: flex;
align-items: center;
margin-bottom: 1rem;
color: var(--text);
opacity: 0.8;
}

.footer-contact-item i {
margin-right: 1rem;
color: var(--primary);
font-size: 1.2rem;
}

.footer-bottom {
border-top: 1px solid rgba(128, 128, 128, 0.2);
padding-top: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.footer-copyright {
color: var(--text);
opacity: 0.7;
}

.footer-policy-links {
display: flex;
gap: 1.5rem;
}

.footer-policy-links a {
color: var(--text);
opacity: 0.7;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s;
}

.footer-policy-links a:hover {
opacity: 1;
color: var(--primary);
}

.footer-decoration {
position: absolute;
background: var(--primary);
opacity: 0.03;
border-radius: 50%;
z-index: 0;
}

.footer-decoration-1 {
width: 300px;
height: 300px;
top: -150px;
right: -100px;
}

.footer-decoration-2 {
width: 200px;
height: 200px;
bottom: -50px;
left: 10%;
} */

/* @media (max-width: 768px) {
footer {
padding: 4rem 5% 2rem;
}

.footer-container {
grid-template-columns: 1fr;
gap: 2.5rem;
}

.footer-bottom {
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-policy-links {
justify-content: center;
flex-wrap: wrap;
}
} */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero h1 {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .tech-stack-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

