/* Main Color Scheme */
:root {
    --primary-color: #1E40AF;
    --secondary-color: #F59E0B;
    --accent-color: #0284C7;
    --dark-color: #0F172A;
    --light-color: #F9FAFB;
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    --transition: all 0.3s ease;
  }

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.btn {
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 25px;
  border-radius: 50px;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 101, 132, 0.4);
}

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

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.btn-lg {
  padding: 12px 30px;
  font-size: 1rem;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #6c757d;
}

/* Header Styling */
.navbar {
  padding: 15px 0;
  transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar.sticky {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.text-accent {
  color: var(--accent-color);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 8px 15px;
  font-weight: 500;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  border: none;
}

.nav-btn i {
  transition: all 0.3s ease;
  transform: translateX(-5px);
  opacity: 0;
}

.nav-btn:hover i {
  transform: translateX(0);
  opacity: 1;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

/* Dropdown Menu Styling */
.dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  margin-top: 15px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 10px 25px;
  font-weight: 500;
  color: var(--dark-color);
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
  padding-left: 30px;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  left: 25px;
  top: 50%;
  transition: all 0.3s ease;
}

.dropdown-item:hover::before {
  width: 10px;
}

.dropdown-divider {
  margin: 10px 0;
  opacity: 0.1;
}

/* Hero Section Styling */
.hero-section {
  background: var(--gradient-primary);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span {
  color: #FF6584 !important;
  position: relative;
  display: inline-block;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--accent-color);
  bottom: 5px;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  transform-origin: center;
  transition: transform 0.5s ease;
}

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

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

/* About Section */
.about-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.about-img:hover img {
  transform: scale(1.05);
}

.about-img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--gradient-primary);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.about-img:hover::before {
  opacity: 0.4;
}

.about-content h2 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.about-list {
  margin-top: 30px;
}

.about-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.about-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

/* Service Card Styling */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  background: var(--gradient-primary);
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
}

.service-card:hover::before {
  height: 100%;
  opacity: 1;
}

.service-card:hover h3,
.service-card:hover p {
  color: white;
}

.service-card:hover .btn-outline-primary {
  color: white;
  border-color: white;
}

.service-card:hover .btn-outline-primary:hover {
  background: white;
  color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  background: white;
}

.service-icon i {
  font-size: 2rem;
  color: white;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card p {
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* Portfolio Styling */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.portfolio-item img {
  transition: var(--transition);
  width: 100%;
  height: 192px;
  object-fit: contain;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 99, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

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

.portfolio-overlay h4 {
  color: white;
  margin-bottom: 10px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.portfolio-overlay .btn {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.3s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}

/* Counter Box */
.counter-box {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.counter-box::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  background: var(--gradient-primary);
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
}

.counter-box:hover {
  transform: translateY(-10px);
}

.counter-box:hover::before {
  height: 100%;
  opacity: 1;
}

.counter-box:hover h2,
.counter-box:hover p {
  color: white;
}

.counter-box h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.counter-box p {
  margin-bottom: 0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.counter-box:hover .counter-icon {
  color: white;
}

/* Testimonial Styling */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

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

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(108, 99, 255, 0.1);
  line-height: 1;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  padding: 2px;
}

.testimonial-author h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #6c757d;
}

/* Team Member Card */
.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: all 0.5s ease;
}

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

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: rgba(108, 99, 255, 0.9);
  padding: 15px 0;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  margin: 0 5px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-5px);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h4 {
  margin-bottom: 5px;
}

.team-content p {
  color: #6c757d;
  margin-bottom: 0;
}

/* Pricing Table */
.pricing-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.pricing-table.featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.3);
}

.pricing-table:hover {
  transform: translateY(-10px);
}

.pricing-table.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header {
  background: var(--gradient-primary);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-table.featured .pricing-header {
  background: var(--gradient-secondary);
}

.pricing-header::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -75px;
  right: -75px;
}

.pricing-header::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.pricing-header h3 {
  color: white;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-table.featured .pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  transform: rotate(45deg);
  z-index: 3;
}

.pricing-features {
  padding: 30px;
}

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

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 25px;
}

.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary-color);
}

.pricing-features li.disabled {
  color: #6c757d;
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  content: '\f00d';
  color: #dc3545;
}

.pricing-footer {
  padding: 0 30px 30px;
  text-align: center;
}

/* Blog Card Styling */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(108, 99, 255, 0.2);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #6c757d;
}

.blog-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.blog-card:hover h4 {
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.contact-form h3 {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding-left: 20px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: 150px;
  padding-top: 15px;
}

.contact-info {
  background: var(--gradient-primary);
  padding: 40px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -75px;
  right: -75px;
}

.contact-info::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

.contact-info h3 {
  color: white;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: white;
  bottom: -10px;
  left: 0;
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
}

.contact-info-text h5 {
  color: white;
  margin-bottom: 5px;
}

.contact-info-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* FAQ Section */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  border-radius: 10px !important;
  background: white;
  color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
}

/* Footer Styling */
footer {
  background: var(--dark-color);
  color: white;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.1;
}

footer::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
}

footer h3 {
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

footer h5 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

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

footer a {
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--accent-color) !important;
  transform: translateX(5px);
}

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

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

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: white;
}

/* Pulse Animation */
.pulse {
  animation: pulse-animation 1s ease;
}

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

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 15px;
  }
  
  .navbar-nav .nav-item {
    margin: 5px 0;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .dropdown-menu {
    box-shadow: none;
    padding: 0 0 0 15px;
    margin-top: 0;
  }
  
  .dropdown-item {
    padding: 8px 15px;
  }
  
  .nav-item.ms-2 {
    margin-top: 15px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .pricing-table.featured {
    transform: scale(1);
  }
  
  .pricing-table.featured:hover {
    transform: translateY(-10px);
  }
  
  .contact-info {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 120px 0 70px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .counter-box {
    margin-bottom: 30px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .contact-info {
    padding: 30px 20px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}