
  :root {
    --red: #C0122A;
    --red-dark: #7A0018;
    --red-deep: #3D0010;
    --red-light: #E8304A;
    --cream: #FFF8EE;
    --ivory: #F5ECD8;
    --warm: #EAD5B0;
    --maroon: #5C0018;
    --orange: #D4560A;
    --orange-light: #F07830;
    --text-dark: #1A0508;
    --text-mid: #4A1520;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* PATTERN OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
      radial-gradient(circle at 1px 1px, rgba(192,18,42,0.06) 1px, transparent 0);
    background-size: 32px 32px;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; width: 100%;
    z-index: 200;
    background: var(--red-dark);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    box-shadow: 0 4px 30px rgba(122,0,24,0.5);
  }

  nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 1px;
  }

  .nav-logo span { color: var(--orange-light); }

  .nav-right { display: flex; align-items: center; gap: 20px; }

  .nav-links { display: flex; gap: 24px; }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgb(254, 254, 254);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--orange-light); }

  .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
    white-space: nowrap;
  }

  .nav-phone:hover { background: var(--orange-light); transform: translateY(-1px); }

  /* HERO */
  .hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 80px 60px;
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--maroon) 40%, var(--red-dark) 100%);
    overflow: hidden;
  }

  /* Decorative circles */
  .hero::before {
    content: '';
    position: absolute;
    right: -120px; top: 50%;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,86,10,0.25) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    left: -80px; bottom: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,248,238,0.08);
    pointer-events: none;
  }

  .hero-left { position: relative; z-index: 2; }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,86,10,0.2);
    border: 1px solid rgba(240,120,48,0.4);
    color:white;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
    opacity: 0;
    animation: slideIn 0.7s ease forwards 0.2s;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 12px;
    opacity: 0;
    animation: slideIn 0.7s ease forwards 0.4s;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--orange-light);
  }

  .hero-sub {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1.2rem;
    color:rgb(250, 249, 248);
    margin-bottom: 28px;
    opacity: 0;
    animation: slideIn 0.7s ease forwards 0.6s;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    animation: slideIn 0.7s ease forwards 0.7s;
  }

  .hero-divider::before, .hero-divider::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange));
  }

  .hero-divider::after {
    background: linear-gradient(90deg, var(--orange), transparent);
  }

  .hero-divider span {
    color: var(--orange);
    font-size: 1.2rem;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.8;
    color:rgb(251, 250, 250);
    max-width: 460px;
    margin-bottom: 36px;
    opacity: 0;
    animation: slideIn 0.7s ease forwards 0.8s;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideIn 0.7s ease forwards 1s;
  }

  .btn-fire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--orange), var(--red-light));
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
    box-shadow: 0 6px 30px rgba(212,86,10,0.4);
  }

  .btn-fire:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212,86,10,0.6);
  }

  .btn-outline-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1px solid rgba(255,248,238,0.3);
    color: var(--cream);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
  }

  .btn-outline-w:hover {
    border-color: var(--orange-light);
    color: var(--orange-light);
    background: rgba(240,120,48,0.08);
  }

  /* Hero Right */
  .hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
  }

  .hero-card-wrap {
    position: relative;
    width: 340px;
  }

  .hero-main-card {
    background: rgba(255,248,238,0.06);
    border: 1px solid rgba(255,248,238,0.12);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
  }

  .astro-symbol {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(240,120,48,0.6));
    animation: pulse 3s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(240,120,48,0.6)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 35px rgba(240,120,48,0.9)); }
  }

  .hero-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
  }

  .hero-card-title {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 24px;
  }

  .hero-badge-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .h-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(192,18,42,0.2);
    border: 1px solid rgba(192,18,42,0.3);
    border-radius: 4px;
    padding: 10px 14px;
    text-align: left;
  }

  .h-badge-icon { font-size: 1.3rem; }
  .h-badge-text { font-size: 0.82rem; color: var(--cream); opacity: 0.85; }

  .hero-stats-row {
    display: flex;
    gap: 0;
    margin-top: 20px;
    border: 1px solid rgba(255,248,238,0.1);
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
  }

  .h-stat {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    background: rgba(122,0,24,0.3);
    border-right: 1px solid rgba(255,248,238,0.08);
  }

  .h-stat:last-child { border-right: none; }

  .h-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-light);
  }

  .h-stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: rgba(255,248,238,0.5);
    text-transform: uppercase;
    margin-top: 2px;
  }

  .floating-badge {
    position: absolute;
    top: -16px; right: -16px;
    background: linear-gradient(135deg, var(--orange), var(--red-light));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(212,86,10,0.5);
    animation: bounce 2s ease infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* TICKER */
  .ticker {
    background: var(--orange);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .ticker-inner {
    display: flex;
    gap: 60px;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
    width: max-content;
  }

  .ticker-item {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION SHARED */
  .section-wrap { position: relative; z-index: 1; }

  .section-header { text-align: center; margin-bottom: 56px; }

  .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    font-weight: 700;
  }

  .sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
  }

  .sec-title span { color: var(--red); font-style: italic; }

  .sec-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    margin: 16px auto 0;
    border-radius: 2px;
  }

  /* ABOUT */
  .about-sec {
    padding: 100px 80px;
    background: var(--ivory);
  }

  .about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
  }

  .about-img-block {
    position: relative;
    z-index: 1;
  }

  .about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--red-dark), var(--maroon));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255,248,238,0.03) 30px, rgba(255,248,238,0.03) 31px),
      repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,248,238,0.03) 30px, rgba(255,248,238,0.03) 31px);
    z-index: 1;
  }

  .about-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
  }

  .about-corner {
    position: absolute;
    top: -10px; right: -10px;
    bottom: 10px; left: 10px;
    border: 2px solid rgba(192,18,42,0.2);
    border-radius: 8px;
    pointer-events: none;
    z-index: 5;
  }

  .about-float-card {
    position: absolute;
    z-index: 10;
    bottom: -24px; right: -24px;
    background: var(--red);
    color: white;
    padding: 18px 24px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(122,0,24,0.4);
    text-align: center;
  }

  .afc-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
  }

  .afc-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
  }

  .about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 6px;
  }

  .about-content .about-role {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 20px;
  }

  .about-content p {
    font-family: 'IM Fell English', serif;
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 16px;
  }

  .cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0;
  }

  .cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: white;
    border: 1px solid rgba(192,18,42,0.12);
    border-left: 3px solid var(--red);
    border-radius: 3px;
    font-size: 0.82rem;
    color: var(--text-mid);
    font-weight: 600;
  }

  /* SERVICES - FIXED FOR FULL IMAGE VISIBILITY */
  .services-sec {
    padding: 20px 20px;
    background: white;
  }

  .services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .svc-card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(192,18,42,0.1);
    transition: all 0.35s ease;
    background: var(--cream);
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    min-height: 280px; /* Consistent minimum height */
    padding: 20px; /* Add padding to ensure image doesn't touch edges */
  }

  .svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(122,0,24,0.15);
    border-color: rgba(192,18,42,0.4);
  }

  .svc-card img {
    width: 100%;
    height: auto; /* Maintain original proportions */
    object-fit: contain; /* Show full image without cropping */
    display: block;
    transition: transform 0.5s ease;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 9px;
  }

  .svc-card:hover img {
    transform: scale(1.03);
  }

  /* VIDEO SECTION */
  .video-sec {
    padding: 60px 80px;
    background: var(--white);
    border-top: 1px solid rgba(192,18,42,0.1);
    border-bottom: 1px solid rgba(192,18,42,0.1);
  }

  .video-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .video-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  }

  .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
  }

  .video-placeholder:hover {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    color: rgba(255,255,255,0.8);
  }

  .play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(212,86,10,0.5);
  }

  .play-btn:hover {
    transform: scale(1.1);
    background: var(--orange-light);
  }

  .video-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  #videoEmbed {
    width: 100%;
    height: 100%;
  }

  #videoEmbed video,
  #videoEmbed iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
  }

  /* TESTIMONIALS */
  .testi-sec {
    padding: 100px 80px;
    background: linear-gradient(160deg, var(--red-deep) 0%, var(--maroon) 100%);
    position: relative;
    overflow: hidden;
  }

  .testi-sec::before {
    content: '✦';
    position: absolute;
    font-size: 30rem;
    color: rgba(255,255,255,0.02);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    font-family: serif;
  }

  .testi-sec .sec-title { color: var(--cream); }
  .testi-sec .eyebrow { color: var(--orange-light); }
  .testi-sec .sec-line { background: linear-gradient(90deg, var(--orange-light), var(--orange)); }

  .testi-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .t-card {
    background: rgba(255,248,238,0.06);
    border: 1px solid rgba(255,248,238,0.1);
    border-radius: 8px;
    padding: 24px 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .t-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--red-light));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .t-card:hover { border-color: rgba(240,120,48,0.3); transform: translateY(-4px); }
  .t-card:hover::before { transform: scaleX(1); }

  .t-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 0.6;
    color: var(--orange);
    opacity: 0.4;
    margin-bottom: 14px;
  }

  .t-stars {
    color: var(--orange-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .t-text {
    font-family:sans-serif;
  /* font-style: italic; */
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgb(253, 251, 248);
  margin-bottom: 18px;
  text-align: justify;
  }

  .t-author { display: flex; align-items: center; gap: 10px; }

  .t-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
  }

  .t-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--cream);
  }

  .t-city {
   font-size: 0.9rem;
  color: rgb(246, 199, 14);
  margin-top: 2px;
  }

  /* WHY CHOOSE */
  .why-sec {
    padding: 80px 80px;
    background: var(--ivory);
  }

  .why-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .why-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    border-bottom: 3px solid var(--red);
    transition: all 0.3s;
  }

  .why-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(192,18,42,0.12); }

  .why-icon { font-size: 2.5rem; margin-bottom: 12px; }

  .why-title {
  font-family:sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  }

  .why-text { 
    font-size: 1.0rem;
  line-height: 1.6;
  color: #6F061C;
  opacity: 1;
  text-align: justify;
  }

  /* CTA */
  .cta-sec {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--orange), var(--red));
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 28px 28px;
  }

  .cta-sec h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    position: relative;
  }

  .cta-sec p {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    position: relative;
  }

  .cta-phone {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    color: white;
    text-decoration: none;
    margin-bottom: 28px;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
  }

  .cta-phone:hover { transform: scale(1.02); text-shadow: 0 4px 30px rgba(0,0,0,0.5); }

  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

  .btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid white;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
  }

  .btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

  /* FOOTER */
  footer {
    background: var(--red-deep);
    padding: 50px 80px 30px;
    border-top: 4px solid var(--red);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
  }

  .footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 6px;
  }

  .footer-brand-name span { color: var(--orange-light); font-style: italic; }

  .footer-tagline {
   font-size: 0.8rem;
  color: rgb(252, 252, 252);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,248,238,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-contact a:hover { color: var(--orange-light); }

  .footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange-light);
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: rgb(251, 251, 250);
  text-decoration: none;
  font-size: 1.rem;
  transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--cream); }

  .footer-bottom {
    border-top: white;
    padding-top: 24px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,248,238,0.3);
    letter-spacing: 1px;
    font-size:17px;
  }

  /* FIXED MOBILE CONTACT ICONS */
  .mobile-contact-fixed {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 999;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
    pointer-events: none;
  }

  .mobile-contact-fixed a {
    flex: 1;
    max-width: 160px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }

  .mobile-contact-fixed a i {
    font-size: 1.2rem;
  }

  .mobile-contact-fixed .call-btn {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .mobile-contact-fixed .whatsapp-btn {
    background: #25D366;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .mobile-contact-fixed a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  }

  .mobile-contact-fixed .call-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--orange));
  }

  .mobile-contact-fixed .whatsapp-btn:hover {
    background: #20ba5a;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; padding: 100px 40px 60px; text-align: center; }
    .hero-right { margin-top: 40px; }
    .hero-card-wrap { width: 100%; max-width: 360px; margin: 0 auto; }
    .hero-divider::before, .hero-divider::after { max-width: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-phone { font-size: 0.8rem; padding: 6px 12px; }
    .hero { padding: 90px 24px 50px; }
    .hero-card-wrap { max-width: 320px; }
    .about-sec, .services-sec, .testi-sec, .why-sec { padding: 70px 24px; }
    
    .services-grid { 
      grid-template-columns: 1fr; 
      gap: 20px;
    }
    
    .svc-card {
      min-height: 250px;
      max-width: 500px;
      margin: 0 auto;
      width: 100%;
    }
    
    .testi-grid { grid-template-columns: 1fr; }
    
    .why-grid { 
      grid-template-columns: 1fr !important;
      gap: 16px;
      max-width: 100%;
      margin: 0;
    }
    
    footer { padding: 40px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .video-sec { padding: 40px 24px; }
    
    /* Show mobile contact icons */
    .mobile-contact-fixed {
      display: flex;
    }
    
    /* Add padding to body to prevent content from being hidden behind fixed buttons */
    body {
      padding-bottom: 90px;
    }
  }

  /* For very small screens */
  @media (max-width: 380px) {
    .mobile-contact-fixed a {
      padding: 12px 15px;
      font-size: 0.9rem;
    }
    
    .mobile-contact-fixed a i {
      font-size: 1rem;
    }
    
    .svc-card {
      min-height: 200px;
    }
  }

  /* Extra small devices */
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero-card-wrap {
      max-width: 280px;
    }
  }

  /* Header image responsiveness */
  .responsive-header-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
  }
  .para1{
    line-height: 26px;
    font-size:17px;
    text-align: justify;
  }

  @keyframes myAnimation {
  from {color: rgb(247, 242, 242);}
  to {color: yellow;}
}

/* The element to apply the animation to */
.more6 {

      color: rgb(253, 250, 250);
  animation-name: myAnimation;
  animation-duration: 2s;
  margin:10px 0px;
animation-iteration-count: infinite;

}
.para6{
  border: 1px solid gold;
  padding: 10px ;
  background-color: gold;
  text-align: center;
  font-size:19px;
}
.size6{
  font-size: 23px;
  line-height: 24px;
}
