/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --brand-purple:#7b1b6f;
  --brand-gold:#d6b36a;
}

html{
  font-size: 18px;
}

body{
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
/* ================= TOP BAR ================= */
.top-bar {
  background: var(--brand-purple);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  font-size: 14px;
}.top-bar .contact-info{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar .contact-info a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-bar .contact-info a:hover{
  color: var(--brand-gold);
}

.logo-link{
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-link h2{
  color: var(--brand-purple);
}

.social-icons a{
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
}

.social-icons a:hover{
  color: var(--brand-gold);
}

.contact-info span {
  margin-right: 25px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
}/* ================= TOP BAR RESPONSIVE ================= */
@media (max-width: 768px){
  .top-bar{
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info span{
    display: block;
    margin: 0;
    line-height: 1.6;
  }

  .social-icons{
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .social-icons a{
    margin-left: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid rgba(214,179,106,0.55);
  }
}@media (max-width: 420px){
  .contact-info{
    display: flex;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }
  .contact-info::-webkit-scrollbar{ height: 0; }
}

/* ================= HEADER ================= */

.main-header{
  background: #e6e6e6;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 60px;
  position:relative;
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:60px;
  margin-right:15px;
}

.logo h2{
  color:var(--brand-purple);
  font-weight:500;
}

/* ================= NAV ================= */

.navbar{
  position:relative;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
}

.nav-links li{
  position:relative;
  margin-left:30px;
}

.nav-links a{
  text-decoration:none;
  color:var(--brand-purple);
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:black;
}

/* ================= DROPDOWN ================= */

.has-dropdown{
  position:relative;
}

.drop-link{
  display:flex;
  align-items:center;
  gap:5px;
}

.caret{
  font-size:12px;
}

/* dropdown menu */

.dropdown{
  list-style:none;
  position:absolute;
  top:100%;
  left:0;
  min-width:260px;
  background:#fff;
  border-radius:12px;
  border-top:3px solid var(--brand-gold);
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  padding:10px 0;
  display:none;
  z-index:999;
}

.dropdown li{
  margin:0;
}

.dropdown a{
  display:block;
  padding:10px 18px;
  color:var(--brand-purple);
  font-size:14px;
}

.dropdown a:hover{
  background:rgba(123,27,111,0.08);
}

/* hover open (desktop) */

@media (min-width:992px){

  .has-dropdown:hover .dropdown{
    display:block;
  }

}

/* ================= CONTACT BUTTON ================= */

.nav-contact a{
  background:var(--brand-purple);
  color:white !important;
  padding:10px 18px;
  border-radius:10px;
  border:2px solid var(--brand-gold);
  font-weight:600;
}

.nav-contact a:hover{
  background:#a32a95;
}

/* ================= MOBILE NAV ================= */

.nav-toggle{
  display:none;
  font-size:28px;
  border:none;
  background:none;
  cursor:pointer;
  color: var(--brand-purple);
}

/* MOBILE */
@media (max-width:992px){

  .nav-toggle{
    display:block;
    z-index:1001;
  }

  .navbar{
    position:relative;
  }

  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:320px;
    max-width:calc(100vw - 30px);
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    display:none;
    border-radius:14px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    z-index:1000;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links li{
    margin:0;
    width:100%;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }

  .nav-links li:last-child{
    border-bottom:none;
  }

  .nav-links a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    padding:14px 0;
  }

  .dropdown{
    position:static;
    width:100%;
    min-width:100%;
    box-shadow:none;
    border:none;
    border-top:none;
    border-radius:0;
    padding:0 0 8px 12px;
    display:none;
    background:transparent;
  }

  .dropdown a{
    padding:10px 0;
    font-size:14px;
  }

  .has-dropdown.open .dropdown{
    display:block;
  }
}
/* ================= HERO ================= */
.hero{
  position: relative;
  background-image: url("../images/home/hero-image.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-overlay{
  width: 100%;
  min-height: 520px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.62), rgba(0,0,0,0.35)),
    linear-gradient(to top, rgba(123,27,111,0.12), rgba(214,179,106,0.06));
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-content{
  max-width: 700px;
  color: white;
}

.hero-content h1{
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-content p{
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 640px;
  color: rgba(255,255,255,0.92);
}

.hero-btn{
  display: inline-block;
  padding: 14px 30px;
  background: var(--brand-purple);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 24px rgba(123,27,111,0.28);
}

.hero-btn:hover{
  background: #922385;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px){
  .hero{
    min-height: 470px;
  }

  .hero-overlay{
    min-height: 470px;
    padding: 50px 30px;
  }

  .hero-content h1{
    font-size: clamp(30px, 5vw, 44px);
  }

  .hero-content p{
    font-size: 17px;
  }
}

@media (max-width: 600px){
  .hero{
    min-height: 430px;
  }

  .hero-overlay{
    min-height: 430px;
    padding: 40px 20px;
  }

  .hero-content{
    max-width: 100%;
  }

  .hero-content h1{
    font-size: 30px;
    margin-bottom: 14px;
  }

  .hero-content p{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .hero-btn{
    padding: 12px 22px;
    border-radius: 8px;
  }
}

/* ================= SERVICE FUNNEL SECTION ================= */

.service-funnel{
  padding: 80px 0;
  background: #f7f6f8;
}

.service-funnel-wrap{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.funnel-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.funnel-card{
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid var(--brand-gold);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: .25s;
}

.funnel-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}

.funnel-step{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(123,27,111,.10);
  color: var(--brand-purple);
  font-weight: 800;
  margin-bottom: 16px;
  border: 1px solid rgba(123,27,111,.14);
}

.funnel-card h3{
  color: var(--brand-purple);
  margin: 0 0 10px;
  font-size: 24px;
}

.funnel-card p{
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-funnel-cta{
  margin-top: 28px;
  text-align: center;
}

.service-funnel-cta p{
  margin-bottom: 14px;
  color: #444;
  font-size: 17px;
}

@media (max-width: 980px){
  .funnel-grid{
    grid-template-columns: 1fr;
  }
}

/* ================= BENEFITS STRIP ================= */
.benefits{
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 60px;
  border-top:2px solid rgba(214,179,106,0.35);
  border-bottom:2px solid rgba(214,179,106,0.35);
}

.benefit-item{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:10px 14px;
  border-right:1px solid rgba(0,0,0,0.08);
}

.benefit-item:last-child{
  border-right:none;
}

.benefit-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background: var(--brand-purple);
  border:2px solid var(--brand-gold);
  color:#fff;
  font-size:18px;
  box-shadow: 0 6px 16px rgba(123,27,111,0.18);
}

.benefit-text{
  font-weight:600;
  font-size:15px;
}

/* ================= SERVICES SECTION ================= */
.services-main{
  padding: 60px 60px 90px 60px;
  background: #fff;
  text-align: center;
}

.services-head h2{
  font-size: 44px;
  font-weight: 500;
  color: var(--brand-purple);
  margin-bottom: 15px;
  font-size: clamp(24px, 3vw, 34px);
}

.services-head p{
  max-width: 1100px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-family: Georgia, "Times New Roman", serif;
}

.services-grid{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 28px;
}

.service-item{
  flex: 1;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid rgba(214,179,106,0.70);
  border-radius: 12px;
  padding: 28px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item img{
  width: 85px;
  height: 85px;
  object-fit: contain;
  margin-bottom: 18px;
}

.service-item h3{
  font-size: 22px;
  font-weight: 600;
  color: #222;
  line-height: 1.25;
  font-family: Georgia, "Times New Roman", serif;
}

/* Hover */
.service-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ================= FADE IN ANIMATION ================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px){
  .services-head h1{ font-size: 36px; }
  .services-head p{ font-size: 16px; }
  .service-item h3{ font-size: 20px; }
}

@media (max-width: 768px){
  .top-bar,
  .main-header,
  .hero-overlay,
  .services-main{
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-grid{
    flex-direction: column;
    gap: 40px;
  }

  .benefits{
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .benefit-item{
    width: 100%;
    border-right: none;
    justify-content: flex-start;
  }

  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }
}/* ================= SERVICES SECTION ================= */
.services-main{
  padding: 60px 60px 50px 60px;  /* reduced bottom space */
  background: #fff;
  text-align: center;
}

.services-head p{
  max-width: 1100px;
  margin: 0 auto 45px auto;
}

/* CTA inside services */
.services-cta{
  text-align: center;
  padding: 35px 0 10px 0;
}

.explore-btn{
  display: inline-block;
  padding: 14px 36px;
  background: #e6e6e6;
  color: #222;
  text-decoration: none;
  font-size: 20px;
  font-family: Georgia, "Times New Roman", serif;
  border-radius: 10px;
  transition: 0.3s ease;
}

.explore-btn:hover{
  background: var(--brand-purple);
  color: white;
}
/* ================= HOME SEO CONTENT + CAROUSEL ================= */
.home-seo-content {
  padding: 70px 60px;
  background: #fff;
}

.home-seo-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.home-seo-left h2 {
  font-size: 34px;
  color: var(--brand-purple);
  margin-bottom: 20px;
  line-height: 1.3;
}

.home-seo-left p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

.home-seo-left a {
  color: var(--brand-purple);
  font-weight: 600;
  text-decoration: none;
}

.home-seo-left a:hover {
  color: var(--brand-gold);
}

.rdh-carousel {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  background: #f8f8f8;
}

.rdh-carousel-track {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.rdh-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.rdh-slide.active {
  display: block;
}

.rdh-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.rdh-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(123, 27, 111, 0.85);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

.rdh-carousel-btn.prev {
  left: 15px;
}

.rdh-carousel-btn.next {
  right: 15px;
}

.rdh-carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.rdh-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}

.rdh-dot.active {
  background: var(--brand-gold);
}

.service-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

@media (max-width: 991px) {
  .home-seo-content {
    padding: 60px 20px;
  }

  .home-seo-wrap {
    grid-template-columns: 1fr;
  }

  .home-seo-left h2 {
    font-size: 28px;
  }

  .rdh-carousel-track,
  .rdh-slide img {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .home-seo-left h2 {
    font-size: 24px;
  }

  .home-seo-left p {
    font-size: 15px;
    line-height: 1.8;
  }

  .rdh-carousel-track,
  .rdh-slide img {
    height: 240px;
  }

  .rdh-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ================= ABOUT SECTION (BG IMAGE) ================= */
.about-section{
  position: relative;
  padding: 70px 60px;
  background-image: url("../images/home/about-image.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.about-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.95) 40%,
    rgba(255,255,255,0.75) 60%,
    rgba(255,255,255,0.25) 100%
  );
}

.about-container{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left{
  max-width: 600px;
}

.about-left h2{
  font-size: 40px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  color: #222;
}

.about-left p{
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #444;
}

.about-points{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 30px;
}

/* ✅ FIXED ALIGNMENT */
.about-item{
  display: flex;
  align-items: flex-start;   /* top align tick with text */
  gap: 10px;
}

.about-item span{
  width: 22px;               /* fixed width keeps all ticks aligned */
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  margin-top: 3px;           /* aligns tick with first line */
  color: var(--brand-purple);
  font-size: 18px;
  font-weight: bold;
}

.about-item p{
  margin: 0;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px){
  .services-main,
  .about-section{
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-section{
    background-position: center;
  }

  .about-points{
    grid-template-columns: 1fr;
  }
}
/* ================= SERVICE HUB ================= */

.service-hub{
padding:70px 60px;
background:#ffffff;
}

.service-hub-container{
max-width:1150px;
margin:auto;
}

.service-hub-head{
text-align:center;
margin-bottom:40px;
}

.service-hub-head h2{
font-size:36px;
color:var(--brand-purple);
margin-bottom:10px;
}

.service-hub-head p{
max-width:820px;
margin:auto;
color:#444;
line-height:1.8;
}

.service-hub-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.service-hub-card{
display:block;
padding:25px;
border-radius:14px;
background:#f7f6f8;
text-decoration:none;
color:#222;
transition:.3s;
border:1px solid #eee;
}

.service-hub-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
border-color:var(--brand-purple);
}

.service-hub-card h3{
font-size:20px;
color:var(--brand-purple);
margin-bottom:8px;
}

.service-hub-card p{
font-size:14px;
line-height:1.7;
color:#444;
}

@media(max-width:992px){
.service-hub-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.service-hub{
padding:60px 20px;
}

.service-hub-grid{
grid-template-columns:1fr;
}
}

/* ================= PORTFOLIO SECTION ================= */
/* Hide portfolio on homepage */
#portfolio{
  display: none;
}
.portfolio-section{
  padding: 60px 60px;
  background: #fff;
} 

.portfolio-head{
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-head h2{
  font-size: 40px;
  font-family: Georgia, "Times New Roman", serif;
  color: #222;
  margin-bottom: 12px;
}

.portfolio-head p{
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card{
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.portfolio-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.portfolio-thumb{
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(123,27,111,0.55),
    rgba(123,27,111,0.05)
  );
  opacity: 0;
  transition: 0.25s ease;
}

.portfolio-card:hover .portfolio-thumb::after{
  opacity: 1;
}

.portfolio-info{
  padding: 16px 16px 18px;
}

.portfolio-info h3{
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.portfolio-info span{
  font-size: 14px;
  color: #666;
}

/* CTA */
.portfolio-cta{
  text-align: center;
  margin-top: 35px;
}

.portfolio-btn{
  display: inline-block;
  padding: 14px 36px;
  background: var(--brand-purple);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 18px;
  transition: 0.3s ease;
  border: 2px solid var(--brand-gold);
}

.portfolio-btn:hover{
  background: #a32a95;
}

/* Responsive */
@media (max-width: 992px){
  .portfolio-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .portfolio-section{
    padding: 60px 20px;
  }

  .portfolio-grid{
    grid-template-columns: 1fr;
  }

  .portfolio-thumb{
    height: 220px;
  }
}

/* ================= TESTIMONIALS (PURPLE/GOLD LIKE LOGO) ================= */
.rdh-testimonials{
  padding: 40px 0;
  background: #fff;
  text-align: center;
}

.rdh-t-head{
  width: min(1100px, 100%);
  margin: 0 auto 38px;
  padding: 0 20px;
}

.rdh-t-tag{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--brand-gold);
  margin-bottom: 10px;
}

.rdh-t-head h2{
  font-size: 36px;
  font-family: Georgia, "Times New Roman", serif;
  color: #222;
  margin-bottom: 14px;
}

.rdh-t-rating{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.rdh-t-score{
  font-size: 22px;
  font-weight: 800;
  color: #111;
}

.rdh-t-stars{
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--brand-gold);
}

.rdh-t-btn{
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--brand-purple);
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--brand-gold);
  font-size: 13px;
  transition: 0.3s ease;
}

.rdh-t-btn:hover{
  background: #a32a95;
}

/* Slider container */
.rdh-t-slider{
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 60px;
}

.rdh-t-viewport{
  overflow: hidden;
  border-radius: 16px;
}

.rdh-t-track{
  display: flex;
  gap: 22px;
  transition: transform 0.6s ease;
  will-change: transform;
  padding: 10px 0;
}

/* Review card (purple + gold accent) */
.rdh-card{
  flex: 0 0 calc(33.333% - 15px); /* desktop 3 cards */
  background: linear-gradient(135deg, rgba(123,27,111,0.10), rgba(214,179,106,0.10));
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--brand-gold);
  border-radius: 16px;
  padding: 18px 18px 16px;
  text-align: left;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  min-height: 190px;
}

.rdh-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rdh-user{
  display: flex;
  align-items: center;
  gap: 10px;
}

.rdh-avatar{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-purple);
  border: 2px solid var(--brand-gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.rdh-name{
  font-weight: 800;
  color: #111;
  font-size: 14px;
}

.rdh-time{
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

.rdh-gicon{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: conic-gradient(#EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
}

.rdh-stars{
  color: var(--brand-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin: 6px 0 10px;
}

.rdh-text{
  color: #222;
  font-size: 14px;
  line-height: 1.6;
}

.rdh-foot{
  margin-top: 12px;
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rdh-dotg{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: conic-gradient(#EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
}

/* Arrows */
.rdh-t-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  font-size: 26px;
  display: grid;
  place-items: center;
  z-index: 2;
}
.rdh-t-nav.prev{ left: 10px; }
.rdh-t-nav.next{ right: 10px; }

/* Dots */
.rdh-t-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.rdh-t-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  border: 0;
  cursor: pointer;
}
.rdh-t-dot.active{
  background: var(--brand-purple);
}

/* Responsive */
@media (max-width: 992px){
  .rdh-t-slider{ padding: 0 20px; }
  .rdh-card{ flex: 0 0 calc(50% - 11px); } /* 2 cards */
}

@media (max-width: 600px){
  .rdh-card{ flex: 0 0 100%; } /* 1 card */
  .rdh-t-nav{ display: none; }
}
/* ================= LOCAL SEO SECTION ================= */

.local-seo-section{
  padding:70px 60px;
  background:#f7f6f8;
}

.local-seo-wrap{
  max-width:1100px;
  margin:auto;
}

.local-seo-head{
  text-align:center;
  margin-bottom:30px;
}

.local-seo-head h2{
  font-size:36px;
  color:var(--brand-purple);
  margin-bottom:12px;
}

.local-seo-head p{
  max-width:850px;
  margin:auto;
  line-height:1.8;
  color:#444;
}

.local-seo-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:30px;
}

.local-seo-card{
  display:block;
  padding:14px 16px;
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  text-decoration:none;
  color:#222;
  font-weight:600;
  text-align:center;
  transition:.25s;
}

.local-seo-card:hover{
  background:var(--brand-purple);
  color:#fff;
  transform:translateY(-2px);
}

.local-seo-cta{
  text-align:center;
  margin-top:30px;
}

.local-seo-cta p{
  margin-bottom:10px;
  color:#444;
}

/* responsive */

@media(max-width:992px){
  .local-seo-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .local-seo-section{
    padding:60px 20px;
  }

  .local-seo-grid{
    grid-template-columns:1fr;
  }
}
/* ================= FOOTER ================= */

.site-footer{
  background: var(--brand-purple);
  color: #fff;
  padding-top: 60px;
  margin-top: 80px;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.15);
}

.footer-wrap{
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 35px;
  align-items: start;
}

.footer-col h3{
  color: var(--brand-gold);
  font-size: 18px;
  margin-bottom: 16px;
}

/* footer lists */
.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li{
  margin-bottom: 10px;
}

.footer-col ul li a{
  color: #ddd;
  text-decoration: none;
  transition: .25s;
  line-height: 1.6;
}

.footer-col ul li a:hover{
  color: var(--brand-gold);
}

/* about column */
.footer-about p{
  color: #d6d6d6;
  line-height: 1.8;
  margin: 18px 0 20px;
  max-width: 360px;
}

/* logo row */
.footer-logo{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.footer-logo img{
  width: 56px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}

.footer-logo span{
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

/* socials */
.footer-socials{
  display: flex;
  gap: 12px;
}

.footer-socials a{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(214,179,106,.35);
  transition: .25s;
}

.footer-socials a:hover{
  background: var(--brand-purple);
  border-color: var(--brand-purple);
}

/* contact */
.footer-contact li,
.footer-address{
  color: #ddd;
  line-height: 1.7;
}

/* bottom */
.footer-bottom{
  border-top: 1px solid rgba(214,179,106,.22);
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
  text-align: left;
  padding: 18px 0 22px;
}

.footer-bottom p{
  margin: 0;
  color: #cfcfcf;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px){
  .footer-wrap{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px){
  .footer-wrap{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px){
  .footer-wrap{
    grid-template-columns: 1fr;
  }

  .footer-logo{
    align-items: center;
  }

  .footer-logo img{
    width: 72px;
  }

  .footer-logo span{
    font-size: 24px;
    max-width: none;
  }

  .footer-about p{
    max-width: none;
  }

  .footer-bottom{
    text-align: center;
  }
}
/* ================= ABOUT PAGE (ROYAL PURPLE + GOLD) ================= */
.about-hero{
  position: relative;
  padding: 120px 0;
  background-image: url("../images/about/about-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.80);
}
.about-hero-wrap{
  position: relative;
  z-index: 2;
}
.about-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(123,27,111,0.18), transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(214,179,106,0.22), transparent 60%),
    radial-gradient(circle at 70% 90%, rgba(123,27,111,0.10), transparent 50%);
  pointer-events:none;
}

.about-hero-wrap{
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.about-hero-tag{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--brand-purple);
  border: 1px solid rgba(123,27,111,0.22);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(123,27,111,0.06);
  margin-bottom: 14px;
}

.about-hero-left h1{
  font-size: 48px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1b1b1b;
  line-height: 1.08;
  margin-bottom: 14px;
}

.about-hero-left p{
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 680px;
  margin-bottom: 18px;
}

.about-hero-btn{
  display:inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--brand-purple);
  border: 2px solid var(--brand-gold);
  color: #fff;
  text-decoration:none;
  font-weight: 700;
  transition: 0.25s ease;
}
.about-hero-btn:hover{ background:#a32a95; }

.about-hero-card{
  background: linear-gradient(135deg, rgba(123,27,111,0.10), rgba(214,179,106,0.10));
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--brand-gold);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.about-hero-card-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 14px;
}

.about-hero-logo{
  width: 52px;
  height: 52px;
  background:#fff;
  border-radius: 14px;
  padding: 6px;
  object-fit: contain;
}

.about-hero-card-title{ font-weight: 800; color:#111; }
.about-hero-card-sub{ font-size: 13px; color:#666; margin-top:2px; }

.about-hero-badges{
  list-style:none;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  padding:0;
  margin: 0 0 14px;
}

.about-hero-badges li{
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
}

.about-hero-mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.about-hero-mini-box{
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.07);
}

/* Overview */
.about-wrap{
  padding: 70px 0;
  background: #fff;
}
.about-grid{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 60px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.about-box{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  background:#fff;
}
.about-box h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  margin-bottom: 10px;
  color:#111;
}
.about-box p{
  color:#333;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 10px;
}
.about-pills{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.about-pills span{
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(123,27,111,0.07);
  border: 1px solid rgba(123,27,111,0.18);
  color: var(--brand-purple);
  font-weight: 700;
}
.service-list{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.service-chip{
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(214,179,106,0.12);
  border: 1px solid rgba(214,179,106,0.40);
  color:#111;
  font-weight: 700;
}
.about-help{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0,0,0,0.12);
}
.about-help h3{
  font-size: 18px;
  margin-bottom: 6px;
  color:#111;
}

/* Vision/Mission/Values */
.v-section{
  padding: 70px 0;
  background: #f9f9f9;
}
.v-wrap{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 60px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}
.v-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.v-card, .values-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.v-card h3, .values-card h3{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color:#111;
  margin-bottom: 8px;
}
.v-card p, .values-card p{ color:#333; line-height: 1.8; }

.values-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}
.value-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.value-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 7px;
  background: var(--brand-purple);
  border: 2px solid var(--brand-gold);
}

/* Why choose */
.why-section{
  padding: 70px 0;
  background:#fff;
}
.why-wrap{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 60px;
}
.why-head{
  text-align:center;
  margin-bottom: 26px;
}
.why-head h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  color:#111;
  margin-bottom: 10px;
}
.why-head p{ color:#444; font-size: 16px; }

.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-item{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background:#fff;
}
.why-icon{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 50%;
  background: rgba(123,27,111,0.12);
  color: var(--brand-purple);
  font-weight: 900;
  border: 2px solid rgba(214,179,106,0.7);
}
.why-item h3{ font-size: 18px; color:#111; margin-bottom: 6px; }
.why-item p{ color:#444; line-height: 1.7; font-size: 14px; }

.why-cta{
  text-align:center;
  margin-top: 22px;
}
.why-btn{
  display:inline-block;
  padding: 14px 26px;
  background: var(--brand-purple);
  color:#fff;
  text-decoration:none;
  border-radius: 12px;
  border: 2px solid var(--brand-gold);
  font-weight: 800;
}
.why-btn:hover{ background:#a32a95; }

/* FAQ */
.faq-section{
  padding: 70px 0;
  background: #f9f9f9;
}
.faq-wrap{
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 0 60px;
}
.faq-head{ text-align:center; margin-bottom: 18px; }
.faq-head h2{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  color:#111;
  margin-bottom: 8px;
}
.faq-head p{ color:#444; }

.faq-list{ display:grid; gap: 12px; }
.faq-item{
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 700;
  color:#111;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{
  margin-top: 10px;
  color:#333;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px){
  .about-hero-wrap,
  .about-grid,
  .v-wrap{
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .why-wrap, .faq-wrap{ padding: 0 20px; }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .about-hero-left h1{ font-size: 40px; }
}

@media (max-width: 600px){
  .why-grid{ grid-template-columns: 1fr; }
  .about-hero-left h1{ font-size: 34px; }
}

/* ================= WEBSITE DEVELOPMENT PAGE ================= */

.inner-hero{
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

/* Hero background */
.webdev-hero{
  position: relative;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(214,179,106,.18), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(123,27,111,.22), transparent 60%),
    url("../images/webdev/webdev-hero-bg.png") center/cover no-repeat;
}

/* Dark overlay */
.webdev-hero .inner-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.40);
}

/* Hero content wrapper */
.inner-hero-wrap{
  position: relative;
  z-index: 2;
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  color: #fff;
}

.inner-hero-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(214,179,106,.55);
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.inner-hero-wrap h1{
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.inner-hero-wrap p{
  max-width: 780px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 18px;
}

.inner-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.primary-btn{
  display: inline-block;
  background: var(--brand-purple);
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s;
}

.primary-btn:hover{
  transform: translateY(-1px);
}

.outline-btn{
  display: inline-block;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  transition: .25s;
}

/* Hero outline button */
.hero-outline-btn{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(214,179,106,.8);
}

.hero-outline-btn:hover{
  transform: translateY(-1px);
}

/* CTA outline button */
.cta-outline-btn{
  background: transparent;
  color: var(--brand-purple);
  border: 1px solid rgba(123,27,111,.35);
}

.cta-outline-btn:hover{
  transform: translateY(-1px);
}

.inner-hero-points{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inner-hero-points .point{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.inner-hero-points .point p{
  margin: 0;
  font-weight: 600;
  opacity: 1;
}

/* Services */
.webdev-services{
  padding: 70px 0;
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.webdev-head{
  text-align: center;
  margin-bottom: 28px;
}

.webdev-head h2{
  color: var(--brand-purple);
  font-size: clamp(24px, 3vw, 34px);
}

.webdev-head p{
  max-width: 780px;
  margin: 10px auto 0;
  color: #555;
  line-height: 1.7;
}

.webdev-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.webdev-card{
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: .25s;
  color: #111;
}

.webdev-card:hover{
  transform: translateY(-3px);
  border-color: rgba(123,27,111,.25);
}

.webdev-card h3{
  color: var(--brand-purple);
  margin: 0 0 8px;
}

.webdev-card p{
  margin: 0 0 12px;
  color: #555;
  line-height: 1.7;
}

.webdev-card ul{
  margin: 0;
  padding-left: 18px;
  color: #333;
  line-height: 1.7;
}

.card-link{
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--brand-purple);
}

/* Process */
.process-section{
  padding: 70px 0;
  background: #f7f6f8;
}

.process-head{
  width: min(1100px, 100% - 40px);
  margin: 0 auto 26px;
  text-align: center;
}

.process-head h2{
  color: var(--brand-purple);
  font-size: clamp(24px, 3vw, 34px);
}

.process-head p{
  color: #555;
  margin-top: 10px;
}

.process-grid{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.process-item{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
}

.process-num{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--brand-purple);
  background: rgba(123,27,111,.10);
  border: 1px solid rgba(123,27,111,.15);
  flex-shrink: 0;
}

.process-item h3{
  margin: 0 0 6px;
}

.process-item p{
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* CTA */
.inner-cta{
  padding: 70px 0;
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.inner-cta-box{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.inner-cta-box h2{
  margin: 0 0 8px;
  color: var(--brand-purple);
}

.inner-cta-box p{
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.inner-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .webdev-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px){
  .inner-hero{
    padding: 70px 0;
  }

  .webdev-grid{
    grid-template-columns: 1fr;
  }

  .inner-hero-wrap h1{
    font-size: 32px;
  }
}/* ================= HTML WEBSITE DESIGN PAGE ================= */

.service-hero{
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.html-service-hero{
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(214,179,106,.18), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(123,27,111,.22), transparent 60%),
    url("../images/htmlweb/htmlweb-hero-bg.png") center/cover no-repeat;
}

.service-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.10)
  );
}

.service-hero-wrap{
  position: relative;
  z-index: 2;
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  color: #fff;
}

.service-hero-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(214,179,106,.55);
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-hero-wrap h1{
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.service-hero-wrap p{
  max-width: 780px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 18px;
}

.service-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.service-hero-points{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-hero-points .point{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.service-hero-points .point p{
  margin: 0;
  font-weight: 600;
  opacity: 1;
}

/* Overview */
.service-overview{
  padding: 75px 0;
}

.service-overview-wrap{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 30px;
  align-items: start;
}

.section-title h2{
  color: var(--brand-purple);
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
}

.section-title p{
  color: #555;
  line-height: 1.8;
}

.section-title.center{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.service-check-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.service-check-item{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eee;
  border-top: 3px solid var(--brand-gold);
  border-radius: 14px;
  padding: 14px;
}

.service-check-item span{
  color: var(--brand-purple);
  font-weight: 700;
}

.service-check-item p{
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.service-highlight-card{
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid var(--brand-gold);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.service-highlight-card h3{
  color: var(--brand-purple);
  margin: 0 0 12px;
}

.service-highlight-card ul{
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
  color: #444;
}

/* Features */
.service-features{
  padding: 75px 0;
  background: #f7f6f8;
}

.service-features-wrap{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.service-feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-feature-card{
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid var(--brand-gold);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.service-feature-card h3{
  color: var(--brand-purple);
  margin-bottom: 10px;
}

.service-feature-card p{
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Process */
.service-process{
  padding: 75px 0;
}

.service-process-wrap{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.service-process-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-process-item{
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.service-process-item h3{
  margin: 0 0 6px;
  color: var(--brand-purple);
}

.service-process-item p{
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* Why */
.service-why{
  padding: 75px 0;
  background: #f7f6f8;
}

.service-why-wrap{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.service-why-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-why-item{
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-top: 4px solid var(--brand-gold);
  border-radius: 16px;
  padding: 18px;
}

.service-why-item span{
  color: var(--brand-purple);
  font-weight: 800;
  font-size: 18px;
}

.service-why-item h3{
  margin: 0 0 8px;
  color: var(--brand-purple);
}

.service-why-item p{
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* Final CTA */
.service-final-cta{
  padding: 75px 0;
}

.service-final-cta-box{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.service-final-cta-box h2{
  margin: 0 0 8px;
  color: var(--brand-purple);
}

.service-final-cta-box p{
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 980px){
  .service-overview-wrap{
    grid-template-columns: 1fr;
  }

  .service-feature-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .service-process-grid,
  .service-why-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px){
  .service-hero{
    padding: 70px 0;
  }

  .service-check-grid,
  .service-feature-grid{
    grid-template-columns: 1fr;
  }

  .service-hero-wrap h1{
    font-size: 32px;
  }
}/* ================= WORDPRESS WEBSITE PAGE ================= */

.wordpress-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/wordpress/wordpress-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}/* ================= REACT JS WEBSITE PAGE ================= */

.reactjs-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/reactjs/reactjs-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}/* ================= ECOMMERCE WEBSITE PAGE ================= */

.ecommerce-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/ecommerce/ecommerce-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}/* LANDING PAGE HERO */

.landing-hero{
position: relative;

background:
linear-gradient(
rgba(0,0,0,0.45),
rgba(0,0,0,0.45)
),
url("../images/landing/landing-hero-bg.png");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
}/* ================= DIGITAL MARKETING PAGE ================= */

.digital-marketing-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/digitalmarketing/digital-marketing-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ================= SEO PAGE ================= */

.seo-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/seo/seo-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ================= LOCAL SEO PAGE ================= */

.local-seo-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/localseo/local-seo-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= GOOGLE ADS PAGE ================= */

.google-ads-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/googleads/google-ads-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= META ADS PAGE ================= */

.meta-ads-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/metaads/meta-ads-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.performance-hero{
background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
url("../images/performance/performance-hero-bg.png");
background-size:cover;
background-position:center;
}

.whatsapp-hero{
background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
url("../images/whatsapp/whatsapp-hero-bg.png");
background-size:cover;
background-position:center;
}

.smm-hero{
background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
url("../images/smm/smm-hero-bg.png");
background-size:cover;
background-position:center;
}
/* ================= GRAPHIC DESIGN PAGES ================= */

.logo-design-hero{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/logodesign/logo-design-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.business-card-hero{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/businesscard/business-card-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.brochure-flyer-hero{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/brochureflyer/brochure-flyer-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dtp-hero{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/dtp/dtp-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.social-post-hero{
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/socialpost/social-post-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ================= PORTFOLIO PAGE ================= */

.portfolio-hero{
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    url("../images/portfolio/portfolio-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-page-intro,
.blog-page-intro{
  padding: 70px 0 25px;
}

.portfolio-page-section,
.blog-page-section{
  padding: 0 0 70px;
}

.portfolio-page-wrap,
.blog-page-wrap{
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

.portfolio-page-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-page-card{
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: .25s;
}

.portfolio-page-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}

.portfolio-page-thumb{
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-page-info{
  padding: 18px;
}

.portfolio-page-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-purple);
  background: rgba(123,27,111,.08);
  border: 1px solid rgba(123,27,111,.12);
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.portfolio-page-info h3{
  color: var(--brand-purple);
  margin: 0 0 8px;
}

.portfolio-page-info p{
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* ================= BLOG PAGE ================= */

.blog-hero{
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    url("../images/blog/blog-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-page-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-page-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: .25s;
}

.blog-page-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}

.blog-page-thumb{
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-page-info{
  padding: 18px;
}

.blog-page-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-purple);
  background: rgba(214,179,106,.18);
  border: 1px solid rgba(214,179,106,.35);
  padding: 7px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.blog-page-info h3{
  margin: 0 0 10px;
  line-height: 1.5;
}

.blog-page-info h3 a{
  text-decoration: none;
  color: var(--brand-purple);
}

.blog-page-info h3 a:hover{
  text-decoration: underline;
}

.blog-page-info p{
  margin: 0 0 12px;
  color: #555;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px){
  .portfolio-page-grid,
  .blog-page-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px){
  .portfolio-page-grid,
  .blog-page-grid{
    grid-template-columns: 1fr;
  }

  .portfolio-page-thumb,
  .blog-page-thumb{
    height: 220px;
  }
}
/* ================= CONTACT PAGE ================= */

.contact-hero{
  position: relative;
  background:
  linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
  url("../images/contact/contact-hero-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.contact-info-section{
padding:70px 0;
}

.contact-info-wrap{
width:min(1100px,100% - 40px);
margin:0 auto;
}

.contact-info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:30px;
}

.contact-info-card{
background:#fff;
padding:25px;
border-radius:16px;
border:1px solid #eee;
box-shadow:0 10px 25px rgba(0,0,0,.06);
text-align:center;
}

.contact-info-card h3{
color:var(--brand-purple);
margin-bottom:10px;
}
.contact-info-card a{
  color: inherit;
  text-decoration: none;
}

.contact-info-card a:hover{
  color: var(--brand-purple);
}


.contact-form-section{
padding:70px 0;
background:#f7f6f8;
}

.contact-form-wrap{
width:min(800px,100% - 40px);
margin:0 auto;
}

.contact-form{
margin-top:30px;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
margin-bottom:14px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px 14px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
}

.contact-form textarea{
margin-bottom:16px;
}

.contact-map-section{
padding:70px 0;
}

.contact-map-wrap{
width:min(1100px,100% - 40px);
margin:0 auto;
}

.map-container{
margin-top:25px;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}


/* responsive */

@media(max-width:900px){

.contact-info-grid{
grid-template-columns:1fr;
}

.form-grid{
grid-template-columns:1fr;
}

}
/* ================= GRAPHIC DESIGN MAIN PAGE ================= */

.graphic-design-hero{
  position: relative;
  background:
    linear-gradient(
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.42)
    ),
    url("../images/graphicdesign/graphic-design-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* ================= SINGLE IMAGE FOR INNER SERVICE CONTENT ================= */
.rdh-single-image{
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  background: #f8f8f8;
}

.rdh-single-image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px){
  .rdh-single-image img{
    height: 320px;
  }
}

@media (max-width: 576px){
  .rdh-single-image img{
    height: 240px;
  }
}
