:root {
  --primary: #b30000; /* Maroon/Red */
  --secondary: #d4af37; /* Golden */
  --dark: #1a1a1a; /* Black */
  --light: #ffffff; /* White */
  --gray: #f5f5f5;
  --dark-gray: #1e1e1e; /* Added for consistency */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--light); /* Changed from dark to light for black background */
  background-color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--light); /* Added for better contrast */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--light); /* Added for better contrast */
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary)); /* Enhanced */
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--primary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(243, 242, 242, 0.007);
  transition: var(--transition);
  backdrop-filter: blur(10px); /* Added for modern look */
}

header.scrolled {
  background-color: rgba(26, 26, 26, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* Logo Styles */
.logo-image {
  height: 200px;
  width: auto;
  transition: var(--transition);
}

.footer-logo-image {
  height: 100px;
  width: auto;
  margin-bottom: 15px;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--secondary); /* Changed to secondary for better visibility */
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary); /* Changed to secondary */
  transition: var(--transition);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-links a.active {
  color: var(--secondary); /* Changed to secondary */
}

.nav-links a.active:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--light);
  font-size: 24px;
  z-index: 1001; /* Added to ensure it's above other elements */
}

/* Page Hero - Simple & Clean Animation */
.page-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://media.istockphoto.com/id/1400557658/photo/brand-management-branding-or-rebranding-concept.webp?a=1&b=1&s=612x612&w=0&k=20&c=MssMy9oLZMz3wd42orPMp0232p3pxlwpUOlTDIUKGPI=");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  margin-top: 70px;
  animation: fadeInScale 1s ease-out;
}

.page-hero h1 {
  font-family: 'Amonos', 'Anonymous Pro', monospace;
  font-size: 3rem;
  margin-bottom: 20px;
  animation: slideFromLeft 0.8s ease-out 0.3s both;
  color: #e2b00d;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: slideFromRight 0.8s ease-out 0.6s both;
}

/* Simple Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  background: var(--dark-gray); /* Added for better contrast */
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(179, 0, 0, 0.3); /* Added primary color tint */
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; /* Added for smooth zoom */
}

.service-item:hover .service-image {
  transform: scale(1.05); /* Added zoom effect */
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--light);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--secondary); /* Added for better visibility */
}

/* Service Details */
.service-details {
  background-color: var(--dark-gray); /* Changed from gray to dark-gray */
  color: var(--light); /* Added for better contrast */
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--primary); /* Changed to primary color */
}

.service-tab {
  padding: 15px 25px;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  color: var(--light); /* Added for better contrast */
}

.service-tab.active {
  color: var(--secondary); /* Changed to secondary */
}

.service-tab.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary); /* Changed to secondary */
}

.service-tab:hover {
  color: var(--secondary);
  background-color: rgba(212, 175, 55, 0.1); /* Added hover background */
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

.service-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.service-features {
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: var(--light); /* Added for better contrast */
}

.service-features li i {
  color: var(--secondary); /* Changed to secondary */
  margin-right: 10px;
  margin-top: 5px;
}

/* Process Section */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  
}
.process-timeline h3{
  color: #e2b00d;
}
.process-timeline h2{
  color: #e2b00d;
}


.process-timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary)); /* Enhanced */
}

.process-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  padding: 0 40px;
}

.process-item:nth-child(odd) {
  left: 0;
}

.process-item:nth-child(even) {
  left: 50%;
}

.process-item:after {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary); /* Changed to secondary */
  border: 3px solid var(--dark); /* Added border */
}

.process-item:nth-child(odd):after {
  right: -10px;
}

.process-item:nth-child(even):after {
  left: -10px;
}

.process-content {
  background-color: var(--dark-gray); /* Changed from light to dark-gray */
  padding: 30px; /* Increased padding */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--light); /* Added for better contrast */
  border: 1px solid rgba(212, 175, 55, 0.2); /* Added subtle border */
}

.process-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary); /* Changed to secondary */
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); /* Enhanced gradient */
  color: var(--light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="600" cy="400" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #e2b00d;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background-color: black;
  color: var(--light);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  margin-bottom: 20px;
  color: var(--light);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  color: #e2b00d;
}

.footer-links h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary); /* Changed to secondary */
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  transition: var(--transition);
  color: var(--light);
}

.footer-links ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--light);
}

.footer-contact ul li i {
  color: var(--secondary); /* Changed to secondary */
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  color: var(--light);
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
}

/* Sticky Quote Button */
.sticky-quote {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: rgb(185, 6, 6);
  color: var(--light);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(179, 0, 0, 0.4);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-quote:hover {
  background: linear-gradient(135deg, var(--secondary), var(--light-gold));
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: #e2b00d;
      }

      .hero-tagline span {
        color: white;
        font-weight: 600;
      }

     

/* Responsive Styles */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .process-timeline:before {
    left: 30px;
  }

  .process-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
  }

  .process-item:nth-child(odd),
  .process-item:nth-child(even) {
    left: 0;
  }

  .process-item:after {
    left: 20px !important;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block !important; /* Force show on mobile */
    z-index: 1001; /* Ensure it's above other elements */
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Added shadow */
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
    width: 100%; /* Make links full width */
    text-align: center;
  }

  .nav-links a {
    display: block; /* Make links block-level for better touch */
    padding: 15px 0; /* Add padding for better touch targets */
    width: 100%;
    font-size: 1.1rem;
    transition: var(--transition);
  }

  .nav-links a:hover {
    background-color: rgba(212, 175, 55, 0.1); /* Add hover background */
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .service-tabs {
    flex-direction: column;
    align-items: center;
  }

  .service-tab {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-content {
    padding: 20px;
  }
}
 /* Logo Image Styles */
.logo-image {
  height: 100px;
  width: auto;
  transition: all 0.3s ease;
  margin-left: -35px;
}

.footer-logo-image {
  height: 100px;
  width: auto;
  margin-bottom: 15px;
}

/* Adjust header height if needed for logo */
.navbar {
  align-items: center;
}

/* Make sure logo doesn't affect mobile menu */
@media (max-width: 768px) {
  .logo-image {
    height: 35px;
    margin-left: 0;
  }
  
  .footer-logo-image {
    height: 45px;
  }
}