* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header & Navigation */
.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo-section img {
  max-width: 180px;
  height: auto;
}

.main-navigation {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 6px;
}

.nav-list a:hover,
.nav-active {
  color: #ffa500;
  background: rgba(255, 165, 0, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 16px 48px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 20px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 50px;
  text-align: center;
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #ffa500;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-weight: 700;
}

.service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-text p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #ffa500;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffa500;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 14px;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.testimonial-role {
  color: #999;
  font-size: 13px;
}

.rating {
  color: #ffa500;
  margin-bottom: 10px;
}

/* Contact Section */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffa500;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-item {
  text-align: center;
  padding: 20px;
}

.info-item h3 {
  margin-bottom: 10px;
  color: #1a1a1a;
}

.info-item p {
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    gap: 5px;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 10px;
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-list.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-list {
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .section {
    padding: 40px 15px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
}

/* Content Wrapper */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Base */
section {
  position: relative;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width:768px){
.hero-banner{
margin-top:7em;
}
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-primary,
.btn-primary-large {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.btn-primary:hover,
.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

.btn-secondary,
.btn-secondary-large {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-primary-large,
.btn-secondary-large {
  padding: 18px 48px;
  font-size: 18px;
}

/* Intro Section */
.intro-section {
  padding: 80px 20px;
  background: #fff;
}

.intro-section .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: 700;
}

.intro-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-arrow:hover {
  transform: translateX(5px);
}

.intro-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Icon & Link */
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #ffa500;
}

.service-link {
  display: inline-block;
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.service-link:hover {
  transform: translateX(5px);
}

/* Services Preview */
.services-preview {
  padding: 80px 20px;
  background: #f8f9fa;
}

.services-preview .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.why-choose-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-number {
  font-size: 48px;
  font-weight: 800;
  color: #ffa500;
  margin-bottom: 15px;
  opacity: 0.3;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 20px;
}

.process-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
}

.step-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

/* Blog Preview */
.blog-preview-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.blog-preview-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.view-all-link {
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  transform: translateX(5px);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-preview-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-preview-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-preview-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #999;
}

.blog-category {
  background: #ffa500;
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.blog-preview-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-preview-content h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-preview-content h3 a:hover {
  color: #ffa500;
}

.blog-preview-content p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
@media (max-width:768px){
.page-hero{
margin-top:8em;
}
}
.page-hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
}

.services-overview .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-intro p {
  color: #666;
  line-height: 1.8;
}

/* Service Detail */
.service-detail-section {
  padding: 60px 20px;
}

.service-detail-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-content {
  padding: 20px;
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-icon {
  color: #ffa500;
}

.service-detail-header h2 {
  font-size: 32px;
  color: #1a1a1a;
}

.service-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

.service-features h3,
.service-benefits h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffa500;
  font-weight: 700;
}

.benefits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-tag {
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  border: 1px solid #e5e5e5;
}

.service-detail-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.pricing-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid #ffa500;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffa500;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.price-range {
  font-size: 32px;
  font-weight: 700;
  color: #ffa500;
  margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.pricing-note {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-top: 30px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
}

.faq-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1a1a1a;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px 20px;
  color: #666;
  line-height: 1.8;
}

/* About Intro */
.about-intro {
  padding: 60px 20px;
}

.about-intro .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-intro-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-intro-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Company Values */
.company-values {
  padding: 80px 20px;
  background: #f8f9fa;
}

.company-values .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  color: #ffa500;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 20px;
}

.team-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.team-role {
  color: #ffa500;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

/* Certifications */
.certifications-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.certifications-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cert-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  color: #ffa500;
  margin-bottom: 15px;
}

.cert-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.cert-item p {
  color: #666;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
}

.contact-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-side h2,
.form-container h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.contact-info-side p,
.form-intro {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-info-block {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-info-icon {
  color: #ffa500;
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.contact-info-text p {
  color: #666;
  line-height: 1.6;
}

.info-note {
  font-size: 13px;
  color: #999;
}

.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffa500;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.submit-btn {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* Map Section */
.map-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.map-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.map-note {
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

.modal-icon {
  color: #ffa500;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.modal-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.modal-btn {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Blog Main */
.blog-main {
  padding: 60px 20px;
}

.blog-main .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-card-large {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffa500;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-card-content {
  padding: 30px;
}

.blog-meta-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #999;
}

.meta-separator {
  color: #ddd;
}

.blog-card-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-card-content h2 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-content h2 a:hover {
  color: #ffa500;
}

.blog-card-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  transform: translateX(5px);
}

/* Blog CTA */
.blog-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  text-align: center;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-font-size {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-font-size:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-question {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-question:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  z-index: 1500;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cookie-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cookie-text p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.6;
}

.cookie-policy-link {
  color: #ffa500;
  text-decoration: none;
  font-size: 13px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: #ffa500;
  color: #1a1a1a;
}

.cookie-accept:hover {
  background: #ff8c00;
}

.cookie-customize,
.cookie-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cookie-customize:hover,
.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  margin: 20px;
  color: #1a1a1a;
}

.cookie-modal-content h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.cookie-option {
  margin-bottom: 25px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-option p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Footer */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffa500;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-reg {
  font-size: 13px;
  color: #999;
}

.footer-contact,
.footer-hours,
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-contact li,
.footer-hours li,
.footer-links li {
  margin-bottom: 12px;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffa500;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
}

.footer-legal a:hover {
  color: #ffa500;
}

.separator {
  color: #666;
}

.footer-copyright {
  color: #999;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-bottom p {
  color: #999;
  font-size: 13px;
  margin-bottom: 5px;
}

.footer-bottom p a {
  color: #ffa500;
}

/* Blog Post Styles */
.post-content {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.post-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.post-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.back-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link:hover {
  transform: translateX(-5px);
}

.post-header h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.post-excerpt {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.post-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.post-body {
  padding: 60px 20px;
}

.content-wrapper-narrow {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper-narrow p {
  margin-bottom: 20px;
  color: #333;
}

.content-wrapper-narrow h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #1a1a1a;
  font-weight: 700;
}

.content-wrapper-narrow h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: #1a1a1a;
  font-weight: 600;
}

.post-cta {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 60px;
}

.post-cta h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.post-cta p {
  color: #666;
  margin-bottom: 25px;
}

.post-footer {
  background: #f8f9fa;
  padding: 40px 20px;
  margin-top: 40px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffa500;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.post-nav-link:hover {
  transform: translateX(5px);
}

.post-nav-link:hover:last-child {
  transform: translateX(-5px);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .intro-section .content-wrapper,
  .about-intro-grid,
  .service-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content {
    grid-template-columns: 1fr;
  }

  .cookie-buttons {
    flex-wrap: wrap;
  }

  .header-actions {
    display: none;
  }

  .blog-card-image img {
    height: 250px;
  }

  .content-wrapper {
    padding: 0 15px;
  }

  .post-header h1 {
    font-size: 32px;
  }

  .post-header {
    padding: 60px 20px 40px;
  }
@media (max-width:768px){
  .post-header{
margin-top:10em;
}
}
  .post-navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-primary-large,
  .btn-secondary-large {
    padding: 12px 24px;
    font-size: 14px;
  }

  .form-container {
    padding: 25px;
  }

  .modal-content {
    padding: 30px;
  }
}
