:root {
    /* Colors */
    --primary-color: #3D5AFE;
    --secondary-color: #5C6BC0;
    --accent-color: #00E5FF;
    --dark-color: #1E293B;
    --light-color: #FFFFFF;
    --gray-color: #F1F5F9;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Effects */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
    --mobile-menu-width: 320px;
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #3D5AFE, #00E5FF);
    --top-bar-bg: #EAF6FF;
    --top-bar-text: #1F2937;
    
    /* Spacing */
    --container-padding: 0 20px;
    --nav-height: 80px;
    --top-bar-height: 45px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Hero Section Styles */
.hero-area {
  position: relative;
  padding: 120px 0;
  background: #b5d5f5;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-heading {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-heading .highlight {
  position: relative;
  color: var(--primary-color);
  z-index: 1;
}

.hero-heading .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(61, 90, 254, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(61, 90, 254, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.cta-button.primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background-color: rgba(61, 90, 254, 0.05);
}

.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition);
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.image-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--gradient);
  opacity: 0.2;
  top: -40px;
  right: -60px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  opacity: 0.15;
  bottom: -30px;
  left: -40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-area {
    padding: 100px 0;
  }
  
  .hero-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-heading {
    font-size: 2.4rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 100%;
    order: -1;
  }
}

@media (max-width: 576px) {
  .hero-area {
    padding: 80px 0;
  }
  
  .hero-heading {
    font-size: 2rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .shape-1, .shape-2 {
    display: none;
  }
}

/* Web Development Services Section */
.web-dev-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--bg-light);
}

.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
}

.bg-element {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.info-col {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.section-title .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.showcase-image-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.showcase-image-container:hover {
  transform: translateY(-5px);
}

.showcase-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

/* Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .web-dev-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .info-col {
    width: 100%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
}



/* Development Technologies Section */
.development-technologies {
  position: relative;
  padding: 90px 0;
  background: var(--gradient);
  color: var(--white);
  overflow: hidden;
}

.development-technologies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
  z-index: 1;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title .highlight {
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--white);
  border-radius: 2px;
  margin-top: 15px;
}

.tech-list-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
}

.tech-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.tech-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.tech-icon i {
  font-size: 18px;
}

.tech-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tech-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.tech-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .development-technologies {
    padding: 70px 0;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .tech-visual {
    margin-top: 30px;
    order: -1;
  }
  
  .tech-list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .development-technologies {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .tech-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .tech-item {
    font-size: 0.95rem;
    padding: 10px;
  }
  
  .tech-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }
  
  .tech-list-container {
    padding: 20px;
  }
  
  .tech-decoration {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .tech-list {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-header {
    margin-bottom: 25px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .tech-item {
    font-size: 0.9rem;
  }
  
  .tech-icon {
    width: 28px;
    height: 28px;
  }
  
  .tech-icon i {
    font-size: 14px;
  }
  
  .tech-decoration {
    width: 150px;
    height: 150px;
  }
}

/* Animation for tech items */
.tech-item {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tech-item:nth-child(1) { animation-delay: 0.1s; }
.tech-item:nth-child(2) { animation-delay: 0.2s; }
.tech-item:nth-child(3) { animation-delay: 0.3s; }
.tech-item:nth-child(4) { animation-delay: 0.4s; }
.tech-item:nth-child(5) { animation-delay: 0.5s; }
.tech-item:nth-child(6) { animation-delay: 0.6s; }
.tech-item:nth-child(7) { animation-delay: 0.7s; }
.tech-item:nth-child(8) { animation-delay: 0.8s; }
.tech-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effect for the image */
.image-container:hover .tech-image {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Pulse animation for decoration */
.tech-decoration {
  animation: pulse 6s infinite alternate ease-in-out;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
}


/* Portfolio Showcase Section */
.portfolio-showcase {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-light);
  overflow: hidden;
}

.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.05;
  filter: blur(100px);
  animation: float 15s ease-in-out infinite;
}

.section-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--dark-color);
}

.section-title .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.portfolio-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.view-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .view-button {
  transform: translateY(0);
}

.view-button i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.portfolio-category {
  font-size: 0.9rem;
  color: var(--text-light);
}

.portfolio-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(61, 90, 254, 0.3);
}

.action-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(61, 90, 254, 0.4);
}

.action-button span {
  margin-right: 10px;
}

.action-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.action-button:hover i {
  transform: translate(3px, -3px);
}

/* Animation */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -50px) rotate(5deg);
  }
  50% {
    transform: translate(0, -100px) rotate(10deg);
  }
  75% {
    transform: translate(-50px, -50px) rotate(5deg);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .portfolio-showcase {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .action-button {
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
  }
}


/* Vision Section Styles */
.vision-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-light);
  overflow: hidden;
}

.background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.05;
  filter: blur(80px);
  animation: floatCircle 15s ease-in-out infinite;
}

.vision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vision-card {
  position: relative;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-content {
  padding: 35px 30px;
  flex: 1;
}

.card-header {
  margin-bottom: 20px;
  position: relative;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.card-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.card-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.card-body {
  margin-bottom: 25px;
}

.card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.card-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: rgba(var(--primary-rgb), 0.05);
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}

.icon-image {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.vision-card:hover .icon-image {
  transform: scale(1.1);
}

/* Animation */
@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-50px, 50px) scale(1.1);
  }
  50% {
    transform: translate(-100px, 0) scale(1.2);
  }
  75% {
    transform: translate(-50px, -50px) scale(1.1);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .vision-grid {
    gap: 20px;
  }
  
  .card-content {
    padding: 30px 25px;
  }
  
  .card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .vision-section {
    padding: 80px 0;
  }
  
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .vision-card:last-child {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 60px 0;
  }
  
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vision-card:last-child {
    grid-column: span 1;
  }
  
  .card-content {
    padding: 25px 20px;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .vision-section {
    padding: 50px 0;
  }
  
  .vision-card:hover {
    transform: translateY(-5px);
  }
  
  .card-icon {
    padding: 15px;
  }
  
  .icon-image {
    max-height: 100px;
  }
}



/* Why Choose Us Section */
.why-choose-us-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}

.background-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.animated-shape {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.03;
  filter: blur(100px);
  animation: shapeFloat 20s ease-in-out infinite;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.section-intro {
  max-width: 100%;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
  margin-bottom: 30px;
}

.section-heading .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-heading .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.section-description p {
  margin-bottom: 20px;
}

.section-description p:last-child {
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: 12px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 12px;
  margin-right: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: var(--gradient);
}

.feature-icon img {
  max-width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* Animation */
@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(100px, -50px) rotate(90deg);
  }
  50% {
    transform: translate(50px, -100px) rotate(180deg);
  }
  75% {
    transform: translate(-50px, -50px) rotate(270deg);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .content-wrapper {
    gap: 50px;
  }
  
  .section-heading {
    font-size: 2.2rem;
  }
  
  .features-grid {
    gap: 25px;
  }
  
  .feature-card {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .why-choose-us-section {
    padding: 80px 0;
  }
  
  .content-wrapper {
    gap: 40px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 60px 0;
  }
  
  .section-heading {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .feature-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .why-choose-us-section {
    padding: 50px 0;
  }
  
  .section-heading {
    font-size: 1.6rem;
  }
  
  .feature-card:hover {
    transform: translateY(-3px);
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
}


