/* Base styles and variables */
:root {
  --primary-color: #cd9933;
  --secondary-color: #0066CC;
  --text-color: #333333;
  --light-color: #FFFFFF;
  --accent-color: #003366;
  --gray-color: #F7F7F7;
  --dark-gray: #333;
  --font-primary: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Preview Header (10Web bar) */
.preview-header {
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.preview-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-header .logo img {
  height: 30px;
}

.view-toggle {
  display: flex;
  background: #f0f0f0;
  border-radius: 20px;
  padding: 3px;
}

.view-toggle button {
  border: none;
  background: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.view-toggle button.active {
  background-color: #000;
  color: white;
}

.use-template-btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.use-template-btn:hover {
  background-color: #333;
}

/* Main Navigation */
.main-nav {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  z-index: 900;
  transition: transform 0.3s ease-in-out;
}

.main-nav.nav-hidden {
  transform: translateY(-100%);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

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

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.get-started-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.get-started-btn:hover {
  background-color: var(--text-color);
}
 
/* Hero Section */
.hero {
  background-image: url('asset/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 80px 0;
  text-align: center;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.hero h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #f0f0f0;
  color: var(--text-color);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--gray-color);
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 30px;
  text-align: center;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 51, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.service-link {
  color: var(--text-color);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.service-link:after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}

.service-link:hover {
  color: var(--primary-color);
}

.service-link:hover:after {
  opacity: 1;
  right: -25px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.testimonials:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://ext.same-assets.com/3428628572/1025683589.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

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

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin: 20px;
  transition: all 0.3s ease;
}

.testimonial-content {
  position: relative;
  margin-bottom: 30px;
}

.quote-icon {
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -30px;
  left: -10px;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  position: relative;
  z-index: 1;
}

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

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--gray-color);
}

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

.author-info h4 {
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 5px 0;
  color: var(--primary-color);
}

.author-info p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn, .next-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
  margin: 0 15px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--secondary-color);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
}

.testimonial-item:not(:first-child) {
  display: none;
}

/* Team Section */
.team {
  padding: 100px 0;
  background-color: var(--gray-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  height: 300px;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.position {
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 16px;
}

.bio {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(90%) saturate(3000%) hue-rotate(205deg) brightness(94%) contrast(101%);
  transition: filter 0.3s ease;
  color: var(--text-color);
}

.social-link:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  padding: 30px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.info-item {
  margin-bottom: 20px;
}

.info-label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-text {
  display: block;
  opacity: 0.8;
}

.contact-form {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.submit-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--text-color);
}

.form-success {
  background-color: #e6f7e6;
  color: #2c8c2c;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  margin: 40px 0;
}

/* Footer */
.footer {
  background-color: #222;
  color: #fff;
  padding: 70px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-logo p {
  opacity: 0.7;
  margin-bottom: 25px;
  max-width: 300px;
}

.footer .social-links {
  display: flex;
  gap: 15px;
}

.footer .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer .social-link:hover {
  background-color: var(--primary-color);
}

.footer .social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 14px;
}

/* Mobile view specific styles */
.mobile-view {
  max-width: 480px;
  margin: 0 auto;
}

.mobile-view .main-nav .container {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.mobile-view .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.mobile-view .hero h2 {
  font-size: 32px;
}

.mobile-view .hero p {
  font-size: 16px;
}

.mobile-view .hero-buttons {
  flex-direction: column;
  gap: 10px;
}

.mobile-view .services-grid {
  grid-template-columns: 1fr;
}

.mobile-view .contact-container {
  grid-template-columns: 1fr;
}

.mobile-view .footer-content {
  grid-template-columns: 1fr;
  gap: 30px;
}

.mobile-view .footer-links {
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Chat bubble */
.chat-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.chat-bubble img {
  width: 30px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo p {
    max-width: 100%;
  }

  .footer .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav .container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-links {
    gap: 15px;
    margin: 10px 0;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .services {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .preview-header .container {
    flex-direction: column;
    gap: 10px;
  }

  .view-toggle {
    order: 3;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
