/* Root Variables */
:root {
  --primary-color: #1e3a8a;
  --primary-light: #4263eb;
  --secondary-color: #059669;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --background-light: #f1f5f9;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding-top: 65px;
  background-color: #f9f9f9;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Base Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
  color: var(--white);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease;
  z-index: 0;
}

.btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Button Variants */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(22, 45, 109, 0.3);
}

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

.btn-secondary:hover {
  background-color: #047857;
}

.btn-outline {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
}

.btn-large {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.btn-large:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* Typography */
h1, h2, h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Navigation - Enhanced */
.navbar {
  position: fixed;
  text-align: right;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6.5rem);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 57px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-menu .btn {
  margin-left: 2.5rem;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
  transition: all 0.3s ease;
}

.nav-menu .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section - Enhanced */
.hero {
  padding: 6.5rem 0 8rem;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.05) 0%,
    rgba(255, 255, 255, 1) 25%,
    rgba(5, 150, 105, 0.03) 75%,
    rgba(255, 255, 255, 1) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/hh-XkZTPCyoWITPDsGmmT5WlU27u4D0uX.png') no-repeat;
  background-size: cover;
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

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

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
  animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-description {
  font-family: sans-serif;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
  line-height: 1.6;
  animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
  transition: left 0.5s;
  pointer-events: none;
  z-index: 0;
}

.hero-buttons .btn:hover::before {
  left: 100%;
}

.hero-buttons .btn i {
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
  transform: translateX(5px);
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.hero-buttons .btn-outline {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
}

/* Section Headers */
.My {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out 0.2s both;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: sans-serif;
}

.services::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(22, 78, 234, 0.05) 0%, transparent 70%);
  transform: rotate(25deg);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out both;
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border-left: 6px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #2563eb, #7c3aed);
  border-radius: 0.25rem 0 0 0.25rem;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.15);
}

.service-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, rgba(19, 71, 214, 0.1), rgba(5, 150, 105, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease;
  z-index: 2;
  position: relative;
}

.service-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: transform 0.4s ease;
}

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

.service-card:hover .service-icon i {
  transform: rotate(5deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about {
  padding: 6rem 0;
  background: white;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
}

.about-left {
  flex: 1 1 40%;
  max-width: 500px;
}

.about-right {
  flex: 1 1 50%;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.accordion-box article {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: relative;
}

.accordion-box input[type="radio"] {
  display: none;
}

.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-label h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
  color: #1f2937;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
  padding: 0 0;
}

input[type="radio"]:checked ~ .accordion-content {
  max-height: 500px;
  padding: 10px 0;
}

.accordion-label img {
  transition: transform 0.3s ease;
}

input[type="radio"]:checked + .accordion-label img {
  transform: rotate(45deg);
}

/* contact style */
/* Enhanced Contact Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
  transform: rotate(15deg);
  z-index: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-intro {
  padding-right: 2rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.contact-intro h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-text {
  position: relative;
  color: var(--primary-color);
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-info-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.12);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem 0;
}

.contact-details p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 1.5rem 1.5rem 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.form-header p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(3px);
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(66, 99, 235, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  height: 55px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

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

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
}

.footer-column a:hover {
  color: white;
  transform: translateX(3px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--primary-light);
  width: 1.2rem;
  font-size: 1rem;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-intro {
    padding-right: 0;
  }

  .contact-intro h2 {
    font-size: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-intro h2 {
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 65px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu .btn {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .My {
    font-size: 2.5rem;
  }

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

  .about-flex {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 6rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .services {
    padding: 4rem 0;
  }

  .about {
    padding: 4rem 0;
  }

  .contact-section {
    padding: 4rem 1rem;
  }

  .footer {
    padding: 3rem 1rem 2rem;
  }
}

/* Google Reviews Section */
.google-reviews-section {
  background: #fafbfc;
  padding: 60px 0 40px 0;
}
.reviews-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.google-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.google-reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}
.google-logo {
  width: 40px;
  height: 40px;
}
.reviews-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}
.stars {
  color: #fbbc04;
  font-size: 1.2rem;
}
.reviews-count {
  color: #888;
  font-size: 1rem;
  margin-left: 4px;
}
.google-review-btn {
  background: #1976d2;
  color: #fff;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.google-review-btn:hover {
  background: #1256a3;
}
.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar {
  display: none;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px 20px 16px 20px;
  min-width: 260px;
  max-width: 270px;
  flex: 0 0 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.review-avatar-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fbbc04;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-name {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
}
.verified {
  color: #1976d2;
  font-size: 1rem;
  margin-left: 2px;
}
.review-date {
  display: block;
  font-size: 0.9rem;
  color: #888;
}
.review-google-icon {
  width: 20px;
  height: 20px;
  margin-left: auto;
}
.review-stars {
  color: #fbbc04;
  font-size: 1.1rem;
}
.review-text {
  color: #222;
  font-size: 1rem;
  min-height: 48px;
}
.review-readmore {
  color: #1976d2;
  font-size: 0.95rem;
  text-decoration: underline;
  margin-top: 4px;
  align-self: flex-start;
}
.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #888;
  background: #eee;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: 10px;
  align-self: center;
}
@media (max-width: 900px) {
  .google-reviews-header {
    flex-direction: column;
    gap: 16px;
    padding: 18px 12px;
  }
  .reviews-carousel {
    gap: 12px;
  }
}