/* General Styles */
body {
  font-family: 'Helvetica', sans-serif;
  line-height: 1.6;
  color: #333;
}

section {
  padding: 80px 0;
}

/* Hero Section */
.hero-section {
  background: url('../images/hero.webp') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
}

.hero-image {
  text-align: center;
}

.hero-image i {
  font-size: 200px;
  color: #0d6efd;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Icons */
.bi {
  line-height: 1;
}

/* About Section */
.about-image i {
  font-size: 200px;
  color: #0d6efd;
  display: block;
  text-align: center;
}

/* Contact Section */
.contact-info i {
  color: #0d6efd;
  margin-right: 10px;
}

.contact-form .form-control {
  border-radius: 0;
  border: 1px solid #dee2e6;
}

.contact-form .btn {
  width: 100%;
  border-radius: 0;
}

/* Social Links */
.social-links a {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0d6efd !important;
}



.card, .hero-section h1, .hero-section p {
  animation: fadeIn 1s ease-out forwards;
}

/* Market Analysis Tools Section */
.analysis-tools li {
  margin-bottom: 15px;
}

.analysis-tools i.bi-check-circle-fill {
  margin-right: 10px;
}

.market-analysis-svg {
  animation: fadeInUp 1s ease-out;
}

/* Digital Tools Section */
.tool-feature {
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.tool-feature:hover {
  background-color: #f8f9fa;
}



.card .bi {
  transition: transform 0.3s ease;
}

.card:hover .bi {
  transform: scale(1.1);
}

.card .list-unstyled li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.card .bi-arrow-right-circle {
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
      text-align: center;
  }
  
  .about-image {
      margin-top: 30px;
  }
  
  .contact-info {
      margin-bottom: 30px;
  }
}

/* Custom Button Styles */
.btn-primary {
  padding: 10px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Section Headers */
h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #0d6efd;
}

/* List Styles */
.list-unstyled li {
  margin-bottom: 10px;
}

.list-unstyled i {
  margin-right: 10px;
}

/* Testimonial Cards */
.card .bi-quote {
  opacity: 0.2;
  margin-bottom: 15px;
}

/* Process Section */
.bi[class*="circle"] {
  background-color: #f8f9fa;
  border-radius: 50%;
  padding: 15px;
}

/* Navigation */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

/* Footer */
footer {
  border-top: 5px solid #0d6efd;
}

/* Enhanced Decorative Elements */
.section-divider {
position: relative;
height: 100px;
overflow: hidden;
}

.section-divider svg {
position: absolute;
width: 100%;
height: 100px;
fill: #f8f9fa;
}

/* Creative Card Styles */
.feature-card {
position: relative;
border-radius: 15px;
overflow: hidden;
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
border: none;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(13, 110, 253, 0.1), transparent);
transform: rotate(45deg);
transition: transform 0.6s;
pointer-events: none;
}

.feature-card:hover::before {
transform: rotate(45deg) translate(50%, 50%);
}

/* Decorative Background Patterns */
.pattern-bg {
position: relative;
}

.pattern-bg::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.05;
background-image: 
  radial-gradient(#0d6efd 2px, transparent 2px),
  radial-gradient(#0d6efd 2px, transparent 2px);
background-size: 30px 30px;
background-position: 0 0, 15px 15px;
pointer-events: none;
}

/* Enhanced Section Headers */
.creative-header {
position: relative;
display: inline-block;
margin-bottom: 40px;
}

.creative-header::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #0d6efd, transparent);
border-radius: 2px;
}

/* Animated Number Counter */
.stat-counter {
font-size: 3rem;
font-weight: bold;
color: #0d6efd;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s, transform 0.6s;
}

.stat-counter.visible {
opacity: 1;
transform: translateY(0);
}

/* Enhanced Card Hover Effects */
.hover-card {
transition: all 0.3s ease;
cursor: pointer;
}

.hover-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Creative List Styles */
.feature-list {
list-style: none;
padding: 0;
}

.feature-list li {
position: relative;
padding-left: 30px;
margin-bottom: 15px;
}

.feature-list li::before {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 20px;
height: 2px;
background: #0d6efd;
transform: translateY(-50%);
transition: width 0.3s;
}

.feature-list li:hover::before {
width: 25px;
}

/* Animated Background Gradient */
.gradient-bg {
background: linear-gradient(45deg, #f8f9fa, #e9ecef, #f8f9fa);
background-size: 200% 200%;
animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

/* Modern Button Style */
.btn-modern {
position: relative;
overflow: hidden;
border-radius: 30px;
transition: all 0.3s ease;
}

.btn-modern::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: left 0.6s;
}

.btn-modern:hover::before {
left: 100%;
}

/* Creative Icon Containers */
.icon-container {
width: 80px;
height: 80px;
border-radius: 20px;
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transform: rotate(-5deg);
transition: transform 0.3s ease;
}

.icon-container:hover {
transform: rotate(0deg);
}

/* Additional Animations */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}



/* Enhanced Navigation */
.navbar {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.9) !important;
}

/* Modern Section Transitions */
.section-transition {
position: relative;
overflow: hidden;
}

.section-transition::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to bottom, transparent, white);
pointer-events: none;
}

/* Updated Responsive Adjustments */
@media (max-width: 768px) {
.creative-header {
  text-align: center;
}

.creative-header::after {
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.icon-container {
  margin: 0 auto 20px;
}
}

.service-card {
  transition: transform 0.3s ease;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.service-card:hover {
  transform: translateY(-5px);
}
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #6B8DE3, #4A6FDD);
}
.section-title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #6B8DE3, #4A6FDD);
}
.feature-list {
  margin: 1.5rem 0;
}
.feature-item {
  padding: 0.5rem 0;
}
.feature-icon {
  color: #4A6FDD;
  margin-right: 10px;
}