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

body {
    font-family: 'Bitter', serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-container {
    margin: 0 3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    color: white;
    position: relative;
}

.container {
    margin: 0 4vw;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.testimonial-quote {
    font-style: italic; /* italic text */
    font-family:'Bitter', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 1em 0;
    color: black;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 4vw;
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-content.is-scrolled {
    background: #ffd05a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.logo {
    font-family: 'Shrikhand';
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    z-index: 1002;
}

/* Burger Menu Styles */
.burger {
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1002;
}

.burger span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffd05a;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    text-align: center;
}

.menu-overlay .nav-links a {
    color: #333;
    text-decoration: none;
    font-family: 'Shrikhand';
    font-size: 2rem;
    transition: color 0.3s ease;
}

.menu-overlay .nav-links a:hover {
    color: white;
}

/* Desktop nav links - hidden by default now */
.nav-content .nav-links {
    display: none;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.4rem 0.8rem; /* increase clickable area */
  cursor: pointer;
}

.logo-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}




h1 {
    font-family: 'Shrikhand';
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-top: 20%;
}

h2 {
    font-family: 'Shrikhand';
    font-size: 3.3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn-primary {
    font-family: 'Bitter', serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1.2em 2em;
    color: white;
    border: 2px solid #f2b8b4;
    border-color: #f2b8b4;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: #f2b8b4;
    transform: translateY(-2px);
}

.btn-secondary {
    font-family: 'Bitter', serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1.2em 2em;
    background: black;
    color: white;
    border: 1px solid black;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: black;
    color: #f2b8b4;
}

/* Yellow Sections */
.yellow-section {
    background: #ffd05a;
    padding: 3rem 0;
}

.yellow-section-2 {
    background: #ffd05a;
    padding-top: 3rem;
}

.yellow-section-3 {
    background: #ffd05a;
    padding-top: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    border-radius: 12px;
    margin: 0 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


.service-content {
    padding: 2rem 0;
}

.section-title {
    font-family: 'Shrikhand';
    font-size: clamp(3rem, 4vw, 7rem);
    margin-bottom: 2rem;
    color: #000000;
}

.section-subtitle {
    font-family: 'Bitter', serif;
    font-size: clamp(1rem, 2vw, 3.5rem);
    margin-bottom: 1rem;
    color: black;
    font-weight: 400;
}





.appointment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.appointment-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.footer-form {
padding: 0 3rem;
border-radius: 16px;
}

.footer-group {
margin-bottom: 1.5rem;
}


.footer-group input,
.footer-group textarea {
width: 100%;
padding: 1rem;
border-radius: 9999px; /* makes pill shape */
font-family: 'Bitter', serif;
font-size: 1.25rem; /* bigger like the screenshot */
border: 1px solid black; /* proper border */
color: black;
background: #ffd05a; /* same as background */
}

.footer-group textarea {
height: 120px;
resize: vertical;
border-radius: 24px; /* screenshot has rounded corners, not pill */
}

.footer-group input:focus,
.footer-group textarea:focus {
outline: none;
border: 2px solid #000; /* thicker border on focus for clarity */
}

.form-group {
margin-bottom: 1.5rem;
}
.form-row input {
flex: 1; /* makes them equal width */
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: 'Bitter', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F4D03F;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.social-item {
    aspect-ratio: 1;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-item:hover {
    transform: scale(1.05);
}

.contact-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: #ffd05a;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Shrikhand';
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.footer-bottom {
    text-align: center;
    color: #666;
}


/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.carousel-text {
    font-family: 'Shrikhand';
    font-weight: 700;
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    padding: 0 3rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}




/* Reset Owl overrides */
.owl-carousel,
.owl-stage-outer,
.owl-stage,
.owl-item {
height: auto !important;
min-height: unset !important;
}

.owl-item {
display: flex;
justify-content: center;
align-items: stretch;
padding: 0; /* strip inline junk margins */
}

.owl-stage {
display: flex;
}

/* Card styling */
.min-height-box {
min-height: 350px; /* adjust for consistent box height */
display: flex;
flex-direction: column;
justify-content: flex-start;
}

.box-shadow {
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.border-radius {
border-radius: 12px;
}


.testimonial-carousel {
position: relative;
max-width: 85%;
margin: 0 auto;
}

.testimonial-wrapper {
overflow: hidden;
}

.testimonial-card {
display: none;
text-align: center;
padding: 20px;
}

.testimonial-card.active {
display: block;
border-radius: 14px;
}

.arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: black;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 50%;
}

.arrow.left {
left: -40px;
}

.arrow.right {
right: -40px;
}

/* Clients grid */
.clients-grid {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(4, 1fr);
}

.clients-grid li {
display: flex;
justify-content: center;
align-items: center;
border: 1px dashed rgb(0 0 0 / 10%); /* feint grey grid lines */
}

.clients-grid img {
max-width: 100%;
height: auto;
opacity: 0.4;
transition: filter 0.2s ease-in-out;
}

.clients-grid img:hover {
    opacity: 1;
}


.faq-wrap{max-width:900px;margin:0 auto}
.fade-in{animation:fadeIn .6s ease both}
@keyframes fadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

.intro{color:var(--muted);margin-bottom:18px}

/* Card */
.faq-card{border-radius:12px;padding:18px;}

/* Accordion list */
.accordion{list-style:none;padding:0;margin:0}
.item{border-radius:10px;overflow:hidden;margin-bottom:10px;background:var(--card);}
.question{
display:flex;align-items:center;justify-content:space-between;padding:14px 16px;cursor:pointer;user-select:none;
gap:12px;transition:background .18s ease;border:1px solid rgba(255,255,255,0.02);width:100%; background:#ffd05a;
}
.question:hover{background:var(--glass)}
.q-left {
display: flex;
align-items: center;
gap: 12px;
opacity: 0.4;
transition: opacity 0.3s ease; /* makes it smooth */
}

.q-left:hover {
opacity: 1;
}
.q-icon{width:40px;height:40px;border-radius:8px;background:linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--accent)}
.q-text{font-family:'Bitter', serif;font-size: 1.2rem;font-weight:600}
.chev{width:18px;height:18px;transition:transform .22s ease;opacity:.9}

.answer-wrapper{height:0;overflow:hidden;transition:height .28s cubic-bezier(.2,.9,.2,1);padding-top:10px;}
.answer{font-family:'Bitter', serif;padding:0 16px 16px 16px;color:var(--muted);line-height:1.55}

/* open state */
.item.open .chev{transform:rotate(180deg)}
.item.open .question{border-bottom-left-radius:0;border-bottom-right-radius:0}

/* More button */
.more-wrap{display:flex;justify-content:center;margin-top:18px}
.more{display:inline-block;padding:10px 16px;border-radius:10px;background:transparent;border:2px solid black;color:var(--accent);text-decoration:none;font-weight:600}

/* responsive */
@media (max-width:520px){.section-title{font-size:34px}.q-icon{width:36px;height:36px}}

.footer-socials {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 2rem;
}

.footer-section h3 {
    font-family: 'Shrikhand';
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: black;
}

.footer-section p,
.footer-section a {
    font-family: 'Bitter', serif;
    font-size: 1rem;
    color: black;
    text-decoration: underline;
    font-weight: bold;
}

.checkbox-group input[type="checkbox"] {
/* hide default box */
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;

width: 1.2rem;
height: 1.2rem;
border: 2px solid black;
border-radius: 6px;
margin-right: 0.5rem;
vertical-align: middle;
cursor: pointer;
transition: border-color 0.3s ease, background 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
background: #F4D03F; /* same accent color */
border-color: #F4D03F;
position: relative;
}

.checkbox-group input[type="checkbox"]:checked::after {
content: "✔";
color: black;
font-size: 1rem;       /* bigger tick */
font-weight: bold;     /* makes it stand out */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -55%); /* centers tick */
line-height: 1;
}


.disclaimer-group label {
    font-family: 'Bitter', serif;
    font-size: 0.75rem;
    cursor: pointer;
}
.checkbox-group label {
    font-family: 'Bitter', serif;
    font-size: 1rem;
    cursor: pointer;
}

.testimonial-logo {
    max-width: 150px;   /* adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto 1rem; /* centers and adds spacing below */
}

.faq-subtitle{
    font-family: 'Bitter', serif;
    font-size: clamp(1rem, 2vw, 3.5rem);
    color: black;
    font-weight: 400;
    text-align: left;
}

#header-logo {
  height: 30px; /* your preferred visible size */
  width: auto;
  display: block;
  pointer-events: none; /* ensures click goes to the <a>, not the <img> */
}



.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.category {
    font-family: 'Bitter', serif;
    cursor: pointer;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.category.active {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post {
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.read-time {
    font-family: 'Shrikhand';
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    font-family: 'Shrikhand';
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.excerpt {
    font-family: 'Bitter', serif;
    font-size: 0.95rem;
    line-height: 1.4;
}



.trademark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.trademark-grid .form-actions {
    grid-column: 1 / -1; 
    text-align: center;
    margin-top: 1rem;
}

#result {
    display: block;
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    text-wrap: auto;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.3s ease;
}

.box input::placeholder,
.box textarea::placeholder {
    color: black !important;
    opacity: 1 !important;
    font-size: 16px;
}

.box input,
.box textarea {
    color: black !important;
}        



.blog-post-content {
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  font-family: 'Bitter', serif;
  line-height: 1.8;
  color: #222;
}

.blog-post-content p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
}

.blog-post-content h2 {
  font-family: 'Shrikhand';
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: black;
}

.blog-post-content ol {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
}

.blog-post-content ol > li {
  counter-increment: section;
  margin-bottom: 1.5rem;
  background: #fffdf5;
  padding: 1.2rem 1.5rem;
  border-left: 6px solid #ffd05a;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.blog-post-content ol > li::before {
  content: counter(section) ". ";
  font-family: 'Shrikhand';
  font-size: 1.6rem;
  color: #ffd05a;
  margin-right: 0.5rem;
}

.blog-post-content li p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.blog-post-content a {
  text-decoration: underline;
  font-weight: 600;
}

.blog-post-content a:hover {
  text-decoration: none;
}

.blog-post-content ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin: 1rem 0;
}

.blog-post-content strong {
  font-weight: 700;
}

.marquee-text {
  overflow: clip;
}

.marquee-text-track {
  display: flex;
  padding-left: 2rem;
  gap: 20rem;
  width: max-content;
  animation: marquee-move-text var(--speed, 30s) linear infinite var(--direction, forwards);
}

.marquee-text p {
  font-family: 'Shrikhand';
  font-weight: 700;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  padding: 0 3rem;
  margin-bottom: 0;
}


@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}

/* Outer wrapper for centering and fadeout */
.wrapper {
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
}

.fadeout-horizontal {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5rem,
    black calc(100% - 5rem),
    transparent
  );
}




/* Responsive */
@media (max-width: 768px) {

    .hero-content {
        max-width: 90%;
    }
    
    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 22px;
    }


    .services-grid {
        grid-template-columns: repeat(1, 3fr);
    }
    .hero {
        height: 80vh;
    }
    .hero-container h1{
        font-size: 1.5rem;
    }
    
    .appointment-section,
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

  .blog-post-content {
    padding: 2rem 1.2rem;
  }
  .blog-post-content h2 {
    font-size: 1.6rem;
  }

    .carousel-text {
        font-size: 2rem;
        padding: 0 2rem;
    }

    .marquee-text-track {
      gap: 0;
    }

    .marquee-text p {
        font-size: 2rem;
        padding: 0 2rem;
        font-family: 'Shrikhand';
        font-weight: 700;
        font-weight: bold;
        color: #fff;
        white-space: nowrap;
        margin-bottom: 0;
    }


}