/* ===== BASE ===== */
body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    color: #374151;
    background-color: #F9FAFB;
}

/* ===== Navbar ===== */
.custom-navbar {
    background-color: #C77DFF;
    transition: all 0.3s ease;
   
}

.custom-navbar .nav-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: #000000;
}

/* Dropdown */
.custom-navbar .dropdown-menu {
    border-radius: 10px;
    padding: 0.6rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.custom-navbar .dropdown-item {
    color: #FFFFFF;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #000000;
}

.custom-navbar .dropdown-item:hover {
    background-color: #C77DFF;
    color: #FFFFFF;
}

/* Buttons */
.btn-custom {
    background-color: #FFFFFF;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 8px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #C77DFF;
    color: #FFFFFF;
    transform: translateY(-2px);
    border-color: #000000;
}

/* ===== Active Nav Link ===== */
.custom-navbar .nav-link.active{
    color:#000000 !important;
    font-weight:700;
    position:relative;
}


/* FOOTER BASE */
.footer-modern{
  background-color: #C77DFF;
  
  padding: 60px 20px 20px;
  
}

/* GRID CONTAINER */
.footer-wrap{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop & Tablet same */
  gap: 40px;
}

/* FOOTER BOX */
.footer-box h4{
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #000000;
}

.footer-box p{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000000;
}

.footer-box.brand img{
  width: 50px;
  margin-bottom: 15px;
}

.footer-box ul{
  list-style: none;
  padding: 0;
}

.footer-box ul li{
  margin-bottom: 10px;
}

.footer-box ul li a{
  color: #000000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover{
  color: #000000;
  padding-left: 5px;
}

/* SOCIAL ICONS */
.footer-social{
  margin-top: 15px;
}

.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff;
  color: #000000;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-social a:hover{
  background: #C77DFF;
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-copy{
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  color: #000000;
}
/* ================= TABLET VIEW ================= */
@media(max-width:1024px){
  .footer-wrap{
    grid-template-columns: repeat(4, 1fr); /* 4 columns same row on tablet */
    gap: 30px;
  }

  /* Logo kuttiya pannurathu */
  .footer-box.brand img{
    width: 50px; /* small version for tablet */
    margin-bottom: 10px;
  }

  /* Social icons kuttiya pannurathu */
  .footer-social a{
    width: 20px;
    height: 15px;
    font-size: 0.8rem;
  }
}


/* ================= MOBILE VIEW ================= */
@media(max-width:768px){
  .footer-wrap{
    grid-template-columns: 1fr; /* stack all columns */
    text-align: left;
  }

  .footer-box.brand img{
    margin-bottom: 60px;
    
  }

  .footer-social a{
    margin: 5px 5px 0 0;
  }
}
/* Modern About Section */
.about-modern{
  padding:100px 20px;
  background:#000000;
  color:#fff;
}

.about-modern-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-modern-image img{
  width:100%;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  transform:rotate(-1deg);
}

.about-modern-text h2{
  font-size:36px;
  color:#C77DFF;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom:20px;
  
}

.about-modern-text p{
  font-size:16px;
  color:#FFFFFF;
  line-height:1.8;
  margin-bottom:30px;
}

.about-highlights{
  display:flex;
  gap:25px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.highlight{
  display:flex;
  align-items:center;
  gap:10px;
  background:#C77DFF;
  padding:10px 15px;
  border-radius:8px;
}

.highlight i{
  color:#000000;
  font-size:20px;
}

.highlight p{
  margin:0;
  font-size:14px;
  color: #000000;
  font-weight:500;
}

.about-modern-text .btn{
  background:#C77DFF;
  color:#fff;
  padding:12px 30px;
  font-weight:600;
  border-radius:8px;
  transition:all 0.3s ease;
}

.about-modern-text .btn:hover{
  background:#FFFFFF;
  color: #C77DFF;
  transform:translateY(-3px);
}

/* Responsive */
@media(max-width:768px){
  .about-modern-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-highlights{
    justify-content:center;
  }

  .about-modern-text h2{
    font-size:28px;
  }
}
/* Tablet / Medium screens ≤1024px */
@media(max-width:1024px){

  .about-modern-grid{
    grid-template-columns:1fr; /* Image & Text stacked */
    gap:40px;
    text-align:center;
  }

  .about-modern-image img{
    width:90%;
    max-width:80%;
    margin:auto;
    transform:rotate(0deg); /* Remove rotation for tablet */
  }

  .about-modern-text h2{
    font-size:32px;
    
  }

  .about-modern-text p{
    font-size:15px;
  }

  .about-highlights{
    justify-content:center;
    gap:15px;
  }

  .highlight i{
    font-size:18px;
  }

  .about-modern-text .btn{
    padding:10px 25px;
    font-size:14px;
  }
}

/* Features section */

.featured-tattoos-section{
  padding:80px 20px;
  background:#fdfdfd;
}

.featured-tattoos-section .section-title{
  text-align:center;
  font-size:36px;
  font-weight: 600;
  color:#C77DFF;
  margin-bottom:10px;
  text-transform: uppercase;
}

.featured-tattoos-section .section-subtitle{
  text-align:center;
  font-size:16px;
  color:#555;
  margin-bottom:50px;
}

.tattoos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.tattoo-card{
  background:#fff;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
  overflow:hidden;
  transition:transform 0.3s;
  cursor:pointer;
}

.tattoo-card:hover{
  transform:translateY(-5px);
}

.tattoo-card img{
  width:100%;
  display:block;
  height:250px;
  object-fit:cover;
}

.tattoo-info{
  padding:20px;
  text-align:center;
}

.tattoo-info h3{
  font-size:20px;
  color:#C77DFF;
  font-weight: 600;
  margin-bottom:8px;
}

.tattoo-info p{
  font-size:14px;
  color:#555;
}

.aftercare-section{
  padding:80px 20px;
  background:#fff;
}

.aftercare-section .section-title{
  text-align:center;
  font-size:36px;
  font-weight: 600;
  text-transform: uppercase;
  color:#C77DFF;
  margin-bottom:10px;
}

.aftercare-section .section-subtitle{
  text-align:center;
  font-size:16px;
  color:#555;
  margin-bottom:50px;
}

.aftercare-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.aftercare-card{
  background:#f9f9f9;
  border-radius:15px;
  padding:25px;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
  transition:transform 0.3s;
  border-top: 4px solid #C77DFF;
}

.aftercare-card:hover{
  transform:translateY(-5px);
}

.aftercare-card h4{
  color:#C77DFF;
  font-size:18px;
  font-weight: 600;
  margin-bottom:12px;
}

.aftercare-card p{
  color:#555;
  font-size:15px;
  line-height:1.6;
}


.aftercare-section{
  padding:80px 20px;
  background:#fff;
}

.aftercare-container{
  display:flex;
  align-items:center;
  gap:50px;
  max-width:1200px;
  margin:auto;
  flex-wrap:wrap; /* for responsive stacking */
}

.aftercare-left img{
  width:100%;
  max-width:500px;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.aftercare-right h2{
  color:#C77DFF;
  font-size:32px;
  margin-bottom:20px;
}

.aftercare-right p{
  color:#555;
  font-size:16px;
  line-height:1.7;
  margin-bottom:20px;
}

.aftercare-right ul{
  list-style: disc inside;
  color:#555;
}

.aftercare-right ul li{
  margin-bottom:10px;
  font-size:15px;
}



/* After Care Section - 2 Column */

.tattoo-aftercare{
  background:#FFFFFF;
  padding:100px 20px;
  color:#fff;
}

.aftercare-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* Left Image */
.aftercare-left img{
  width:100%;
  max-width: 100%;
  height: 700px;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,0.6);
}

/* Right Content */
.aftercare-right h2{
  font-size:36px;
  font-weight: 600;
  color:#C77DFF;
  margin-bottom:20px;
  text-transform:uppercase;
}

.aftercare-right p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:20px;
  color:#000000;
}

/* List */
.aftercare-list{
  list-style:none;
  padding:0;
  margin:25px 0;
 
}

.aftercare-list li{
  background:#111;
  padding:14px 18px;
  margin-bottom:12px;
  border-left:4px solid #C77DFF;
  color: #FFFFFF;
  border-radius:6px;
  font-size:15px;
  line-height:1.6;
}

.aftercare-list strong{
  color:#C77DFF;
}


/* Responsive */
@media(max-width:992px){
  .aftercare-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }

  .aftercare-left img{
    max-width:80%;
    margin:auto;
  }
   .aftercare-list{
    text-align:left;          /* UL left align */
    max-width:90%;
    margin:25px auto;         /* center container, text left */
  }

  .aftercare-list li{
    text-align:left;          /* LI text left */
  }

  .aftercare-right h2{
    font-size:32px;
  }
}

@media(max-width:576px){
  .aftercare-right h2{
    font-size:26px;
  }
  .aftercare-left img{
    max-width:80%;
    height: 450px;
    object-fit: cover;
    
  }

  .aftercare-right p,
  .aftercare-list li{
    font-size:14px;
  }
}

/* ================= TEAM SECTION ================= */
.tattoo-team{
  background:#000000;
  padding:100px 20px;
  color:#ffffff;
}

.team-container{
  max-width:1200px;
  margin:auto;
}

.team-header{
  text-align:center;
  margin-bottom:60px;
}

.team-header h2{
  font-size:36px;
  font-weight: 600;
  color:#C77DFF;
  text-transform:uppercase;
  margin-bottom:15px;
}

.team-header p{
  font-size:16px;
  color:#FFFFFF;
  max-width:600px;
  margin:auto;
  line-height:1.7;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.team-card{
  background:#111111;
  border-radius:15px;
  padding:25px;
  text-align:center;
  transition:all 0.4s ease;
}

.team-card img{
  width:100%;
  height:350px;

  object-fit:cover;
  border-radius:12px;
  margin-bottom: 20px;
  filter:grayscale(100%); 
  transition:all 0.4s ease;
}

.team-card h4{
  font-size:20px;
  margin-bottom:6px;
  font-weight: 600;
}

.team-card span{
  font-size:14px;
  color:#C77DFF;
  display:block;
  margin-bottom:12px;
}

.team-card p{
  font-size:14px;
  color:#cccccc;
  line-height:1.6;
}

/* Hover effect */
.team-card:hover{
  transform:translateY(-8px);
}

.team-card:hover img{
  filter:grayscale(0%);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:1024px){
  .team-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* Mobile */
@media(max-width:768px){
  .team-grid{
    grid-template-columns:1fr;
  }

  .team-header h2{
    font-size:28px;
  }
}

/* WHY CHOOSE US SECTION */
.tattoo-why{
  padding:100px 20px;
  background:#000000;
  color:#fff;
}

.tattoo-why-container{
  max-width:1200px;
  margin:auto;
}

.tattoo-why-header{
  text-align:center;
  margin-bottom:60px;
}

.tattoo-why-header h2{
  font-size:36px;
  color:#C77DFF;
  font-weight: 600;
  text-transform:uppercase;
  margin-bottom:15px;
}

.tattoo-why-header p{
  max-width:700px;
  margin:auto;
  font-size:16px;
  line-height:1.8;
  color:#ddd;
}

/* Grid */
.tattoo-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* Card */
.why-card{
  background:#141414;
  padding:30px 25px;
  border-radius:12px;
  transition:all 0.3s ease;
  border:1px solid transparent;
}

.why-card h3{
  font-size:20px;
  color:#C77DFF;
  font-weight: 600;
  margin-bottom:12px;
}

.why-card p{
  font-size:15px;
  line-height:1.7;
  color:#ccc;
}

.why-card:hover{
  transform:translateY(-8px);
  border-color:#C77DFF;
  box-shadow:0 15px 40px rgba(199,125,255,0.2);
}

/* Tablet */
@media(max-width:1024px){
  .tattoo-why-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:768px){
  .tattoo-why-header h2{
    font-size:28px;
  }

  .tattoo-why-grid{
    grid-template-columns:1fr;
  }
}



/* TESTIMONIAL V2 */
.tattoo-testimonial-v2{
  padding:100px 20px;
  background:linear-gradient(180deg,#000000,#0b0614);
  color:#ffffff;
}

.ttv2-container{
  max-width:1100px;
  margin:auto;
}

.ttv2-header{
  text-align:center;
  margin-bottom:60px;
}

.ttv2-header h2{
  font-size:36px;
  color:#C77DFF;
  font-weight: 600;
  text-transform:uppercase;
  margin-bottom:10px;
}

.ttv2-header p{
  color:#FFFFFF;
  font-size:16px;
}

/* LIST */
.ttv2-list{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* CARD */
.ttv2-card{
  display:flex;
  gap:25px;
  align-items:flex-start;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  border:1px solid rgba(199,125,255,0.2);
  padding:30px;
  border-radius:18px;
  transition:all 0.3s ease;
}

.ttv2-card:hover{
  transform:translateX(10px);
  border-color:#C77DFF;
  box-shadow:0 20px 40px rgba(199,125,255,0.25);
}

/* AVATAR */
.ttv2-avatar{
  min-width:55px;
  height:55px;
  border-radius:50%;
  background:#C77DFF;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
  color:#000;
}

/* CONTENT */
.ttv2-content p{
  font-size:15px;
  line-height:1.8;
  color:#ddd;
  margin-bottom:12px;
}

.ttv2-content h4{
  margin:0;
  font-size:17px;
  color:#fff;
}

.ttv2-content small{
  color:#C77DFF;
  font-size:13px;
  font-weight: 600;
}

/* Tablet */
@media(max-width:1024px){
  .ttv2-header h2{
    font-size:30px;
  }
}

/* Mobile */
@media(max-width:768px){
  .ttv2-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .ttv2-avatar{
    margin-bottom:10px;
  }
}














/* TATTOO PROCESS SECTION */
.tattoo-process{
  background:#000000;          /* PURE BLACK */
  padding:90px 20px;
  color:#ffffff;
}

.tp-container{
  max-width:100%;
  width: 100%;

  
 
}

.tp-header{
  text-align:center;
  margin-bottom:60px;
}

.tp-header h2{
  font-size:36px;
  color:#C77DFF;
  font-weight: 600;
  text-transform:uppercase;
  margin-bottom:10px;
}

.tp-header p{
  color:#FFFFFF;
  font-size:16px;
}

/* STEPS */
.tp-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.tp-step{
  background:#0f0f0f;
  border:1px solid rgba(199,125,255,0.2);
  padding:35px 25px;
  border-radius:18px;
  position:relative;
  transition:all 0.3s ease;
}

.tp-step span{
  position:absolute;
  top:-18px;
  left:25px;
  background:#C77DFF;
  color:#000;
  padding:6px 14px;
  font-weight:700;
  border-radius:20px;
  font-size:14px;
}

.tp-step h3{
  margin-top:20px;
  margin-bottom:12px;
  font-size:20px;
}

.tp-step p{
  font-size:15px;
  color:#ccc;
  line-height:1.7;
}

/* Hover */
.tp-step:hover{
  transform:translateY(-10px);
  border-color:#C77DFF;
  box-shadow:0 20px 40px rgba(199,125,255,0.3);
}

/* Tablet */
@media(max-width:1024px){
  .tp-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:768px){
  .tp-steps{
    grid-template-columns:1fr;
  }

  .tp-header h2{
    font-size:28px;
  }
}
/* ======================
   TATTOO GALLERY
====================== */
.tattoo-gallery{
  padding:100px 20px;
  background:#FFFFFF;
  color:#ffffff;
}

.gallery-container{
  max-width:1200px;
  margin:auto;
}

.gallery-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
}

.gallery-header h2{
  font-size:38px;
  color:#C77DFF;
  font-weight: 600;
  margin-bottom:15px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.gallery-header p{
  font-size:16px;
  line-height:1.8;
  color:#000000;
}

/* GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
}

.gallery-item{
  overflow:hidden;
  border-radius:16px;
  position:relative;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:all 0.5s ease;
}

/* Hover Effect */
.gallery-item:hover img{
  transform:scale(1.1);
  filter:brightness(0.8);
}

/* ======================
   TABLET RESPONSIVE
====================== */
@media(max-width:1024px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-header h2{
    font-size:32px;
  }
}

/* ======================
   MOBILE RESPONSIVE
====================== */
@media(max-width:768px){
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-header{
    margin-bottom:40px;
  }

  .gallery-header h2{
    font-size:28px;
  }
}

/* =========================
   ABOUT HERO SECTION
========================= */
.about-hero{
  min-height:80vh;
  background:linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.9)
  ),
  url("../images/dmitry-kropachev-Iskr6EBJQs0-unsplash.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:80px 20px;
}

.about-hero-container{
  max-width:1200px;
  margin:auto;
  width:100%;
}

.about-hero-content{
  max-width:650px;
}

.about-hero-content h1{
  font-size:40px;
  color:#C77DFF;
  font-weight: 600;
  margin-bottom:20px;
  text-transform:uppercase;
}

.about-hero-content p{
  font-size:16px;
  line-height:1.8;
  color:#ffffff;
}

/* Tablet */
@media(max-width:1024px){
  .about-hero-content h1{
    font-size:38px;
  }
}

/* Mobile */
@media(max-width:768px){
  .about-hero{
    min-height:50vh;
  }

  .about-hero-content h1{
    font-size:30px;
  }

  .about-hero-content p{
    font-size:16px;
  }
}


/* ===== ABOUT PAGE BANNER ===== */
.about-banner {
    position: relative;
     background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    ),
    url('../images/pexels-matreding-31452616.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* =========================
   ABOUT STORY SECTION
========================= */
.about-story{
  padding:100px 20px;
  background:#FFFFFF;
  color:#ffffff;
}

.about-story-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  max-width:1200px;
  margin:auto;
  align-items:center;
}

/* LEFT IMAGE */
.about-story-image img{
  width:100%;
  max-width: 100%;
  object-fit: cover;
  height: 400px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* RIGHT CONTENT */
.about-story-content h2{
  font-size:36px;
  color:#C77DFF;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:20px;
}

.about-story-content p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:25px;
  color:#000000;
}

.story-highlights{
  list-style:none;
  padding:0;
   color:#000000;
  margin-bottom:30px;
}

.story-highlights li{
  margin-bottom:12px;
  font-size:15px;
   color:#000000;
}

/* BUTTON */
.about-story-content .btn{
  background:#C77DFF;
  color:#fff;
  padding:12px 30px;
  font-weight:600;
  border-radius:8px;
  transition:all 0.3s ease;
}

.about-story-content .btn:hover{
  background:#ffffff;
  color:#C77DFF;
  transform:translateY(-3px);
  border-color: #000000;
}


/* Responsive Tablet */
@media(max-width:1024px){
  .about-story-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
  }

  .about-story-image img{
    width:90%;
    margin:auto;
    transform:rotate(0deg);
  }

  .about-story-content h2{
    font-size:32px;
  }

  .about-story-content p{
    font-size:15px;
  }
}

/* Mobile */
@media(max-width:768px){
  .about-story{
    padding:70px 20px;
  }

  .about-story-content h2{
    font-size:28px;
  }

  .about-story-content p{
    font-size:14px;
  }

  .story-highlights li{
    font-size:14px;
  }

  .about-story-content .btn{
    padding:10px 25px;
    font-size:14px;
  }
}
/* =========================
   ABOUT OUR COMPANY SECTION
========================= */
.about-company{
  padding:100px 20px;
  background:#FFFFFF;
  color:#ffffff;
}

.about-company-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  max-width:1200px;
  margin:auto;
  align-items:center;
  text-align:left;
}

/* LEFT CONTENT */
.about-company-content h2{
  font-size:36px;
  color:#C77DFF;
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:20px;
}

.about-company-content p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:25px;
  color:#000000;
}

.company-highlights{
  list-style:none;
  padding:0;
  margin-bottom:30px;
  color: #000000;
}

.company-highlights li{
  margin-bottom:12px;
  font-size:15px;
  color: #000000;
}

/* BUTTON */
.about-company-content .btn{
  background:#C77DFF;
  color:#fff;
  padding:12px 30px;
  font-weight:600;
  border-radius:8px;
  transition:all 0.3s ease;
}

.about-company-content .btn:hover{
  background:#ffffff;
  color:#C77DFF;
  transform:translateY(-3px);
  border-color: #000000;
}

/* RIGHT IMAGE */
.about-company-image img{
  width:100%;
  max-width: 100%;
  height: 400px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  
}

/* Responsive Tablet */
@media(max-width:1024px){
  .about-company-container{
    grid-template-columns:1fr; /* stacked on tablet */
    text-align:center;
    gap:40px;
  }

  .about-company-image img{
    width:90%;
    margin:auto;
    transform:rotate(0deg);
  }

  .about-company-content h2{
    font-size:32px;
  }

  .about-company-content p{
    font-size:15px;
  }

  .company-highlights li{
    font-size:14px;
  }

  .about-company-content .btn{
    padding:10px 25px;
    font-size:14px;
  }
}

/* Mobile */
@media(max-width:768px){
  .about-company{
    padding:70px 20px;
  }

  .about-company-content h2{
    font-size:28px;
  }

  .about-company-content p{
    font-size:14px;
  }

  .company-highlights li{
    font-size:14px;
  }
}

/* Tattoo Services Section */
.tattoo-services{
  padding:80px 20px;
  background:#FFFFFF;
  color:#fff;
  text-align:center;
}

.tattoo-services h2{
  font-size:36px;
  color:#C77DFF;
  margin-bottom:50px;
  font-weight:600;
  text-transform: uppercase;
}

/* Grid layout */
.tattoo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  align-items:start;
}

/* Service Card */
.tattoo-card{
  background:#111111;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.tattoo-card:hover{
  transform: translateY(-5px);
}

/* Image */
.tattoo-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* Content */
.tattoo-info{
  padding:20px;
}

.tattoo-info h3{
  font-size:22px;
  color:#C77DFF;
  margin-bottom:10px;
  font-weight:600;
}

.tattoo-info p{
  font-size:15px;
  color:#fff;
  line-height:1.6;
}

/* Responsive */
@media(max-width:768px){
  .tattoo-services h2{
    font-size:28px;
  }

  .tattoo-info h3{
    font-size:20px;
  }

  .tattoo-info p{
    font-size:14px;
  }
}



/* Why Choose Us Section */
.tattoo-why{
  padding:90px 20px;
  background:#0b0b0b;
  color:#ffffff;
}

.tattoo-why-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* Left Content */
.tattoo-why-left h2{
  text-transform: uppercase;
  font-size:38px;
  color:#C77DFF;
  margin-bottom:20px;
  font-weight:600;
}

.tattoo-why-left p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:40px;
  color:#e5e5e5;
}

/* Points */
.tattoo-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.tattoo-point{
  background:#141414;
  padding:20px;
  border-radius:12px;
  border-left:4px solid #C77DFF;
}

.tattoo-point span{
  font-size:26px;
  font-weight:700;
  color:#C77DFF;
}

.tattoo-point h4{
  margin:10px 0 8px;
  font-size:18px;
  font-weight:600;
}

.tattoo-point p{
  font-size:14px;
  color:#cccccc;
}

/* Right Image */
.tattoo-why-right img{
  width:100%;
  height: 650px;
  object-fit: cover;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
}

/* Tablet */
@media(max-width:1024px){
  .tattoo-why-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  .tattoo-points{
    grid-template-columns:1fr;
  }
}

/* Mobile */
@media(max-width:768px){
  .tattoo-why-left h2{
    font-size:28px;
  }
}

/* Tattoo Process Section */
.tattoo-process{
  padding:100px 20px;
  background-color: #FFFFFF;
  color:#ffffff;
}

.tattoo-process-wrap{
  max-width:1200px;
  margin:auto;
}

.process-header{
  text-align:center;
  margin-bottom:60px;
}

.process-header h2{
  font-size:40px;
  color:#C77DFF;
  text-transform: uppercase;
  margin-bottom:15px;
  font-weight:600;
}

.process-header p{
  font-size:16px;
  max-width:700px;
  margin:auto;
  color:#000000;
  line-height:1.8;
}

/* Steps */
.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.process-card{
  background:#121212;
  padding:35px 25px;
  border-radius:16px;
  text-align:center;
  position:relative;
  transition:all 0.3s ease;
}

.process-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(199,125,255,0.25);
}

.process-icon{
  width:60px;
  height:60px;
  background:#C77DFF;
  color:#000;
  font-size:20px;
  font-weight:700;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.process-card h4{
  font-size:18px;
  margin-bottom:10px;
  font-weight:600;
}

.process-card p{
  font-size:14px;
  color:#cccccc;
  line-height:1.7;
}

/* Tablet */
@media(max-width:1024px){
  .process-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:768px){
  .process-steps{
    grid-template-columns:1fr;
  }

  .process-header h2{
    font-size:30px;
  }
}

/* CTA Section */
.service-cta{
  padding:90px 20px;
  background:linear-gradient(135deg,#C77DFF,#8B5CF6);
  text-align:center;
}

.service-cta-box{
  max-width:800px;
  margin:auto;
  color:#fff;
}

.service-cta-box h2{
  font-size:42px;
  margin-bottom:15px;
  font-weight:700;
}

.service-cta-box p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:35px;
}

.cta-actions{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-btn{
  padding:14px 35px;
  border-radius:30px;
  font-weight:600;
  font-size:15px;
  text-decoration: none;
  transition:all 0.3s ease;
}

.cta-btn.primary{
  background:#000;
  color:#fff;
}

.cta-btn.primary:hover{
  background:#fff;
  color:#C77DFF;
}

.cta-btn.outline{
  border:2px solid #fff;
  color:#fff;
}

.cta-btn.outline:hover{
  background:#fff;
  color:#C77DFF;
}

/* Responsive */
@media(max-width:768px){
  .service-cta-box h2{
    font-size:30px;
  }
}
/* tour section */
.tour-inside{
  background:#000000;
  padding:100px 20px;
  color:#fff;
}

.tour-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* CONTENT */
.tour-content h2{
  font-size:38px;
  color:#C77DFF;
  font-weight: 600;
  margin-bottom:20px;
  text-transform: uppercase;
}

.tour-content p{
  color:#FFFFFF;
  font-size:16px;
  line-height:1.8;
  margin-bottom:25px;
}

.tour-points{
  list-style:none;
  padding:0;
}

.tour-points li{
  font-size:15px;
  margin-bottom:12px;
  color:#eee;
}

/* IMAGE */
.tour-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 0 30px rgba(199,125,255,0.25);
}

/* RESPONSIVE */
@media(max-width:768px){
  .tour-wrapper{
    grid-template-columns:1fr;
  }

  .tour-content h2{
    font-size:28px;
  }
}
/* TABLET VIEW FIX */
@media (max-width:1024px) and (min-width:769px){

  .tour-wrapper{
    gap:40px;
  }

  .tour-image img{
    height:380px;          /* image perusa */
    object-fit:cover;
    border-radius:24px;
  }

  .tour-content h2{
    font-size:32px;
  }

  .tour-content p{
    font-size:15px;
  }
}

/* Tour gallery section */
.studio-tour-multi{
  background:#FFFFFF;
  padding:100px 20px;
  color:#fff;
}

.tour-container{
  max-width:1200px;
  margin:auto;
}

.tour-head{
  text-align:center;
  margin-bottom:50px;
}

.tour-head h2{
  font-size:38px;
  color:#C77DFF;
  font-weight: 600;
  margin-bottom:10px;
  text-transform: uppercase;
}

.tour-head p{
  color:#000000;
  font-size:16px;
}

/* GALLERY GRID */
.tour-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.tour-item{
  position:relative;
  overflow:hidden;
  border-radius:18px;
}

.tour-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.5s ease;
}

.tour-item span{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:14px;
  background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color:#fff;
  font-size:15px;
  letter-spacing:0.5px;
}

/* HOVER EFFECT */
.tour-item:hover img{
  transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:992px){
  .tour-gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .tour-gallery{
    grid-template-columns:1fr;
  }

  .tour-item img{
    height:220px;
  }
}

/* studio walking */

.studio-walkthrough{
  background:#111;
  padding:90px 0;
  color:#fff;
}

.walk-container{
  max-width:1300px;
  margin:auto;
  padding-left:20px;
}

.walk-head{
  text-align:center;
  margin-bottom:45px;
}

.walk-head h2{
  font-size:36px;
  color:#C77DFF;
  font-weight: 600;
  text-transform: uppercase;
}

.walk-head p{
  color:#aaa;
  font-size:15px;
}

/* HORIZONTAL SCROLL */
.walk-scroll{
  display:flex;
  gap:25px;
  overflow-x:auto;
  padding-bottom:20px;
  scroll-snap-type:x mandatory;
}

.walk-scroll::-webkit-scrollbar{
  height:8px;
}

.walk-scroll::-webkit-scrollbar-thumb{
  background:#C77DFF;
  border-radius:20px;
}

/* CARD */
.walk-card{
  min-width:320px;
  background:#1c1c1c;
  border-radius:20px;
  overflow:hidden;
  scroll-snap-align:start;
  transition:0.4s;
}

.walk-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.walk-text{
  padding:18px;
}

.walk-text h4{
  margin:0 0 6px;
  font-size:18px;
}

.walk-text span{
  color:#bbb;
  font-size:14px;
}

/* HOVER */
.walk-card:hover{
  transform:translateY(-8px);
}

/* MOBILE */
@media(max-width:600px){
  .walk-card{
    min-width:260px;
  }
}

/* ================= CONTACT SECTION ================= */

.contact-section{
  background:#000000;
  padding:100px 20px;
  color:#ffffff;
  font-family: 'Poppins', sans-serif;
}

.contact-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;   /* 2 COLUMN */
  gap:60px;
  align-items:flex-start;
}

/* ================= LEFT SIDE ================= */

.contact-left h2{
  font-size:36px;
  color:#C77DFF;
  margin-bottom:15px;
  font-weight: 600;
  text-transform:uppercase;
}

.contact-left p{
  font-size:16px;
  color:#dddddd;
  line-height:1.8;
  margin-bottom:35px;
}

.contact-info-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.info-item{
  display:flex;
  align-items:center;
  gap:15px;
  background:#111111;
  padding:16px 20px;
  border-radius:14px;
  box-shadow:0 0 20px rgba(199,125,255,0.12);
}

.info-item span{
  font-size:20px;
  color:#C77DFF;
}

.info-item p{
  margin:0;
  font-size:15px;
  color:#eeeeee;
}

/* ================= RIGHT SIDE FORM ================= */

.contact-form{
  background:#111111;
  padding:40px;
  border-radius:20px;
  box-shadow:0 0 30px rgba(199,125,255,0.18);
}

.contact-form h3{
  font-size:30px;
  margin-bottom:25px;
  color:#ffffff;
  font-weight: 600;
}

.form-group{
  margin-bottom:18px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  background:#000000;
  border:none;
  outline:none;
  color:#ffffff;
  font-size:14px;
  border-radius:10px;
}

.form-group textarea{
  resize:none;
  height:120px;
}

.contact-form button{
  width:100%;
  padding:14px;
  background:#FFFFFF;
  color:#000000;
  border:none;
  border-radius:5px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s ease;
}

.contact-form button:hover{
  background:#C77DFF;
  color:#000000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;   /* MOBILE = 1 COLUMN */
    gap:40px;
  }

  .contact-left h2{
    font-size:28px;
  }

  .contact-form{
    padding:30px 22px;
  }
}

/* ================= STUDIO LOCATION ================= */

.studio-location{
  background:#000000;
  padding:100px 20px;
  color:#ffffff;
}

.location-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* CONTENT */
.location-content h2{
  font-size:36px;
  color:#C77DFF;
  font-weight: 600;
  margin-bottom:18px;
  text-transform:uppercase;
}

.location-content p{
  font-size:16px;
  color:#dddddd;
  line-height:1.8;
  margin-bottom:25px;
}

.location-points{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.location-points li{
  font-size:15px;
  margin-bottom:10px;
  color:#eeeeee;
}

.location-btn{
  display:inline-block;
  padding:14px 34px;
  background:#FFFFFF;
  color:#000000;
  font-weight:600;
  border-radius:5px;
  text-decoration:none;
  transition:0.3s ease;
}

.location-btn:hover{
  background:#C77DFF;
  color: #FFFFFF;
  border-color: #000000;
}

/* MAP */
.location-map iframe{
  width:100%;
  height:350px;
  border:none;
  border-radius:20px;
  box-shadow:0 0 30px rgba(199,125,255,0.25);

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  .location-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .location-content h2{
    font-size:28px;
  }

  .location-map iframe{
    height:280px;
  }
}}

/* ================= FAQ SECTION ================= */

.faq-section{
  background:#ffffff;
  padding:100px 20px;
  color:#000000;
}

.faq-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.faq-container h2{
  font-size:36px;
  margin-bottom:10px;
  font-weight: 600;
  color: #C77DFF;
  text-transform:uppercase;
}

.faq-subtitle{
  font-size:16px;
  color:#000000;
  margin-bottom:60px;
  line-height:1.7;
}

/* FAQ LIST */
.faq-list{
  text-align:left;
}

/* FAQ ITEM */
.faq-item{
  background:#f9f9f9;
  margin-bottom:20px;
  border-radius:15px;
  padding:20px 25px;
  transition:0.3s ease;
}

.faq-item summary{
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  list-style:none;
  position:relative;
  padding-right:30px;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  font-size:22px;
  color:#C77DFF;
  transition:0.3s;
}

.faq-item[open] summary::after{
  content:"–";
}

.faq-item p{
  margin-top:15px;
  font-size:15px;
  color:#555;
  line-height:1.7;
}

/* HOVER */
.faq-item:hover{
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

@media(max-width:576px){
  .faq-container h2{
    font-size:26px;
  }

  .faq-item summary{
    font-size:15px;
  }
}
/* maintenance page */
/* =========================
   MAINTENANCE PAGE ONLY
========================= */

.maintenance{
  min-height:100vh;
  width:100%;
  background:linear-gradient(135deg,#0f0c29,#302b63,#24243e);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
  padding:20px;
  font-family:'Poppins', Arial, sans-serif;
}

/* Circle Content */
.maintenance .circle{
  width:320px;
  height:320px;
  margin-bottom:50px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border:2px solid rgba(255,255,255,0.2);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  animation:pulse 3s infinite;
}

.maintenance .circle h1{
  font-size:26px;
  line-height:1.3;
  margin-bottom:10px;
  color:#C77DFF;
}

.maintenance .circle p{
  font-size:15px;
  color:#d1d5db;
}

/* Plug Section */
.maintenance .plug-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
}

.maintenance .plug{
  width:50px;
  height:70px;
  background:#111827;
  border-radius:8px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:8px;
}

.maintenance .plug span{
  width:8px;
  height:18px;
  background:#C77DFF;
  border-radius:4px;
}

/* Wire */
.maintenance .wire{
  width:120px;
  height:6px;
  background:#C77DFF;
  border-radius:10px;
  position:relative;
  overflow:hidden;
}

.maintenance .wire::after{
  content:"";
  position:absolute;
  top:0;
  left:-40px;
  width:40px;
  height:100%;
  background:rgba(255,255,255,0.5);
  animation:flow 1.5s linear infinite;
}

/* Animations */
@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.03)}
  100%{transform:scale(1)}
}

@keyframes flow{
  0%{left:-40px}
  100%{left:100%}
}

/* Mobile View */
@media(max-width:480px){
  .maintenance .circle{
    width:260px;
    height:260px;
  }

  .maintenance .circle h1{
    font-size:22px;
  }

  .maintenance .circle p{
    font-size:14px;
  }

  .maintenance .wire{
    width:80px;
  }
}


/* ================= 404 PAGE ================= */

.error-page{
  min-height:100vh;
  background:linear-gradient(135deg, #000000, #1a1a1a);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  
}

.error-wrapper{
  text-align:center;
  color:#ffffff;
  max-width:500px;
  width:100%;
  padding:60px 30px;
  background:rgba(255,255,255,0.05);
  border-radius:25px;
  box-shadow:0 30px 60px rgba(0,0,0,0.5);
  backdrop-filter:blur(8px);
}

/* 404 NUMBER */
.error-wrapper h1{
  font-size:120px;
  font-weight:800;
  margin-bottom:10px;
  color:#C77DFF;
  letter-spacing:5px;
}

/* TITLE */
.error-wrapper h2{
  font-size:28px;
  margin-bottom:15px;
}

/* DESCRIPTION */
.error-wrapper p{
  font-size:15px;
  line-height:1.7;
  color:#dddddd;
  margin-bottom:35px;
}

/* BUTTON */
.btn-back{
  display:inline-block;
  padding:14px 36px;
  background:#C77DFF;
  color:#000000;
  text-decoration:none;
  font-weight:600;
  border-radius:5px;
  transition:0.3s ease;
  box-shadow:0 10px 25px rgba(199,125,255,0.4);
}

.btn-back:hover{
  background:#ffffff;
  color:#000000;
  transform:translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  .error-wrapper{
    padding:50px 25px;
  }

  .error-wrapper h1{
    font-size:90px;
  }

  .error-wrapper h2{
    font-size:24px;
  }
}

@media(max-width:480px){
  .error-wrapper h1{
    font-size:72px;
  }

  .error-wrapper h2{
    font-size:20px;
  }

  .error-wrapper p{
    font-size:14px;
  }

  .btn-back{
    padding:12px 28px;
    font-size:14px;
  }
}

/* admin dashboard page */

:root {
  --primary: #C77DFF;
  --light-bg: #f1f5f9;
  --sidebar-bg: #FFFFFF;
  --card-bg: #ffffff;
  --panel-bg: #ffffff;
  --gray: #C77DFF;
  --radius: 12px;
  --text-white: #000000;
}
/* =====================
   TATTOO WORK STATUS
===================== */

.tattoo-work{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:30px;
  margin-top: 20px;
}

.work-card{
  background:var(--dark-2);
  border:1px solid #000000;
  border-radius:var(--radius);
  padding:20px;
  text-align:center;
  transition:.3s;
}

.work-card h4{
  font-size:14px;
  color:var(--gray);
  margin-bottom:8px;
}

.work-card span{
  font-size:28px;
  font-weight:600;
  color:#000000;
}

.work-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

/* ALERT STYLE */
.work-card.danger{
  border-color:#000000;
}
.work-card.danger span{
  color:#000000;
}

/* =====================
   RESPONSIVE FIX
===================== */

@media(max-width:1024px){
  .tattoo-work{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .tattoo-work{
    grid-template-columns:1fr;
  }
}

/* =====================
   ARTIST AVAILABILITY
===================== */

.artist-status{
  background:var(--dark-2);
  border:1px solid #222;
  border-radius:var(--radius);
  padding:20px;
  margin-bottom:30px;
}

.section-title{
  margin-bottom:15px;
  color:var(--primary);
}

.artist-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}

.artist-card{
  display:flex;
  align-items:center;
  gap:12px;
  background:#111;
  padding:12px;
  border-radius:12px;
  border-left:4px solid #444;
}

.artist-card img{
  width:45px;
  height:45px;
  border-radius:50%;
}

.artist-card h4{
  color:#fff;
  font-size:15px;
}

.artist-card span{
  font-size:13px;
  color:var(--gray);
}

/* STATUS COLORS */
.artist-card.available{ border-color:#22c55e; }
.artist-card.busy{ border-color:#f59e0b; }
.artist-card.off{ border-color:#ef4444; }

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {  background: var(--light-bg); overflow-x: hidden; }

/* Layout */
.dashboard-layout { display: flex; min-height: 100vh; }

/* SIDEBAR */
.user-sidebar {
  width: 220px;
  background: var(--sidebar-bg);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* prevent shrinking */
}

/* LOGO */
.user-sidebar .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.user-sidebar .navbar-brand img {
  width: 80px;
  display: block;
  object-fit: contain;
}

/* Menu */
.user-menu { list-style: none; padding: 0; margin-top: 0; }
.user-menu li { 
  padding: 10px 8px;
  cursor: pointer; 
  border-radius: var(--radius); 
  margin-bottom: 6px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 17px;
}
.user-menu li.active, .user-menu li:hover {  background: #C77DFF;  /* your hover color */
  color: #ffffff;  }
.user-menu li.logout { margin-top: auto; }
.user-menu li.logout a { color: var(--text-white); text-decoration: none; display: flex; align-items: center; gap: 10px; }

/* Close button */
.user-sidebar .close-btn { 
  display: none; 
  background: none; border: none; color: var(--text-white); font-size: 24px; 
  cursor: pointer; position: absolute; top: 15px; right: 15px;
}

/* MAIN CONTENT */
.main-content { flex: 1; padding: 20px; transition: margin-left 0.3s ease; overflow-x: hidden; }

/* TOPBAR */
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.topbar h1 { color: var(--primary); font-size: 24px; }
.admin-profile { display: flex; align-items: center; gap: 10px; }
.admin-profile img { width: 35px; height: 35px; border-radius: 50%; }

/* QUICK ACTIONS */
.quick-actions { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.quick-actions .btn { padding: 10px 20px; border: none; border-radius: var(--radius); background: var(--primary); color: #fff; cursor: pointer; }

/* STATS GRID */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 15px; margin-bottom: 20px; }
.stat-card { background: var(--card-bg); padding: 20px; border-radius: var(--radius); text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.stat-card h2 { font-size: 22px; margin: 5px 0; }
.stat-card p { color: var(--gray); }

/* PANELS */
.dashboard-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.panel { background: var(--panel-bg); padding: 20px; border-radius: var(--radius); box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.panel h3 { margin-bottom: 10px; color: var(--primary); }
.panel ul.list { list-style: none; padding-left: 0; }
.panel ul.list li { padding: 8px 0; border-bottom: 1px solid #eee; }
.panel .amount { font-weight: bold; margin-bottom: 8px; }
.progress-bar { background: #eee; height: 10px; border-radius: 10px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; width: 72%; background: var(--primary); }

/* BOOKINGS TABLE */
.booking-table { width: 100%; border-collapse: collapse; }
.booking-table th, .booking-table td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
.booking-table th { background: #f4f6f8; }
.booking-table td.success { color: green; font-weight: bold; }
.booking-table td.pending { color: orange; font-weight: bold; }

/* HAMBURGER */
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray); margin-right: 10px; }

/* RESPONSIVE TABLET / MOBILE */
@media (max-width: 1024px) {
  .user-sidebar { 
    width: 180px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    z-index: 1000;
  }
  .user-sidebar.open { transform: translateX(0); }
  .user-sidebar .close-btn {
  display: block;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1100;  /* make sure it's on top */
}

  .hamburger { display: block; }
  .dashboard-sections { grid-template-columns: 1fr; }
  .user-sidebar .navbar-brand img { width: 60px; margin-bottom: 8px; }
  .main-content { margin-left: 0; }
}

/* SMALL SCREENS */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .quick-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .quick-actions .btn { width: 100%; }
}



/* user dashboard page */

:root {
  --primary: #C77DFF; /* hover/active color */
  --sidebar-bg: #FFFFFF;
  --light-bg: #f1f5f9;
  --card-bg: #fff;
  --panel-bg: #fff;
  --gray: #6b7280;
  --radius: 12px;
  --text-white: #000000;
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body { background: var(--light-bg); overflow-x:hidden; }

/* LAYOUT */
.user-layout { display:flex; min-height:100vh; }

/* SIDEBAR */
.user-sidebar {
  width:220px;
  background: var(--sidebar-bg);
  color: var(--text-white);
  display:flex;
  flex-direction:column;
  padding:15px 10px;
  transition: transform 0.3s ease;
  flex-shrink:0;
  position:relative;
}
.user-sidebar .navbar-brand { display:flex; justify-content:center; margin-bottom:12px; }
.user-sidebar .user-menu { list-style:none; padding:0; margin-top:0; }
.user-sidebar .user-menu li { 
  padding:10px 8px; display:flex; align-items:center; gap:10px; cursor:pointer; border-radius: var(--radius); margin-bottom:6px; font-size:14px; transition:0.3s;
}
/* HOVER & ACTIVE */
.user-sidebar .user-menu li:hover,
.user-sidebar .user-menu li.active { background: var(--primary); color:#fff; }
/* LOGOUT */
.user-sidebar .user-menu li.logout { margin-top:auto; }
.user-sidebar .user-menu li.logout a { color:#fff; text-decoration:none; display:flex; align-items:center; gap:10px; }
.user-sidebar .user-menu li.logout a:hover { background: var(--primary); border-radius: var(--radius); padding:10px 8px; }

/* CLOSE BUTTON */
.user-sidebar .user-close-btn { 
  display:none; position:absolute; top:15px; right:15px; font-size:24px; color:#fff; background:none; border:none; cursor:pointer; z-index:1100;
}

/* LOGOUT BUTTON */
.user-sidebar .user-menu li.logout a { 
    /* background color */
  color: #000;           /* text color black */
 
 
}



/* MAIN CONTENT */
.user-main { flex:1; padding:20px; transition: margin-left 0.3s ease; overflow-x:hidden; }

/* TOPBAR */
.user-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.user-topbar h1 { font-size:24px; color: var(--primary); }
.user-topbar img { width:35px; height:35px; border-radius:50%; }
.user-hamburger { display:none; background:none; border:none; font-size:24px; cursor:pointer; color: var(--gray); margin-right:10px; }

/* CARDS */
.user-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:15px; margin-bottom:20px; }
.user-card { background: var(--card-bg); padding:20px; border-radius: var(--radius); box-shadow:0 2px 6px rgba(0,0,0,0.1); text-align:center; }
.user-card h3 { margin-top:5px; }
.user-card .confirmed { color:green; font-weight:bold; }

/* PANELS */
.user-panel { background: var(--panel-bg); padding:20px; border-radius: var(--radius); box-shadow:0 2px 6px rgba(0,0,0,0.1); margin-bottom:20px; }
.user-panel h2 { margin-bottom:15px; color: var(--primary); }

/* TABLES */
.user-table { width:100%; border-collapse:collapse; }
.user-table th, .user-table td { padding:10px; text-align:left; border-bottom:1px solid #ddd; }
.user-table th { background:#f4f6f8; }
.user-table td.confirmed { color:green; font-weight:bold; }
.user-table td.completed { color:gray; font-weight:bold; }

/* BOOKING FORM */
.user-booking-form { display:flex; gap:10px; flex-wrap:wrap; }
.user-booking-form select, .user-booking-form input { padding:10px; border-radius: var(--radius); border:1px solid #ccc; }
.user-booking-form button { padding:10px 20px; border:none; border-radius: var(--radius); background: var(--primary); color:#fff; cursor:pointer; }

/* RESPONSIVE */
@media(max-width:1024px){
  .user-sidebar{ width:180px; position:fixed; top:0; left:0; bottom:0; transform:translateX(-100%); z-index:1000; }
  .user-sidebar.open{ transform:translateX(0); }
  .user-sidebar .user-close-btn{ display:block; }
  .user-main{ margin-left:0; }
  .user-hamburger { display:block; }
}

@media(max-width:768px){
  .user-stats{ grid-template-columns:1fr; }
  .user-booking-form{ flex-direction:column; }
}
@media(max-width:480px){
  .user-booking-form button{ width:100%; }
}
    /* TAB & MOBILE – CLOSE ICON FORCE BLACK */
@media (max-width:1024px){
  .user-close-btn,
  .user-close-btn i,
  .user-close-btn svg {
    color: #000 !important;
    fill: #000 !important;
  }
}

@media (max-width:768px){
  .user-close-btn,
  .user-close-btn i,
  .user-close-btn svg {
    color: #000 !important;
    fill: #000 !important;
  }
}
/* =========================
   USER TATTOO DESIGNS
========================= */

.tattoo-designs h2{
  margin-bottom:18px;
  color:#fff;
}

/* GRID */
.design-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

/* CARD */
.design-card{
  background:#111;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #C77DFF;
  transition:.3s;
}
.design-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,.6);
}

/* IMAGE */
.design-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}

/* INFO */
.design-info{
  padding:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.design-info h4{
  font-size:14px;
  color:#fff;
}

/* STATUS */
.design-status{
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
  font-weight:500;
}

.design-status.approved{
  background:#16a34a20;
  color:#22c55e;
}
.design-status.pending{
  background:#f59e0b20;
  color:#f59e0b;
}
.design-status.rejected{
  background:#ef444420;
  color:#ef4444;
}

/* MOBILE FIX */
@media(max-width:768px){
  .design-card img{
    height:140px;
  }
}
/* =========================
   ASSIGNED ARTIST SECTION
========================= */

.assigned-artist h2{
  margin-bottom:18px;
  color:#fff;
}

/* BOX */
.artist-box{
  display:flex;
  gap:20px;
  align-items:center;
  background:#111;
  border:1px solid #222;
  border-radius:14px;
  padding:20px;
}

/* IMAGE */
.artist-box img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #e1062c;
}

/* DETAILS */
.artist-details h3{
  color:#fff;
  margin-bottom:6px;
}
.artist-details p{
  color:#9ca3af;
  font-size:14px;
  margin-bottom:10px;
}

/* META */
.artist-meta{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  font-size:13px;
  color:#9ca3af;
}
.artist-meta i{
  color:#e1062c;
  margin-right:6px;
}

/* STATUS */
.artist-status{
  display:flex;
  align-items:center;
  gap:6px;
}
.artist-status.confirmed{
  color:#22c55e;
}

/* MOBILE */
@media(max-width:768px){
  .artist-box{
    flex-direction:column;
    text-align:center;
  }
  .artist-meta{
    justify-content:center;
  }
}
/* =========================
   TATTOO ECG / PULSE
========================= */

.tattoo-pulse h2{
  margin-bottom:18px;
  color:#fff;
}

/* CARD */
.pulse-card{
  background:#0b0b0b;
  border:1px solid #222;
  border-radius:14px;
  padding:20px;
}

/* INFO */
.pulse-info{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}
.pulse-info p{
  color:#9ca3af;
}
.pulse-info h3{
  color:#e1062c;
  font-size:18px;
}

/* ECG */
.ecg{
  width:100%;
  height:90px;
  overflow:hidden;
}
.ecg svg{
  width:100%;
  height:100%;
}
.ecg polyline{
  fill:none;
  stroke:#e1062c;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-dasharray:600;
  stroke-dashoffset:600;
  animation:ecgMove 2.5s linear infinite;
  filter:drop-shadow(0 0 6px rgba(225,6,44,.8));
}

/* META */
.pulse-meta{
  display:flex;
  justify-content:space-between;
  margin-top:15px;
  font-size:13px;
  color:#9ca3af;
}
.pulse-meta i{
  color:#e1062c;
  margin-right:6px;
}

/* ECG ANIMATION */
@keyframes ecgMove{
  to{
    stroke-dashoffset:0;
  }
}

/* MOBILE */
@media(max-width:768px){
  .pulse-info{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .pulse-meta{
    flex-direction:column;
    gap:8px;
  }
}

/* Login Page */


/* LAYOUT */
.login-container{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#0f0f0f;
  color:#fff;
}

/* LEFT PANEL */
.login-left{
  background-color: #FFFFFF;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px;
}

.login-left .logo{
  width:180px;
  margin-bottom:30px;
}

.login-left h1{
  font-size:42px;
  margin-bottom:15px;
  color: #C77DFF;
}

.login-left h1 span{
  color:#000000;
}

.login-left p{
  color:#000000;
  max-width:420px;
  line-height:1.6;
}

.tattoo-icons{
  margin-top:30px;
  font-size:28px;
  display:flex;
  gap:20px;
  color:#C77DFF;
}

/* RIGHT PANEL */
.login-right{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#141414;
}

.login-form{
  width:100%;
  max-width:380px;
  background:#141414;
  padding:40px;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.login-form h2{
  text-align:center;
  margin-bottom:30px;
  color:#C77DFF;
}

/* INPUTS */
.input-group{
  display:flex;
  align-items:center;
  background:#FFFFFF;
  margin-bottom:18px;
  border-radius:5px;
  padding:12px 15px;
}

.input-group i{
  color:#9ca3af;
  margin-right:10px;
}

.input-group input{
  background:none;
  border:none;
  outline:none;
  color:#fff;
  width:100%;
}

/* OPTIONS */
.form-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  margin-bottom:25px;
}

.form-options a{
  color:#C77DFF;
  text-decoration:none;
}

/* BUTTON */
.btn-group-vertical{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:20px;
}

/* MAIN LOGIN BUTTON (already irukuna touch panna vendam) */
.btn-login{
  width:100%;
}
/* BUTTON */
.btn-login{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:linear-gradient(135deg,#C77DFF,#7B2CBF);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.btn-login:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(199,125,255,0.4);
}

/* BACK TO WEBSITE – SEPARATE BUTTON */
.btn-back-website{
  width:100%;
  text-align:center;
  padding:12px;
  border-radius:30px;
  border:2px solid #C77DFF;
  color:#C77DFF;
  font-weight:500;
  text-decoration:none;
  transition:.3s ease;
}

.btn-back-website i{
  margin-right:6px;
}

.btn-back-website:hover{
  background:#C77DFF;
  color:#fff;
}
 

/* BACK LINK */
.back-home{
  display:block;
  text-align:center;
  margin-top:18px;
  color:#9ca3af;
  text-decoration:none;
}

/* REGISTER */
.register-text{
  text-align:center;
  margin-top:20px;
  font-size:14px;
}

.register-text a{
  color:#C77DFF;
  text-decoration:none;
}
/* ===============================
   TABLET VIEW
================================ */
@media (max-width: 992px){

  .login-container{
    grid-template-columns:1fr;
  }

  .login-left{
    padding:50px 40px;
    text-align:center;
    align-items:center;
  }

  .login-left h1{
    font-size:34px;
  }

  .login-left p{
    max-width:100%;
  }

  .tattoo-icons{
    justify-content:center;
  }

  .login-right{
    padding:40px 20px;
  }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 576px){

  .login-container{
    grid-template-columns:1fr;
  }

  .login-left{
    padding:40px 25px;
  }

  .login-left .logo{
    width:140px;
    margin-bottom:20px;
  }

  .login-left h1{
    font-size:26px;
  }

  .login-left p{
    font-size:14px;
  }

  .tattoo-icons{
    font-size:22px;
  }

  .login-form{
    padding:28px 22px;
    border-radius:14px;
  }

  .btn-login,
  .btn-back-website{
    padding:12px;
    font-size:15px;
  }
}

/* SignUp Page */
.ts2-auth-wrap{
  min-height:100vh;
  display:flex;
  background:#0f0f0f;
  color:#fff;
}

/* LEFT SIDE */
.ts2-left{
  flex:1;
  background-color: #FFFFFF;
  padding:60px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.ts2-left img{
  width:200px;
  margin-bottom:20px;
  transition:.4s;
}

.ts2-left img:hover{
  transform:scale(1.08);
}

.ts2-left h1{
  font-size:42px; /* same as login */
  margin-bottom:10px;
  color: #000000;
}

.ts2-left h1 span{
  color:#C77DFF;
}

.ts2-left p{
  font-size:16px;
  color:#000000;
}

/* RIGHT SIDE */
.ts2-right{
  flex:1;
  background:#141414; /* different color */
  display:flex;
  align-items:center;
  justify-content:center;
}

/* FORM */
.ts2-form{
  width:100%;
  max-width:400px;
}

.ts2-form h2{
  font-size:28px;
  color:#9F7AEA; /* different shade */
  margin-bottom:25px;
}

/* INPUT */
.ts2-input{
  display:flex;
  align-items:center;
  gap:10px;
  background:#F9FAFB;
  border:1px solid #222;
  padding:12px 16px;
  border-radius:5px;
  margin-bottom:15px;
}

.ts2-input i{
  color:#9F7AEA;
}

.ts2-input input{
  width:100%;
  background:none;
  border:none;
  outline:none;
  color:#fff;
}

/* BUTTONS */
.ts2-btns{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:10px;
}

.ts2-btn-main{
  background:#C77DFF;
  color:#000;
  border:none;
  padding:12px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

.ts2-btn-main:hover{
  opacity:.85;
}

.ts2-btn-back{
  text-align:center;
  padding:12px;
  border-radius:30px;
  border:2px solid #9F7AEA;
  color:#9F7AEA;
  text-decoration:none;
}

.ts2-btn-back:hover{
  background:#9F7AEA;
  color:#000;
}

/* TEXT */
.ts2-text{
  margin-top:18px;
  text-align:center;
  color:#9ca3af;
}

.ts2-text a{
  color:#C77DFF;
}

/* ===============================
   RESPONSIVE – SAME AS LOGIN PAGE
================================ */

/* TABLET */
@media (max-width: 992px){

  .ts2-auth-wrap{
    flex-direction:column;
  }

  .ts2-left{
    padding:40px 30px;
    align-items:center;
    text-align:center;
  }

  .ts2-left img{
    width:160px;
  }

  .ts2-left h1{
    font-size:34px; /* login page tablet size */
  }

  .ts2-right{
    padding:40px 20px;
  }

  .ts2-form{
    max-width:420px;
  }
}

/* MOBILE */
@media (max-width: 576px){

  .ts2-left{
    padding:30px 20px;
  }

  .ts2-left h1{
    font-size:28px; /* login page mobile size */
  }

  .ts2-left p{
    font-size:14px;
  }

  .ts2-right{
    padding:30px 15px;
  }

  .ts2-form{
    max-width:100%;
  }

  .ts2-input{
    padding:10px 14px;
  }

  .ts2-btn-main,
  .ts2-btn-back{
    padding:11px;
    font-size:15px;
  }
}

/* home 22 */

.home3-hero{
    background-image:url("../images/chu-chu-FhK6nTHdzJ4-unsplash.jpg");
     min-height:100svh;              /* ✅ mobile safe height */
  width:100%;
  position:relative;
  background-size:cover;          /* ✅ vertical overflow fix */
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

}
.home3-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:inherit;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
  transform:scale(1);
  animation:bgZoom 5s ease-in-out infinite alternate;
}

@keyframes bgZoom{
  from{ transform:scale(1); }
  to{ transform:scale(1.15); }
}

/* DARK OVERLAY */
.home3-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* CONTENT */
.home3-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding:20px;
  animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

.home3-content h1{
  
  margin-bottom:15px;
  letter-spacing:1px;
  color: #C77DFF;
  font-size:68px;
  font-weight:800;
  text-transform:uppercase;
}

.home3-content h1 span{
  color:#FFFFFF;
}

.home3-content p{
  font-size:17px;
  max-width:600px;
  margin:0 auto 30px;
  color:#e5e7eb;
}

/* RESPONSIVE */
@media(max-width:768px){
  .home3-content h1{
    font-size:40px;
  }
}

@media(max-width:480px){
  .home3-content h1{
    font-size:32px;
  }

  .home3-content p{
    font-size:15px;
  }
}

/* Home Page 2 */
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  
}

/* HERO SECTION */
.home2-hero{
  min-height:100svh;              /* ✅ mobile safe height */
  width:100%;
  position:relative;

  background-image:url("../images/haberdoedas-nOHWIdLs2_k-unsplash.jpg");
  background-size:cover;          /* ✅ vertical overflow fix */
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

/* background animation using transform (not size) */
.home2-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:inherit;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  z-index:0;
  transform:scale(1);
  animation:bgZoom 12s ease-in-out infinite alternate;
}

@keyframes bgZoom{
  from{ transform:scale(1); }
  to{ transform:scale(1.15); }
}

/* DARK OVERLAY */
.home2-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* CONTENT */
.home2-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding:20px;
  animation:fadeUp 1.2s ease;
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

.home2-content h1{
  
  margin-bottom:15px;
  letter-spacing:1px;
  
  font-size:68px;
  font-weight:800;
  text-transform:uppercase;
}

.home2-content h1 span{
  color:#C77DFF;
}

.home2-content p{
  font-size:17px;
  max-width:600px;
  margin:0 auto 30px;
  color:#e5e7eb;
}

/* BUTTON */
.btn-primary{
  background:#fff;
  color:#000;
  font-weight:600;
  font-size:14px;
  border-radius:5px;
  text-decoration:none;
  padding:12px 22px;
  transition:.3s ease;
}

.btn-primary:hover{
  background:#C77DFF;
  color:#fff;
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:768px){
  .home2-content h1{
    font-size:40px;
  }
}

@media(max-width:480px){
  .home2-content h1{
    font-size:32px;
  }

  .home2-content p{
    font-size:15px;
  }
}

/* ===== HOME 2 – INSTAGRAM GALLERY ===== */
.home2-ig{
  background:#0b0b0b;
  padding:90px 20px;
}

.home2-ig-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.home2-ig-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:50px;
}

/* CARD */
.home2-ig-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  cursor:pointer;
  transform:scale(1);
  animation:igFloat 6s ease-in-out infinite;
}

/* stagger animation */
.home2-ig-card:nth-child(odd){
  animation-delay:1.5s;
}

@keyframes igFloat{
  0%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-8px) scale(1.02); }
  100%{ transform:translateY(0) scale(1); }
}

.home2-ig-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .6s ease;
}
.home2-title{
    font-size: 35px;
    text-transform: uppercase;
    color: #C77DFF;
    font-weight: 600;
}
.home2-subtitle{
    font-size: 17px;
    color: #FFFFFF;
}



/* HOVER */
.home2-ig-card:hover img{
  transform:scale(1.15);
}

.home2-ig-card:hover .ig-overlay{
  opacity:1;
}

.home2-ig-card:hover .ig-overlay i{
  transform:scale(1);
}


/* RESPONSIVE */
@media(max-width:1024px){
  .home2-ig-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .home2-ig-grid{
    grid-template-columns:1fr;
  }

  .home2-ig-card img{
    height:230px;
  }
}

/* ===== Workflow Section ===== */
.workflow-section{
  background:#000000;
  padding:90px 0;
  color:#fff;
}

/* container */
.workflow-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* heading */
.workflow-heading{
  text-align:center;
  margin-bottom:60px;
  
}

.workflow-heading h2{
  font-size:33px;
  font-weight:700;
  color:#C77DFF;
  text-transform:uppercase;
  margin-bottom:10px;
  letter-spacing:1px;
}

.workflow-heading p{
  font-size:17px;
  color:#FFFFFF;
}

/* grid */
.workflow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* box */
.workflow-box{
  background:#111;
  padding:35px 25px;
  border-radius:14px;
  text-align:center;
  border:1px solid #222;
  transition:all 0.4s ease;
}

/* hover */
.workflow-box:hover{
  transform:translateY(-12px);
  background:#1a1a1a;
  border-color:#C77DFF;
}

/* number */
.step-count{
  font-size:42px;
  font-weight:800;
  color:#C77DFF;
  display:block;
  margin-bottom:15px;
}

/* title */
.workflow-box h3{
  font-size:20px;
  margin-bottom:10px;
  text-transform:uppercase;
}

/* text */
.workflow-box p{
  font-size:14px;
  color:#bbb;
  line-height:1.6;
}

/* ===== Responsive ===== */
@media(max-width:992px){
  .workflow-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .workflow-grid{
    grid-template-columns:1fr;
  }

  .workflow-heading h2{
    font-size:30px;
  }
}

/* ===== Experience Section ===== */
.ink-experience{
  background:#0a0a0a;
  padding:120px 0;
  color:#ffffff;
}

.ink-exp-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* left */
.ink-exp-left h2{
  font-size:33px;
  margin-bottom:20px;
  color:#C77DFF;
  font-weight:600;
  text-transform:uppercase;
}

.ink-exp-left p{
  color:#FFFFFF;
  line-height:1.8;
  text-align: justify;
  margin-bottom:18px;
  font-size:15px;
}

.ink-exp-sub{
  color:#9ca3af;
}


/* right */
.ink-exp-right img{
  width:100%;
  border-radius:22px;
  height:600px;
  object-fit:cover;
  animation:floatImg 5s ease-in-out infinite;
}

@keyframes floatImg{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
  100%{ transform:translateY(0); }
}

/* responsive */
@media(max-width:900px){
  .ink-exp-wrap{
    grid-template-columns:1fr;
  }

  .ink-exp-right{
    order:-1;
  }

  .ink-exp-left h2{
    font-size:34px;
  }
}
.ink-exp-btn {
    background-color: #FFFFFF;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    margin-top:20px;
    padding: 15px 18px;
    transition: all 0.3s ease;
}

.ink-exp-btn:hover {
    background-color: #C77DFF;
    color: #FFFFFF;
    transform: translateY(-2px);
    border-color: #000000;
}

/* cec sec */
/* ===============================
   CEO SECTION
================================= */
.ceo-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.ceo-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.ceo-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.ceo-img img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid #C77DFF;
}

.ceo-text {
  flex: 1;
}

.ceo-text h2 {
  font-size: 32px;
  color: #C77DFF;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.ceo-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.ceo-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===============================
   RESPONSIVE: TABLET & MOBILE
================================= */
@media (max-width: 1024px) {
  .ceo-content {
    flex-direction: column;
    
    
  }

  .ceo-img img {
    width: 300;
    height: 350px;
  }

  .ceo-text {
    margin-top: 20px;
    align-items: justify;
    
  }
}


