/* General Styles */
body {
  font-family: "Century Gothic", "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background: #2b2d42;
  color: #edf2f4;
  background-repeat: repeat;
}

a {
  text-decoration: none;
}

/* Hero Section */
.et-hero-tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  background: url('img/1.jpg') no-repeat center center/cover;
  text-align: center;
  color: #edf2f4;
}

.et-hero-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 45, 66, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.hero-logo {
  max-width: 400px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  margin: 30px 0;
  animation: fadeIn 1.5s ease-in-out 0.3s forwards;
  opacity: 0;
}

.hero-description {
  font-size: 1.1rem;
  margin: 20px 0;
  animation: fadeIn 1.5s ease-in-out 0.6s forwards;
  opacity: 0;
}

.hero-button {
  display: inline-block;
  padding: 15px 30px;
  background: #ef233c;
  color: #edf2f4;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  animation: fadeIn 1.5s ease-in-out 0.6s forwards;
  opacity: 0;
}

.hero-button:hover {
  background: #d90429;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(239, 35, 60, 0.4);
}

/* Navbar */
.et-hero-tabs-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: #2b2d42;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.et-hero-tabs-container--top {
  position: fixed;
  top: 0;
}

.et-hero-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #edf2f4;
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
  transition: all 0.5s ease;
}

.et-hero-tab:hover {
  color: #ef233c;
  background: rgba(239, 35, 60, 0.1);
  transform: scale(1.1);
}

.et-hero-tab.active {
  color: #ef233c;
  background: rgba(239, 35, 60, 0.15);
}

.et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #ef233c;
  transition: left 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 11;
  cursor: pointer;
}

.bar {
  width: 100%;
  height: 3px;
  background: #edf2f4;
  transition: all 0.3s ease;
}

/* Main Sections */
.et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(to bottom, #3a3c52, #2b2d42);
  text-align: center;
  padding: 60px 20px;
  transition: background 0.5s ease;
  background-blend-mode: overlay;
}

.et-slide h1, .et-slide h2 {
  font-size: 2.5rem;
  margin: 0 0 50px;
  letter-spacing: 0.1rem;
  color: #edf2f4;
  position: relative;
}

.et-slide h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #ef233c;
}

.et-slide h3 {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  opacity: 0.6;
  color: #edf2f4;
}

/* About Section */
.about-section {
  background: linear-gradient(to bottom, #4a4c62, #3a3c52);
}

/* Philosophy Section */
.philosophy-section {
  background: linear-gradient(to bottom, #3a3c52, #2b2d42);
}

/* Services Section */
.services-section {
  background: linear-gradient(to bottom, #2b2d42, #1c1e32);
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(to bottom, #1c1e32, #0d0f22);
}

/* Why Choose Us Section */
.why-choose-section {
  background: linear-gradient(to bottom, #0d0f22, #000012);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to bottom, #000012, #000000);
}

.about-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  text-align: left;
  background: rgba(43, 45, 66, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  outline: 0 solid #ef233c;
  transition: outline-width 0.5s ease-in-out;
}

.about-text:hover {
  outline-width: 2px;
}

.about-text p, .about-text .philosophy-points li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-text blockquote {
  font-style: italic;
  color: #ef233c;
  border-left: 5px solid #ef233c;
  padding-left: 20px;
  margin: 20px 0;
}

.about-text .animate-text {
  opacity: 1;
  transform: translateY(0);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.philosophy-text {
  flex: 1;
  text-align: left;
  background: rgba(43, 45, 66, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  outline: 0 solid #ef233c;
  transition: outline-width 0.5s ease-in-out;
}

.philosophy-text:hover {
  outline-width: 2px;
}

.philosophy-text p, .philosophy-points li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.philosophy-text blockquote {
  font-style: italic;
  color: #ef233c;
  border-left: 5px solid #ef233c;
  padding-left: 20px;
  margin: 20px 0;
}

.philosophy-text .animate-text {
  opacity: 1;
  transform: translateY(0);
}

.philosophy-points {
  list-style: none;
  padding: 0;
}

.philosophy-points li {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #edf2f4;
}

.philosophy-image {
  flex: 1;
}

.philosophy-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tagline {
  font-weight: bold;
  font-size: 1.3rem;
}

/* Services Section */

.services-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  background: #1a1b2e;
  color: #edf2f4;
  margin: 20px 0;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  outline: 0 solid #ef233c;
  transition: outline-width 0.5s ease-in-out;
}

.service-item:hover {
  outline-width: 2px;
}

.service-item summary {
  font-size: 1.4rem;
  cursor: pointer;
  color: #edf2f4;
  transition: color 0.3s ease;
}

.service-item summary:hover {
  color: #ef233c;
}

.service-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

details[open] .service-content {
  opacity: 1;
  max-height: 2000px; /* Increased for content */
}

.service-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-content:hover img {
  transform: scale(1.05);
}

.service-item ul li {
  transition: transform 0.3s ease;
}

.service-item ul li:hover {
  transform: translateX(5px);
}

/* Pricing Section */

.pricing-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.pricing-card {
  background: #1a1b2e;
  padding: 20px;
  border-radius: 10px;
  color: #edf2f4;
  min-width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  outline: 0 solid #ef233c;
  transition: outline-width 0.5s ease-in-out, transform 0.3s ease;
}

.pricing-card:hover {
  outline-width: 2px;
  transform: translateY(-10px);
}

.pricing-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pricing-desc {
  font-size: 1rem;
  margin: 10px 0;
  color: #edf2f4;
  background: rgba(239, 35, 60, 0.8);
  padding: 10px;
  border-radius: 5px;
}

/* Why Choose Us Section */

.why-choose-symmetric {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.why-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  background: #1a1b2e;
  padding: 20px;
  border-radius: 10px;
  color: #edf2f4;
  transition: all 0.3s ease;
  text-align: center;
  outline: 0 solid #ef233c;
  transition: outline-width 0.5s ease-in-out, transform 0.3s ease;
}

.why-item:hover {
  outline-width: 2px;
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(239, 35, 60, 0.3);
}

.why-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.why-item:hover img {
  transform: scale(1.05);
}

.why-item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact Section */

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #1a1b2e;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideInUp 1s ease-in-out;
  text-align: center;
  color: #edf2f4;
  outline: 0 solid #ef233c;
  transition: outline-width 0.5s ease-in-out;
}

.contact-info:hover {
  outline-width: 2px;
}

.contact-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #edf2f4;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  color: #d8e1e8;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #edf2f4;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #ef233c;
  transform: translateX(5px);
}

.contact-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.contact-link:hover .contact-icon path {
  fill: #d90429;
  transform: rotate(10deg);
}

.contact-details {
  background: rgba(239, 35, 60, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 1.1rem;
  color: #edf2f4;
  line-height: 1.6;
  margin: 10px 0;
}

.contact-details strong {
  color: #ef233c;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1a1b2e 0%, #0a0b1e 100%);
  padding: 40px 20px;
  color: #edf2f4;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d8e1e8;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 5px;
}

.footer-links a:hover {
  color: #ef233c;
  background: rgba(239, 35, 60, 0.1);
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Media Queries */
@media (max-width: 800px) {
  .hamburger {
    display: flex;
  }

  .et-hero-tabs-container {
    display: none;
    flex-direction: column;
    height: auto;
    bottom: auto;
    top: 70px;
  }

  .et-hero-tabs-container.active {
    display: flex;
  }

  .et-hero-tab {
    height: 50px;
  }

  .et-hero-tabs-container {
    font-size: 0.7rem;
  }
  .about-grid, .about-content, .philosophy-content, .pricing-carousel, .why-choose-symmetric {
    flex-direction: column;
  }
  .contact-grid {
    flex-direction: column;
  }
}

@media (min-width: 800px) {
  .hero-logo { max-width: 500px; }
  .hero-subtitle { font-size: 1.5rem; }
  .hero-button { font-size: 1.2rem; padding: 20px 40px; }
  .et-hero-tab { font-size: 1rem; }
  .et-slide h1, .et-slide h2 { font-size: 3rem; }
  .et-slide h3 { font-size: 1rem; }
}
/* Navbar Logo */
.et-hero-logo-link {
  display: flex;
  align-items: center;
  padding: 0 20px;
  }
  .et-hero-logo {
  height: 50px; /* Adjust as needed */
  width: auto;
  }
  @media (max-width: 800px) {
  .et-hero-logo {
  height: 40px; /* Smaller for mobile */
  }
  }