/*
Theme Name: Vaidrix Technologies
Theme URI: https://aqua-tiger-601268.hostingersite.com/
Author: Vaidrix Technologies Pvt. Ltd.
Author URI: https://aqua-tiger-601268.hostingersite.com/
Description: Custom WordPress theme designed for Vaidrix Technologies with a modern, clean layout and dynamic sections.
Version: 1.0
License: GNU General Public License v2 or later
License URI:

*/

:root {
  --primary-color: #f15d21;
  --secondary-color: #f5871e;
  --light-accent: #FFD3B6;
  --dark-text: #333333;
  --light-bg: #F4F4F4;


    /* Modern Professional Color Palette */
   
    --accent-color: #FF9F1C;  /* Warm Orange */
    --highlight-color: #9BA4D9;
    --text-color: #2D2D2D;  /* Dark Gray/Black */
    --text-light: #666666;  /* Medium Gray */
    --background: #FFFFFF;  /* White */
    /* --light-bg: #F8F8F8;  Light Gray */
    --card-bg: #FFFFFF;  /* White */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-secondary: linear-gradient(135deg, #FF8C42 0%, #FF9F1C 100%);
    --shadow-sm: 0 2px 8px rgba(45, 50, 80, 0.04);
    --shadow-md: 0 5px 15px rgba(45, 50, 80, 0.08);
    --shadow-lg: 0 10px 30px rgba(45, 50, 80, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    --border-color: #E5E9F2;
    --success-color: #2ECC71;
    --error-color: #E74C3C;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

@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);
    }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* Additional Animations */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    70% { transform: scale(0.9); }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(103, 111, 157, 0.2); }
    50% { box-shadow: 0 0 20px rgba(103, 111, 157, 0.4); }
    100% { box-shadow: 0 0 5px rgba(103, 111, 157, 0.2); }
}
.screen-reader-response{
	display: none;
}
.wpcf7-not-valid-tip{
	color: red;
}
/* Base Styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* @media (max-width: 768px) {
  .hidden-industry {
    display: list-item !important; /* or block depending on your layout */
  }

  #view-more-industries {
    display: none !important;
  }
}
 */
/* Enhanced Header */
header {
    background: var(--background);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-container {
    display: flex;
    justify-content: space-between; /* Aligns logo to left, nav to right */
    align-items: center;
    padding: 15px 20px;
    /* Add any background, shadow, etc. for your header */
}
/* Styling for the combined logo (icon + text) */
.logo-wrapper {
    display: flex; /* Use flexbox to align icon and text horizontally */
    align-items: center; /* Vertically align items in the middle */
    text-decoration: none; /* Remove underline from the link */
    color: inherit; /* Inherit text color from parent or set a specific one */
    font-size: 24px; /* Base font size for the logo text */
    font-weight: bold; /* Make the text bold */
}

/* Styling for the Site Icon image */
.site-icon-logo {
    height: 35px; /* Set a fixed height for your site icon */
    width: 35px !important; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between the icon and the text */
    vertical-align: middle; /* Ensure it aligns well with text */
}

/* Styling for the "Vaidrix" text */
.site-title-text {
    /* You can add specific styles here, e.g., font-family, color */
    color: #333; /* Example color */
    /* If you want different sizing than .logo-wrapper font-size, define here */
}

/* Optional: Adjust header padding if the new logo size affects it */
.nav-container {
    padding: 15px 20px; /* Adjust as needed */
}

/* Ensure existing navigation styles don't conflict, especially on desktop */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Keep your menu items horizontal on desktop */
}
/* Desktop Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Makes menu items horizontal */
}

nav ul li {
    margin-left: 25px; /* Spacing between menu items */
}

nav ul li a {
    text-decoration: none;
    color: #333; /* Adjust link color */
/*     font-weight: bold; */
    transition: color 0.3s ease;
}


/* Burger Menu Styling */
.burger-menu {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000; /* Ensure it's above other content */
}

.burger-menu .line {
    width: 100%;
    height: 3px;
    background-color: #333; /* Color of the burger lines */
    transition: all 0.3s ease-in-out;
}

/* Hide navigation on small screens by default */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    nav ul {
        display: none; /* Hide the menu on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px; /* Adjust based on your header's height */
        left: 0;
        background-color: #f8f8f8; /* Background for mobile menu */
        border-top: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav ul.active {
        display: flex; /* Show menu when 'active' class is added */
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    /* Show burger menu on small screens */
    .burger-menu {
        display: flex;
    }

    /* Optional: Animate burger to 'X' on open */
    .burger-menu.open .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.open .line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.open .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Enhanced Hero Section */
.hero {
    background: var(--background);
    color: var(--text-color);
    padding: 4rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.hero .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease 0.9s backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out forwards;
}

.hero-stat p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.hero-image {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 800px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.1;
    pointer-events: none;
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

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

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

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .hero-stat {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-stat h3 {
        font-size: 1.8rem;
    }
    
    .hero-stat p {
        font-size: 1rem;
    }
}

/* Enhanced Features Section */
.features {
    background: var(--background);
    padding: 5rem 0;
    position: relative;
}

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

.feature {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: scaleIn 0.6s ease backwards;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.feature:hover {
    transform: translateY(-10px);
    color: var(--text-color);
    animation: glow 2s infinite;
    border-color: var(--primary-color);
}

.feature:hover::before {
    opacity: 1;
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
    animation: float 3s ease infinite;
}

.feature:hover i {
    color: var(--text-color);
    animation: float 3s ease infinite;
}
/* about section */
.about-us {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Enhanced Services Section */
.services {
  background: var(--background);
  padding: 5rem 0;
  position: relative;
}

.services-auto-scroll {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.service {
  flex: 0 0 auto;
  width: 250px;
  margin: 10px;
  background: var(--background);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease backwards;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service:hover {
  transform: translateY(-10px);
  animation: glow 2s infinite;
  border-color: var(--primary-color);
}

.service:hover::after {
  transform: scaleX(1);
}

.service i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
  animation: rotateIn 0.8s ease;
}

.service:hover i {
  transform: scale(1.1);
  animation: pulse 2s ease infinite;
}

/* Keyframes for scrolling */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: pause scroll on hover (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .scroll-track:hover {
    animation-play-state: paused;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .service {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .services-auto-scroll {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .scroll-track {
    animation: none;
    flex-wrap: nowrap;
  }

  .service {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 260px;
    margin-right: 16px;
  }
}

@media (max-width: 480px) {
  .service {
    width: 85%;
  }
}
.services-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.services-auto-scroll {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.scroll-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: none; /* stop auto-scroll for now */
}

.scroll-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--primary-color);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background: white;
}

.scroll-btn.prev {
  left: -15px;
}

.scroll-btn.next {
  right: -15px;
}

/* Service Card */
.service {
  flex: 0 0 auto;
  width: 250px;
  min-width: 250px;
  background: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

/* Responsive */
/* @media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }

  .service {
    width: 80%;
    min-width: 80%;
  }
}
 */

/* Enhanced Testimonials Section */
.testimonials {
  padding: 4rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.testimonials-slider {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 90%;
  scroll-snap-type: x mandatory;
}

.testimonial {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  text-align: left;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial h4 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.testimonial p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.prev, .next {
  background-color: #ff6b35;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: #e65c1f;
}
.testimonials {
    background: var(--background);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--background);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Enhanced CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.cta h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    animation: fadeInUp 0.8s ease;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Enhanced Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-info:hover h3::after {
    width: 100px;
}

.footer-info p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-links:hover h4::after {
    width: 50px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

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

.footer-social a {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-social a:hover::before {
    transform: scale(1);
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 0 2rem 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Enhanced Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
/*         right: -100%; */
        width: 80%;
        max-width: 300px;
        height: auto;
        background: var(--white);
        padding: 2rem;
        transition: var(--transition-normal);
/*         box-shadow: var(--shadow-lg); */
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-menu-btn.active {
        position: fixed;
        right: 1rem;
        top: 1rem;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active i::before {
        content: '\f00d';
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta .btn {
        padding: 1rem 2rem;
    }
    
    .feature,
    .service,
    .testimonial {
        padding: 2rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Contact Section Styles */
.contact {
    background: var(--background);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 140, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 2.5rem;
    animation: fadeInUp 0.8s ease;
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

.contact-info {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 1s ease 0.4s backwards;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.1);
}

.contact-info-item h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 1s ease 0.6s backwards;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 90%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--background);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Enhanced Loading Animation */
@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.loading::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

/* Enhanced Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

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

/* Enhanced Background Effects */
.gradient-bg {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Enhanced Text Effects */
.text-glow {
    text-shadow: 0 0 10px rgba(103, 111, 157, 0.3);
    animation: glow 2s infinite;
}

/* Enhanced Image Effects */
.img-hover {
    transition: transform 0.3s ease;
}

.img-hover:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Enhanced Card Effects */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Enhanced Icon Effects */
.icon-spin {
    transition: transform 0.3s ease;
}

.icon-spin:hover {
    transform: rotate(360deg);
}

/* Enhanced Link Effects */
.link-underline {
    position: relative;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.link-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Enhanced Button Effects */
.btn-pulse {
    animation: pulse 2s infinite;
}

.btn-pulse:hover {
    animation: none;
    transform: scale(1.05);
}

/* Enhanced Form Field Effects */
.input-focus {
    transition: all 0.3s ease;
}

.input-focus:focus {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(103, 111, 157, 0.2);
}

/* Enhanced Section Transitions */
.section-transition {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Mobile Menu Animation */
.mobile-menu-btn {
    transition: transform 0.3s ease;
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

/* Enhanced Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Enhanced Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-bg);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Form Validation */
.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Enhanced Success Animation */
.success-check {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #28a745;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    animation: scaleIn 0.5s ease;
}

/* Enhanced Error Animation */
.error-x {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #dc3545;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    animation: rotateIn 0.5s ease;
}

/* Enhanced Tooltip Animation */
.tooltip {
    position: relative;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    padding: 5px 10px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.tooltip:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Enhanced Image Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 50, 80, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Enhanced Modal Animation */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

/* Enhanced Notification Animation */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    background: white;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Enhanced Progress Bar */
.progress-bar {
    height: 4px;
    background: var(--light-bg);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 0.3s ease;
}

/* Enhanced Toggle Switch */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.toggle-switch.active {
    background: var(--accent-color);
}

.toggle-switch.active::before {
    transform: translateX(30px);
}

/* Enhanced Accordion Animation */
.accordion-item {
    border-bottom: 1px solid var(--light-bg);
}

.accordion-header {
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* Enhanced Tab Animation */
.tab-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Carousel Animation */
.carousel-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced Dropdown Animation */
.dropdown-content {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Enhanced Search Bar Animation */
.search-bar {
    position: relative;
    overflow: hidden;
}

.search-bar input {
    width: 0;
    transition: width 0.3s ease;
}

.search-bar.active input {
    width: 200px;
}

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
}

/* Why Choose Section */
.why-choose {
    background: var(--background);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    z-index: 1;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.why-choose h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.why-choose p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.why-choose-item {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: scaleIn 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.why-choose-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
    transition: var(--transition);
}

.why-choose-item:hover h3::before {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.3;
}

.why-choose-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Stats Section */
.stats {
    background: var(--light-bg);
    padding: 80px 0;
    margin-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    animation: fadeInUp 0.8s ease-out;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Client Life Cycle Section */
.client-lifecycle {
    padding: 100px 0;
    background: var(--background);
}

.client-lifecycle h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.lifecycle-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.lifecycle-step {
    background: var(--background);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    animation: scaleIn 0.6s ease-out;
    transition: var(--transition);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lifecycle-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
/*     left: 50%; */
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}

.lifecycle-step h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
}

.lifecycle-step p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0;
    }

    .why-choose h2 {
        font-size: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

    .lifecycle-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-item {
        padding: 1.5rem;
    }
}
.view-more-button {
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  background-color: var(--primary-color); /* #FF6B35 */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.view-more-button:hover {
  background-color: var(--secondary-color); /* #FF8C42 */
  transform: translateY(-2px);
}

/* Enhanced Use Cases Section */
.use-cases {
    background: var(--background);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    z-index: 1;
}

.use-cases .container {
    position: relative;
    z-index: 2;
}

.use-cases h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.use-cases p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.1);
    animation: scaleIn 0.6s ease-out;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.use-case-icon i {
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.use-case-card:hover .use-case-icon {
    transform: rotateY(180deg);
    background: var(--secondary-color);
}

.use-case-card:hover .use-case-icon i {
    transform: rotateY(-180deg);
}

.use-case-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.use-case-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.use-case-card:hover h3::after {
    width: 100px;
    background: var(--secondary-color);
}

.use-case-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.use-case-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.use-case-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-features li {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.use-case-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.use-case-card:hover .use-case-features li::before {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .use-cases {
        padding: 60px 0;
    }

    .use-cases h2 {
        font-size: 2rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .use-case-card {
        padding: 1.5rem;
    }

    .use-case-icon {
        width: 60px;
        height: 60px;
    }

    .use-case-icon i {
        font-size: 1.5rem;
    }
}

/* Enhanced Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--background);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on your header height */
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--background);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
} 