.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
}

/* Underline animation base */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #c00000;
  transition: width 0.3s ease;
}

/* Hover effect */
.nav-links a:hover::after {
  width: 100%;
}

/* Active page indicator */
.nav-links a.active::after {
  width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #222222;
  color: white;
}

.navbar {
  background-color: black;
  height: 60px;
  display: flex;
  align-items: center;
  width: 100%;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 12px;
}

.logo-text {
  font-size: 1.0rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.logo-wrap:hover .logo-text {
  opacity: 1;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;

  background-image: url("../assets/images/Web banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

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

.hero-logo {
  width: 1000px;
  max-width: 100%;
  margin-bottom: 10px;
}

/* BOOK NOW BUTTON */
.btn-primary {
  display: inline-block;
  padding: 10px 30px;

  background-color: #c00000;
  color: white;

  text-decoration: none;
  font-weight: 600;
  font-size: 1.0rem;
  letter-spacing: 1.5px;

  border: 1px solid #c00000;
  border-radius: 0;
	
	margin-top: 20px;

  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: #c00000;
}

/* NAV RIGHT WRAPPER */
.nav-right {
  display: flex;
  align-items: center;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
}

/* DEFAULT NAV LINKS */
.nav-links.active {
  display: flex;
}

/* MOBILE STYLES */
@media (max-width: 900px) {

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: black;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    display: none;
  }

  .nav-links a {
    margin-bottom: 15px;
  }

  .hamburger {
    display: flex;
  }

}
/* ABOUT HERO */
.about-hero {
  position: relative;
  height: 383px;

  background-image: url("../assets/images/abouthero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
	
	transform: translateY(40px);
}

.about-hero h1 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 500;
  letter-spacing: 3px;
  font-weight: 500;
}

.about-hero-logo {
  width: 800px;
  max-width: 100%;
}

/* ABOUT INTRO SECTION */
.about-intro {
  padding: 10px 20px 30px 20px;
  text-align: center;
}

.about-intro-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.about-image {
  width: 380px;
  max-width: 90%;
  margin-bottom: 10px;
}

.about-name {
  font-size: 2rem;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-title {
  font-weight: 500;
  margin-bottom: 6px;
}

.location {
  opacity: 0.7;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.about-specialties p {
  margin: 6px 0;
}

.about-intro .btn-primary {
  margin-top: 30px;
}

/* FULL BIO SECTION */
.about-full-bio {
  max-width: 800px;
  margin: 0px auto 120px auto;
  padding: 10px 10px;

  background: rgba(255, 255, 255, 0.05);  /* subtle light tint */
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(4px); /* optional subtle polish */

  display: none; /* hidden initially */
}

.bio-wrapper p {
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0.9;
}

/* SERVICES HERO */
.services-hero {
  position: relative;
  height: 305px;

  background-image: url("../assets/images/serviceshero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(30px);
}

.services-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
}
/* SERVICES SECTION */
.services-section {
  padding: 40px 0px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* SERVICE CARD */
.service-card {
  text-align: center; /* keeps image + title centered */
}

.service-card img {
  width: 100%;
  margin-bottom: 25px;
}

.service-card h2 {
  margin-bottom: 5px;
  letter-spacing: 2px;
}

/* LEFT-ALIGNED PARAGRAPH FOR PROFESSIONAL LOOK */
.service-card p {
  max-width: 550px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  opacity: 0.9;
}

/* MOBILE STACK */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
	.services-section {
    padding: 80px 30px;
  }

  .service-card p {
    max-width: 100%;
  }
}

/* BOOKING SECTION */
.services-book {
  text-align: center;
  padding: 0px 20px 60px 20px;
}

.services-book h2 {
  margin-bottom: 0px;
  letter-spacing: 2px;
}

/* PORTFOLIO HERO */
.portfolio-hero {
  position: relative;
  height: 305px; /* SAME as services hero */

  background-image: url("../assets/images/portfoliohero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.portfolio-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* same overlay strength */
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(30px);
}

.portfolio-hero h1 {
  font-size: clamp(4rem, 4vw, 3rem);
  letter-spacing: 3px;
  margin-bottom: 1px;
}

.portfolio-hero p {
  opacity: 0.8;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin: 30px 0 40px 0;
  letter-spacing: 3px;
  font-size: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 1000px;
  height: 3px;
  background-color: #c00000;
  margin: 15px auto 0 auto;
}

/* GRID LAYOUT */
.comparison-section {
  padding: 0 40px 120px 40px;
}

.comparison-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* CARD */
.comparison-card {
  position: relative;
  width: 80%;
  aspect-ratio: 1 / 1;   /* 🔥 makes it a perfect square */
	
 
  margin: 0 auto;

  padding: 40px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 12px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.comparison-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
}

.comparison-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 500px;
}

/* BUTTONS */
.toggle-buttons {
  margin: 25px 0;
}

.toggle-buttons button {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 24px;
  margin: 0 12px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.toggle-buttons button:hover {
  background: #c00000;
  border-color: #c00000;
  color: #fff;
}

.comparison-audio {
  width: 100%;
  max-width: 400px;
}

/* EMPTY CARD */
.empty-card {
  background-color: #111;
}

/* MOBILE STACK */
@media (max-width: 1000px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}
/* ACTIVE TOGGLE BUTTON */
.toggle-buttons button.active-toggle {
  background: #c00000;
  border-color: #c00000;
  color: #ffffff;
}

/* existing mobile rules */
@media (max-width: 1000px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT AND PORTFOLIO HERO MOBILE ADJUSTMENT */
@media (max-width: 900px) {

  .about-hero {
    background-position: 70% center;
  }
	  .portfolio-hero {
    background-position: 75% center;
  }

}

/* FAQ HERO */
.faq-hero {
  position: relative;
  height: 305px;

  background-image: url("../assets/images/faqhero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(20px);
}

.faq-hero h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  letter-spacing: 3px;
}

/* FAQ INTRO */
.faq-intro {
  max-width: 1010px;
  margin: 20px auto 20px auto;
  padding: 0 30px;
  text-align: center;
  line-height: 1.8;
  opacity: 0.9;
}

/* FAQ SECTION */
.faq-section {
  padding: 0 30px 120px 30px;
}

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

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 28px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: rgba(255,255,255,0.03);
}

/* QUESTION ROW */
.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
}

/* Chevron icon */
.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* Rotate chevron when open */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
  margin-top: 0;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(-5px);
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 600px;
  margin-top: 18px;
  opacity: 0.95;
  transform: translateY(0);
}

/* Optional subtle red highlight when active */
.faq-item.active .faq-question {
  color: #c00000;
}