/*===========================*/
/*======SERVICES=======*/

/* ===========================
        HERO SECTION
=========================== */
/* ================= HERO SECTION ================= */
.hero-section {
  min-height: 100vh;
  background: #050505;
  display: flex;
  align-items: center;
  padding: 100px 8%;
  color: #fff;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* LEFT SIDE */
.kicker {
  color: #d7ac47;
  font-size: 34px;
  letter-spacing: 3px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-appointment {
  display: inline-block;
  padding: 12px 26px;
  background: #d7ac47;
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT IMAGE CARD (IMPORTANT PART) */
.hero-right {
  display: flex;
  justify-content: center;
}

.image-card {
  width: 100%;
  max-width: 520px;
  height: 520px;
  background: #0b0b0b;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transform: scale(1.05);
  transition: 0.6s ease;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  
  .image-card {
    width: 320px;
    height: 420px;
    margin-top: 30px;
  }

  .hero-left h1 {
    font-size: 36px;
  }
}







.service-blockss{
  background:#000;
  padding:100px 7%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  font-family:Inter,sans-serif;
}

/* MAIN CARD */
.services-card{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  padding:48px;
  transition:0.45s ease;
}

.services-card:hover{
  transform:translateY(-8px);
}

/* LEFT */
.premium-left{
  background:
  linear-gradient(135deg,#121212,#050505);
  border:1px solid rgba(255,215,0,.15);
  box-shadow:
  0 25px 80px rgba(0,0,0,.75),
  inset 0 1px 0 rgba(255,255,255,.05);
}

/* RIGHT */
.premium-right{
  background:
  radial-gradient(circle at top right,rgba(255,215,0,.08),transparent 35%),
  linear-gradient(135deg,#090909,#111);
  border:1px solid rgba(255,215,0,.12);
  box-shadow:
  0 25px 80px rgba(0,0,0,.75);
}

/* TEXT */
.top-label{
  display:inline-block;
  color:#fff;
  opacity:.7;
  font-size:12px;
  letter-spacing:3px;
  margin-bottom:18px;
}

.gold{
  color:#d9ac47;
  opacity:1;
}

.services-card h2{
  color:#fff;
  font-size:46px;
  line-height:1.1;
  margin-bottom:18px;
  font-weight:700;
}

.highlight-line{
  color:#d9ac47;
  font-size:20px;
  line-height:1.7;
  margin-bottom:20px;
}

.services-card p{
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.9;
}

/* LEFT QUOTE */
.premium-quote{
  margin-top:30px;
  padding:24px;
  border-left:3px solid #d9ac47;
  background:rgba(255,255,255,.02);
  border-radius:14px;
}

.premium-quote small{
  display:block;
  color:#fff;
  opacity:.65;
  margin-bottom:8px;
  font-size: 16px;
}

.premium-quote strong{
  color:#d9ac47;
  font-size:20px;
}

/* CREATIVE GRID PATTERN */
.line-grid{
  position:absolute;
  width:220px;
  height:220px;
  right:-30px;
  bottom:-30px;
  background-image:
  linear-gradient(rgba(255,215,0,.08) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,215,0,.08) 1px, transparent 1px);
  background-size:22px 22px;
  transform:rotate(15deg);
  mask-image:radial-gradient(circle,black 45%,transparent 85%);
}

/* CORNER GLOW */
.corner-glow{
  position:absolute;
  width:220px;
  height:220px;
  top:-80px;
  right:-80px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,215,0,.18),transparent 70%);
}

/* RIGHT ORBIT GRID */
.strategy-wrap{
  margin-top:30px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.orbit-card{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.06);
  transition:0.4s ease;
  backdrop-filter:blur(10px);
}

.orbit-card:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:rgba(255,215,0,.28);
  box-shadow:0 15px 35px rgba(255,215,0,.08);
}

.orbit-card span{
  color:#d9ac47;
  font-size:13px;
  letter-spacing:2px;
  display:block;
  margin-bottom:10px;
  font-weight:700;
}

.orbit-card h3{
  color:#d9ac47;
  font-size:24px;
  margin-bottom:10px;
}

.orbit-card p{
  font-size:15px;
  line-height:1.8;
  margin:0;
}

/* RESPONSIVE */
@media(max-width:991px){
.service-blockss{
  grid-template-columns:1fr;
}
.strategy-wrap{
  grid-template-columns:1fr;
}
.service-card h2{
  font-size:36px;
}
}

@media(max-width:600px){
.service-blocks{
  padding:70px 20px;
}
.services-card{
  padding:28px;
}
.services-card h2{
  font-size:30px;
}
.highlight-line{
  font-size:17px;
}
}



.container{
    max-width:1200px;
    margin:auto;
    padding-top: 60px;
    padding-bottom: 80px;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:60px;
    position:relative;
}

.service-box{
    text-align:center;
    position:relative;
    opacity:0;
    transform:translateY(40px);
    transition:0.6s ease;
}

/* Circle Icon */
.icon-circle{
    width:110px;
    height:110px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

/* Half Border Effect */
.icon-circle::before{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    border-radius:50%;
    border:8px solid #d9ac47;
    border-right-color:transparent;
    border-bottom-color:transparent;
    transform:rotate(45deg);
}

/* Icon */
.icon-circle img{
    width:50px;
    height: 50px;
    color:black;
}

/* Title Label */
.service-title{
    display:inline-block;
    padding:6px 20px;
    margin:15px 0;
    font-weight:bold;
    border-radius:4px;
}

/* Different Colors */
.service-box:nth-child(1) .service-title{ background:#d9ac47; }
.service-box:nth-child(2) .service-title{ background:#d9ac47; }
.service-box:nth-child(3) .service-title{ background:#d9ac47; }
.service-box:nth-child(4) .service-title{ background:#d9ac47; }

p{
    font-size:15px;
    line-height:1.6;
    opacity:0.9;
}

/* Dotted connector */
.service-box:not(:first-child)::before{
    content:"";
    position:absolute;
    top:55px;
    left:-60px;
    width:80px;
    border-top:2px dashed rgba(255,255,255,0.6);
}

@media(max-width:768px){
    .service-box::before{
        display:none;
    }
}

/* Hover Animation */
.service-box:hover .icon-circle{
    transform:scale(1.1);
    transition:0.4s;
}



.services-cap h3{
  color: #d9ac47;
}




.process-step img{
  width: 100px;
  height: 100px;
}




.approach-section{
  background:#000;
  padding:100px 5%;
  font-family:Inter,sans-serif;
}

/* TITLE */
.approach-head{
  text-align:center;
  margin-bottom:70px;
}

.mini-title{
  color:#d4af37;
  letter-spacing:1px;
  font-size:20px;
  display:block;
  margin-bottom:15px;
}

.approach-head h2{
  color:#fff;
  font-size:40px;
  line-height:1;
}

.approach-head h2 span{
  color:#d9ac47;
}

/* GRID */
.reverse-flow{
  display:grid;
  grid-template-columns:1.2fr repeat(4,1fr);
  gap:25px;
  position:relative;
  align-items:start;
}

/* LINE START FROM LOGO */
.main-line{
  position:absolute;
  top:47px;
  left:17%;
  right:4%;
  height:2px;
  background:linear-gradient(to right,
  rgba(212,175,55,.9),
  rgba(212,175,55,.15));
  z-index:0;
}

/* LOGO */
.logo-side{
  text-align:center;
  position:relative;
  z-index:2;
}

.logo-ring{
  width:140px;
  height:140px;
  border-radius:50%;
  border:2px solid #d4af37;
  color:#d4af37;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:62px;
  font-weight:700;
  margin:auto;
  box-shadow:0 0 35px rgba(212,175,55,.14);
}

.logo-side h3{
  color:#d4af37;
  font-size:34px;
  margin-top:18px;
}

.logo-side span{
  color:#fff;
  opacity:.7;
  letter-spacing:4px;
  font-size:13px;
}

/* STEPS */
.process-step{
  text-align:center;
  position:relative;
  z-index:2;
}

.hex-icon{
  width:95px;
  height:95px;
  margin:auto;
  clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);
  background:linear-gradient(145deg,#181818,#090909);
  border:1px solid rgba(212,175,55,.25);
  color:#d4af37;
  font-size:34px;
  display:flex;
  align-items:center;
  justify-content:center;
}



.info-card{
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,.06);
  border-radius:22px;
  padding:28px;
  min-height:100px;
}

.info-card h4{
  color:#fff;
  font-size:26px;
  margin-bottom:15px;
}

.info-card p{
  color:rgba(255,255,255,.72);
  line-height:1.8;
  font-size: 16px;
}

/* MOBILE */
@media(max-width:1300px){
.reverse-flow{
  grid-template-columns:1fr 1fr;
}
.main-line{display:none;}
.logo-side{
  grid-column:span 2;
}
}

@media(max-width:700px){
.reverse-flow{
  grid-template-columns:1fr;
}
.logo-side{
  grid-column:span 1;
}
.approach-head h2{
  font-size:32px;
}
}



.section-heading{
  max-width:900px;
  margin:0 auto 70px;
  text-align:center;
  padding:0 20px;
}

.section-heading h3{
  color:#d4af37;
  font-size:40px;
  font-weight:600;
  line-height:1.2;
  margin-bottom:22px;
  letter-spacing:-1px;
}

.section-heading p{
  color:#fff;
  font-size:20px;
  line-height:1.9;
  opacity:.82;
  max-width:760px;
  margin:0 auto;
}

/* MOBILE */
@media(max-width:768px){

.section-heading{
  margin-bottom:50px;
}

.section-heading h3{
  font-size:34px;
}

.section-heading p{
  font-size:17px;
  line-height:1.8;
}

}