:root {
  --primary-dark: #1a1a1a;
  --secondary-dark: #2d2d2d;
  --accent-orange: #e67e22;
  --accent-orange-light: #f39c12;
  --accent-red: #c0392b;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --text-dark: #333;
  --text-light: #fff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-orange-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
  background-color: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Navbar Styles */
.navbar {
  background-color: var(--primary-dark);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  background-color: var(--accent-orange);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
}

.logo-text {
  color: white;
}

.logo-name {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-orange);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Header/Hero Section - Updated Design */
.hero {
  background-color: var(--primary-dark);
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 120px);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  max-width: 800px;
}

.hero h1 span {
  color: var(--accent-orange);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hero-image-container:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.image-caption {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 600px;
}

.image-caption span {
  color: var(--accent-orange);
  font-weight: 600;
}

.glow-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, rgba(230, 126, 34, 0) 70%);
  z-index: 1;
}

.glow-1 {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.glow-2 {
  bottom: 40%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.glow-3 {
  top: 50%;
  right: 20%;
  width: 200px;
  height: 200px;
  animation: float 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes float {

  0%,
  100% {
	transform: translateY(0);
  }

  50% {
	transform: translateY(-20px);
  }
}

.badge-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  border-left: 3px solid var(--accent-orange);
}

.badge i {
  color: var(--accent-orange);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  bottom: -10px;
  left: 0;
}

.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.service-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
  height: 350px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-content {
  flex: 1;
  padding: 40px;
}

.service-content h3 {
  font-size: 1.8rem;
  color: var(--secondary-dark);
}

.service-content p {
  margin-bottom: 1.5rem;
  color: #555;
}

.service-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  background-color: var(--light-gray);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--medium-gray);
}

.faq-question.active {
  background-color: var(--accent-orange);
  color: white;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: white;
}

.faq-answer p {
  padding: 20px;
  margin: 0;
}

.faq-location {
  color: var(--accent-orange);
  font-weight: 600;
  font-style: italic;
  margin-top: 10px;
  display: block;
}

.faq-icon {
  transition: var(--transition);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

/* Service Area Section */
.service-area-section {
  background-color: var(--secondary-dark);
  color: white;
}

.service-area-section .section-title {
  color: white;
}

.service-area-section .section-title:after {
  background-color: white;
}

.areas-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.area-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.area-card i {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 15px;
}

.area-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
}

.contact-container {
  display: flex;
  gap: 40px;
}

.contact-map,
.contact-info {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  border: none;
}

.contact-info {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  color: var(--secondary-dark);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail i {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.footer-logo .logo-name {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo p {
  opacity: 0.8;
  margin-bottom: 20px;
}

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

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent-orange);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-orange);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
	font-size: 2.8rem;
  }

  .service-row,
  .service-row:nth-child(even) {
	flex-direction: column;
  }

  .service-img {
	width: 100%;
	height: 250px;
  }

  .contact-container {
	flex-direction: column;
  }

  .hero-image-container {
	height: 350px;
  }
}

@media (max-width: 768px) {
  .nav-links {
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background-color: var(--primary-dark);
	flex-direction: column;
	align-items: center;
	padding: 20px 0;
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 999;
  }

  .nav-links.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
  }

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

  .mobile-menu-btn {
	display: block;
  }

  .hero h1 {
	font-size: 2.3rem;
  }

  .cta-buttons {
	flex-direction: column;
	width: 100%;
  }

  .btn {
	width: 100%;
	text-align: center;
  }

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

  .hero-image-container {
	height: 300px;
  }

  .badge-container {
	flex-direction: column;
  }

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





:root {

  --secondary: #2C3E50;
  /* Dark blue-gray */
  --accent: #F39C12;
  /* Warm gold */
  --light: #FDF6F0;
  /* Warm off-white */
  --medium: #E8E8E8;
  --dark: #2C2C2C;
  --text: #444444;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.4s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background-color: white;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

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

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

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

/* About Us Section */
.about-section {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMCA1MEwxMDAgNTBNNTAgMEw1MCAxMDAiIHN0cm9rZT0iI0U4RThFOCIgc3Ryb2tlLXdpZHRoPSIxIi8+Cjwvc3ZnPgo=');
  opacity: 0.3;
  z-index: 0;
}

.section-title {
  font-size: 3.2rem;
  color: var(--secondary);
  position: relative;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title span {
  color: var(--primary);
  position: relative;
}



.section-subtitle {
  font-size: 1.3rem;
  color: var(--primary-dark);
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  padding-bottom: 20px;
}



/* About Content Layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.about-container.reverse {
  flex-direction: row-reverse;
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding: 30px;
}

.about-content h3 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-content h3::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background-color: var(--primary);
  bottom: -8px;
  left: 0;
}

.reverse .about-content h3::after {
  left: auto;
  right: 0;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: var(--text);
}

.highlight-box {
  background-color: white;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  border-left: 5px solid var(--accent);
  transition: var(--transition);
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.highlight-box h4 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-box h4 i {
  color: var(--accent);
}

/* About Image/Visual */
.about-visual {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.about-img::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}

.reverse .about-img::before {
  left: -20px;
  right: 20px;
}

.years-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
  z-index: 2;
}

.reverse .years-badge {
  right: auto;
  left: -20px;
}

.years-badge span:first-child {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.years-badge span:last-child {
  font-size: 1rem;
  font-weight: 500;
}

/* Values Section */
.values-section {
  background-color: var(--secondary);
  color: white;
  border-radius: var(--radius);
  padding: 60px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBmaWxsPSIjMkMzRTUwIi8+CjxwYXRoIGQ9Ik0wIDUwTDEwMCA1ME01MCAwTDUwIDEwMCIgc3Ryb2tlPSIjMzQ0OTVCIiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+Cg==');
  opacity: 0.2;
}

.values-title {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.value-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.value-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.value-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 70px 40px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 60px;
  box-shadow: var(--shadow);
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--accent);
  color: var(--secondary);
  border: none;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: white;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
	font-size: 2.7rem;
  }

  .about-container,
  .about-container.reverse {
	flex-direction: column;
  }

  .about-img::before {
	left: 20px;
	right: 20px;
  }

  .reverse .about-img::before {
	left: 20px;
	right: 20px;
  }

  .years-badge,
  .reverse .years-badge {
	top: -20px;
	right: -20px;
	left: auto;
  }
}

@media (max-width: 768px) {
  .section-padding {
	padding: 70px 0;
  }

  .section-title {
	font-size: 2.3rem;
  }

  .values-section {
	padding: 40px 30px;
  }

  .cta-section {
	padding: 50px 30px;
  }

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