* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

:root {
  --primary: #003366;
  --secondary: #0056b3;
  --accent: #ff6600;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
}
body {
  line-height: 1.6;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 !important;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 10px;
}

.logo-text h1 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text span {
  color: var(--accent);
  font-size: 0.9rem;
  display: block;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--accent);
}

nav ul li a:hover {
  color: var(--accent);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  background: linear-gradient(to right, #f8f9fa 50%, var(--light) 50%);
}

.hero-container {
  display: flex;
  align-items: center;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--light);
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--light);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary);
  color: var(--light);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  padding: 80px 0px;
  background-color: #f8f9fa;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.founder-column {
  flex: 1;
  position: relative;
}

.founder-column > .founder-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-column .founder-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-column > .founder-details {
  background-color: var(--light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: -50px;
  margin-left: 50px;
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.founder-column .founder-details h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.founder-title {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.founder-divider {
  height: 2px;
  background-color: var(--accent);
  margin: 10px 0;
  width: 50px;
}

.founder-credentials {
  color: #6c757d;
  font-size: 0.9rem;
}

.about-content {
  flex: 1;
}

.about-content > .about-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-description {
  color: #6c757d;
  margin-bottom: 20px;
}

.credentials-container {
  background-color: var(--primary);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.credentials-title {
  color: var(--light);
  margin-bottom: 15px;
}

.credentials-list {
  color: var(--light);
  padding-left: 20px;
  columns: 2;
  column-gap: 30px;
}

.credentials-list li:not(:last-child) {
  margin-bottom: 8px;
}

.why-choose-title {
  color: var(--primary);
  margin-bottom: 15px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-card {
  background-color: var(--light);
  padding: 15px;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-title {
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.feature-number {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--accent);
  color: var(--light);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
}

.feature-description {
  color: #6c757d;
  font-size: 0.9rem;
}

.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent);
  color: var(--light);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 10px;
}

/* Stats Section Styles */
.stats-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--primary);
  font-weight: 600;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 50px;
}

.service-row-reversed {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-description {
  color: #6c757d;
  margin-bottom: 20px;
}

.service-features {
  color: #6c757d;
  margin-bottom: 25px;
  padding-left: 20px;
  list-style-type: none;
}

.feature-item {
  margin-bottom: 8px;
  position: relative;
}

.feature-item:before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.service-cta {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--accent);
  color: var(--light);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.service-cta:hover {
  background-color: var(--accent);
}

.service-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.service-img:hover {
  transform: scale(1.03);
}

/* Clients Section */
.clients-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-logo {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100px;
  transition: transform 0.3s;
}

.client-logo:hover {
  transform: translateY(-5px);
}

.client-logo-img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) opacity(80%);
  transition: all 0.3s;
}

.client-logo:hover .client-logo-img {
  filter: grayscale(0) opacity(100%);
}

/* Testimonials */
.testimonials {
  margin-top: 60px;
  text-align: center;
}

.testimonials-title {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 64px;
  height: 64px;
  background: url("../../assets/images/user.png");
  background-size: cover;
  border-radius: 50%;
  margin-right: 15px;
}

.client-name {
  color: var(--primary);
  margin-bottom: 5px;
}

.client-position {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-container {
  display: flex;
  gap: 40px;
}

.contact-form-col {
  flex: 1;
  padding: 30px;
  background: var(--light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-col {
  flex: 1;
}

.map-container {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--light);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-text p {
  color: #6c757d;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(100%) !important;
  transform: scale(1.05);
}

.btn-primary {
  background: var(--accent);
  color: var(--light);
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--accent);
}

/* Footer Styles */
.site-footer {
  background-color: var(--primary);
  color: var(--accent);
  padding: 60px 0 20px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  padding: 0 15px;
}

.footer-logo {
  height: 65px;
  margin-bottom: 20px;
}
.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-title {
  color: var(--light);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: var(--light);
}

.footer-contact i {
  color: var(--accent);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.legal-links {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: var(--accent);
}

.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.fab-button {
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  color: var(--light);
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.fab-options {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.fab-option {
  margin: 5px 0;
  background-color: var(--light);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fab-option img {
  width: 28px;
  height: 28px;
}
