* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25px 25px, rgba(0, 123, 255, 0.05) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, rgba(0, 123, 255, 0.05) 2%, transparent 0%);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: -1;
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  gap: 8px;
}

.logo img {
  /* width: 32px; */
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 500;
}

.help {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  background-color: #e6e9fd;
  padding: 10px;
  border-radius: 50%;
}

.icon-circle img {
  width: 20px;
  height: 20px;
}

.contact-info span {
  display: block;
  font-size: 12px;
  color: #666;
}

.contact-info strong {
  font-size: 14px;
}

.discover-btn {
  border: 1px solid #1d1d1f;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: bold;
  transition: all 0.3s ease;
}

.discover-btn:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

/* Hero Section Styles */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
}

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

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
}

.hero-image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-text {
  position: relative;
  max-width: 600px;
  z-index: 2;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-10%);
}

.hero-text .tagline {
  display: inline-block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #377dff;
  font-weight: 600;
  background: rgba(55, 125, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.hero-text .highlight {
  color: #377dff;
  position: relative;
  display: inline-block;
}

.hero-text .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(55, 125, 255, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.discover-outline-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid #377dff;
  color: #377dff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.discover-outline-btn:hover {
  background-color: #377dff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(55, 125, 255, 0.2);
}

.discover-outline-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(55, 125, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.discover-outline-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Responsive adjustments for hero section */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-image img {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-image img {
    width: 45%;
  }
  
  .hero-text {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 500px;
  }
  
  .hero-image {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .hero-image img {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }
  
  .hero-text {
    transform: none;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .discover-outline-btn {
    padding: 14px 28px;
  }
}

/* About Section Styles */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 60px;
  background-color: white;
}

.about-image {
  position: relative;
  width: 50%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image .main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-image .overlay-image {
  position: absolute;
  width: 75%;
  max-width: 400px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: transform 0.3s ease;
}

.about-image .overlay-image:hover {
  transform: translate(-50%, -50%) scale(1.02);
}

.about-content {
  width: 50%;
  max-width: 600px;
  padding-right: 40px;
}

.section-title {
  text-transform: uppercase;
  color: #2f65f7;
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 32px;
  color: #1d1d1f;
  line-height: 1.4;
  margin-bottom: 18px;
}

.about-content .highlight {
  color: #2f65f7;
}

.about-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
}

.progress-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-item {
  background-color: #f9fafd;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 600;
}

.icon-text img {
  width: 24px;
  height: 24px;
}

.progress-bar {
  position: relative;
  background-color: #e5eaf4;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.bar {
  height: 100%;
  background-color: #2f65f7;
  border-radius: 10px 0 0 10px;
  transition: width 1s ease-in-out;
}

.percentage {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 14px;
  color: #2f65f7;
  font-weight: bold;
}

/* Services Section Styles */
.services-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  padding: 80px 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.subheading {
  color: #4285f4;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.main-heading {
  font-size: 2rem;
  margin-bottom: 60px;
  line-height: 1.4;
}

.highlight {
  color: #377dff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  padding: 20px;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card a {
  font-weight: 500;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.2s;
  display: inline-block;
  position: relative;
}

.service-card a:hover {
  color: #377dff;
}

.service-card a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #377dff;
  transition: width 0.3s ease;
}

.service-card a:hover::after {
  width: 100%;
}

.service-card a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  right: 0;
  background-color: #377dff;
  transition: width 0.3s ease;
}

.service-card a:hover::before {
  width: 100%;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.service-card ul li {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card ul li:before {
  content: "•";
  color: #007bff;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.faq-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
  gap: 60px;
  flex-wrap: wrap;
}

.faq-left {
  flex: 1 1 500px;
}

.faq-right {
  flex: 1 1 500px;
}

.faq-right img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.faq-right img:hover {
  transform: translateY(-5px);
}

.faq-subheading {
  color: #377dff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.faq-title {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 30px;
}

.faq-title span {
  color: #377dff;
}

.faq-accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.faq-accordion-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-accordion-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  transition: background-color 0.3s ease;
}

.faq-accordion-header:hover {
  background: #e9ecef;
}

.faq-icon {
  font-size: 20px;
  font-weight: bold;
  color: #007bff;
  min-width: 20px;
  text-align: center;
}

.faq-accordion-body {
  padding: 15px 20px;
  background: #fff;
  display: none;
}

.faq-accordion-body p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* About Tabs Section */
.about-tabs-section {
  background-color: #fff;
  padding: 80px 0;
}

.about-tabs-section .container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

.about-tabs-section .subtitle {
  text-align: center;
  color: #377dff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-tabs-section .main-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.about-tabs-section .main-title span {
  color: #377dff;
}

.about-tabs-section .tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-tabs-section .tab {
  padding: 15px 30px;
  border: none;
  background-color: transparent;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid #e5e7eb;
  flex: 1;
  text-align: center;
}

.about-tabs-section .tab:last-child {
  border-right: none;
}

.about-tabs-section .tab:hover {
  background-color: #f8fafc;
  color: #377dff;
}

.about-tabs-section .tab.active {
  color: #377dff;
  background-color: #f0f4ff;
  font-weight: 600;
}

.about-tabs-section .tab-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: #f7fafd;
  border-radius: 8px;
  padding: 40px;
  gap: 40px;
}

.about-tabs-section .tab-left {
  flex: 1 1 400px;
}

.about-tabs-section .tab-left img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-tabs-section .tab-right {
  flex: 1 1 500px;
}

.about-tabs-section .tab-right h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-tabs-section .tab-right p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Tab points style */
.tab-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tab-points li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  padding: 8px 0;
}

.tab-points .check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #377dff;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 12px;
  line-height: 1;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tab-points {
    grid-template-columns: 1fr;
  }
  
  .about-tabs-section .tab-content {
    padding: 20px;
  }
  
  .about-tabs-section .tab-right h3 {
    font-size: 1.3rem;
  }
  
  .tab-buttons {
    flex-wrap: wrap;
  }
  
  .tab {
    flex: 1 1 50%;
    padding: 12px 20px;
  }
  
  .tab:nth-child(2) {
    border-right: none;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.form-area {
  flex: 1 1 500px;
}

.label {
  text-transform: uppercase;
  color: #377dff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.heading span {
  color: #377dff;
}

.description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  background-color: #f9f9f9;
}

textarea {
  resize: vertical;
  height: 120px;
}

button {
  align-self: flex-start;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #f0f4ff;
  color: #377dff;
  border-color: #377dff;
}

/* Contact Section Image Area Styles */
.image-area {
  flex: 1 1 500px;
  position: relative;
  padding: 20px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper .main-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.image-wrapper .main-image:hover {
  transform: translateY(-10px);
}

.image-wrapper .overlay-image {
  position: absolute;
  width: 60%;
  max-width: 300px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: all 0.3s ease;
}

.image-wrapper .overlay-image:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

/* Add decorative elements */
.image-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(55, 125, 255, 0.1) 0%, rgba(55, 125, 255, 0.05) 100%);
  border-radius: 30px;
  z-index: 0;
}

.image-wrapper::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 2px dashed rgba(55, 125, 255, 0.2);
  border-radius: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .image-wrapper {
    min-height: 400px;
  }
  
  .image-wrapper .main-image {
    max-width: 400px;
  }
  
  .image-wrapper .overlay-image {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .image-area {
    padding: 10px;
  }
  
  .image-wrapper {
    min-height: 350px;
  }
  
  .image-wrapper .main-image {
    max-width: 350px;
  }
  
  .image-wrapper .overlay-image {
    max-width: 200px;
  }
}

/* Testimonial Section Styles */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007bff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.section-tag {
  color: #377dff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.section-title span {
  color: #377dff;
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  min-height: 400px;
}

.testimonial-pair {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-pair.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  min-height: 200px;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding: 20px;
}

.client-photo {
  width: 140px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.client-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(55, 125, 255, 0.2) 0%, rgba(55, 125, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.client-photo:hover::before {
  opacity: 1;
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform-origin: center;
}

.client-photo:hover img {
  transform: scale(1.1);
}

.testimonial-text {
  flex: 1;
  padding-top: 5px;
  text-align: left;
}

.testimonial-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.client-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-align: left;
}

.stars {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: left;
}

.quote-image {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
  top: -5px;
}

.carousel-dots {
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #377dff;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .testimonial-box {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 40px 20px;
  }
  
  .testimonial-wrapper {
    min-height: auto;
    padding: 0 10px;
  }
  
  .testimonial-pair {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 15px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
  }
  
  .testimonial-box {
    width: calc(50% - 8px);
    min-height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .testimonial-content {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .client-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
  }
  
  .client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .testimonial-text {
    padding-top: 0;
  }
  
  .testimonial-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .quote-image {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-bottom: 3px;
    top: -3px;
  }
  
  .client-name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .stars {
    font-size: 12px;
  }
  
  .carousel-dots {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-box {
    width: calc(50% - 8px);
  }
  
  .client-photo {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-text p {
    font-size: 12px;
  }
  
  .client-name {
    font-size: 14px;
  }
}

/* Stats Section Styles */
.stats-section {
  background: linear-gradient(135deg, #377dff 0%, #2f68f9 100%);
  border-radius: 20px;
  margin: 60px auto;
  padding: 40px 20px;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(47, 104, 249, 0.2);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.1) 2%, transparent 0%),
    radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.1) 2%, transparent 0%);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 1;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.stats-box {
  text-align: center;
  color: white;
  flex: 1;
  min-width: 160px;
  transition: transform 0.3s ease;
}

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

.stats-box .icon {
  background: white;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stats-box:hover .icon {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stats-box .icon i {
  color: #2f68f9;
  font-size: 24px;
}

.stats-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-box p {
  font-size: 14px;
  opacity: 0.9;
}

.happy-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.happy-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

/* Blog Section Styles */
.blog-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23007bff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.section-subtitle {
  color: #377dff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.4;
}

.section-title span {
  color: #377dff;
}

.blog-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.blog-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  width: 300px;
  transition: transform 0.2s ease;
}

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

.blog-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #377dff;
  color: white;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.date {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #377dff;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer .logo img {
  /* width: 24px; */
  height: 24px;
}

.footer .logo h3 {
  font-size: 18px;
  font-weight: 600;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 14px;
  background: #1a1a1a;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #377dff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #377dff;
}

.subscribe-form {
  display: flex;
  align-items: center;
}

.subscribe-form input {
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 160px;
}

.subscribe-form button {
  background-color: #377dff;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #377dff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-content {
    max-width: 500px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .stats-container {
    gap: 20px;
  }
  
  .stats-box {
    min-width: 220px;
    max-width: 280px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-content {
    max-width: 450px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .testimonial-box {
    max-width: 300px;
  }
  
  .blog-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .navbar {
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .logo img {
    width: 30px;
    height: 30px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero {
    padding-top: 80px;
    min-height: auto;
  }
  
  .hero-image {
    flex-direction: column;
    padding: 20px;
  }
  
  .hero-image img {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  
  .hero-text {
    transform: none;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
    width: 100%;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .about-image {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .about-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  
  .services-section .container {
    padding: 40px 20px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  
  .service-card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .faq-container {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .faq-left, .faq-right {
    width: 100%;
  }
  
  .faq-right img {
    margin-top: 30px;
  }
  
  .about-tabs-section .container {
    padding: 40px 20px;
  }
  
  .tab-buttons {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tab {
    flex: 1 1 50%;
    min-width: 120px;
  }
  
  .tab-content {
    flex-direction: column;
    padding: 20px;
  }
  
  .tab-left, .tab-right {
    width: 100%;
  }
  
  .tab-left img {
    margin-bottom: 20px;
  }
  
  .project-gallery .container {
    padding: 40px 20px;
  }
  
  .filters {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 5px;
    justify-content: flex-start;
  }
  
  .filters::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .filter {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: auto;
    margin-right: 8px;
  }
  
  .filter:last-child {
    margin-right: 0;
  }
  
  .contact-container {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .form-area, .image-area {
    width: 100%;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .testimonial-section {
    padding: 40px 20px;
  }
  
  .testimonial-wrapper {
    min-height: auto;
    padding: 0 10px;
  }
  
  .testimonial-pair {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 15px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
  }
  
  .testimonial-box {
    width: calc(50% - 8px);
    min-height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .testimonial-content {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .client-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 50%;
  }
  
  .client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .testimonial-text {
    padding-top: 0;
  }
  
  .testimonial-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .quote-image {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-bottom: 3px;
    top: -3px;
  }
  
  .client-name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .stars {
    font-size: 12px;
  }
  
  .carousel-dots {
    margin-top: 20px;
  }
  
  .stats-section {
    margin: 40px 20px;
    padding: 30px 20px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stats-box {
    width: 100%;
    max-width: 100%;
  }
  
  .blog-section {
    padding: 40px 20px;
  }
  
  .blog-cards-container {
    flex-direction: column;
    align-items: center;
  }
  
  .blog-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-col {
    width: 100%;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .footer-col .subscribe-form input[type="email"] {
    width: 100%;
    margin-bottom: 8px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .tab {
    width: 100%;
  }
  
  .filters {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .filter {
    width: auto;
    flex: 0 0 auto;
  }
}

/* Add touch-friendly styles */
@media (hover: none) {
  .service-card:hover {
    transform: none;
  }
  
  .stats-box:hover {
    transform: none;
  }
  
  .blog-card:hover {
    transform: none;
  }
  
  .nav-links a:hover {
    background: none;
  }
  
  .discover-btn:hover {
    background: none;
  }
}

/* Add print styles */
@media print {
  .navbar,
  .hero-image,
  .footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .hero-content {
    position: static;
    transform: none;
    color: black;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
}

/* Project Gallery Section */
.project-gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.project-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-gallery .subtitle {
  text-align: center;
  color: #377dff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.project-gallery .main-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.project-gallery .main-title span {
  color: #377dff;
  position: relative;
  display: inline-block;
}

.project-gallery .main-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(55, 125, 255, 0.2);
  z-index: -1;
  border-radius: 4px;
}

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter {
  padding: 12px 25px;
  border: none;
  background: #f8f9fa;
  color: #666;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter:hover {
  background: #377dff;
  color: white;
  transform: translateY(-2px);
}

.filter.active {
  background: #377dff;
  color: white;
  box-shadow: 0 5px 15px rgba(55, 125, 255, 0.2);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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(55, 125, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.plus-icon {
  color: white;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.more-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .plus-icon,
.gallery-item:hover .more-text {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .project-gallery {
    padding: 80px 0;
  }
  
 .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .project-gallery {
    padding: 60px 0;
  }
  
  .project-gallery .main-title {
    font-size: 2rem;
  }
  
  .filters {
    gap: 10px;
  }
  
  .filter {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
}

.quote-image {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
  top: -5px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: white;
  color: #377dff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
  font-size: 20px;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #1a1a1a;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav-links.active {
    display: flex;
    transform: translateY(0);
  }
  
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #1a1a1a;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    background-color: #f8f9fa;
    color: #377dff;
  }
  
  .help {
    display: none;
  }
  
  .discover-btn {
    display: none;
  }
}

/* Add overlay when menu is open */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gallery-item {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:active .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-item .plus-icon {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
  }
  
  .gallery-item .more-text {
    font-size: 14px;
    color: #333;
  }
} 