/* General Styles */
:root {
  /* Typography */
  --font-family-primary: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-size-base: 16px;
  --font-weight-base: 400;
  --font-line-height-base: 24px;
  
  /* Typography Scale */
  --font-size-xs: 14px;
  --font-size-sm: 16px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 48px;
  --font-size-4xl: 64px;
  --font-size-5xl: 80px;
  
  /* Color Palette */
  --color-text-primary: oklch(0.1 0 0);
  --color-text-secondary: #ffffff;
  --color-text-tertiary: oklch(0.373 0.034 259.733);
  --color-text-inverse: oklch(0.446 0.043 257.281);
  --color-surface-base: #000000;
  --color-surface-muted: oklch(1 0 0);
  --color-surface-raised: #212221;
  --color-border-default: oklch(0.922 0 0);
  --color-focus-ring: oklab(0.570075 -0.0669026 -0.0958418 / 0.5);
  
  /* Spacing Scale */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 96px;
  --space-8: 128px;
  
  /* Radius */
  --radius-xs: 10px;
  --radius-sm: 12px;
  --radius-md: 16px;
  
  /* Shadow */
  --shadow-1: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
  
  /* Motion Duration */
  --motion-duration-instant: 150ms;
  --motion-duration-fast: 300ms;
  --motion-duration-normal: 400ms;
  --motion-duration-slow: 500ms;
  
  /* Legacy colors for backward compatibility */
  --primary-color: #FFA500;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --text-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  color: var(--color-text-primary);
  line-height: var(--font-line-height-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  scroll-behavior: smooth;
}

/*==========================================
        GLOBAL RESET & STRUCTURE
===========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

/*==========================================
GLOBAL CONTAINER
(use this everywhere instead of relying only on Bootstrap's .container)
===========================================*/

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/*==========================================
GLOBAL SECTION SPACING
(single source of truth for vertical rhythm)
===========================================*/

section{
    padding:60px 0;
}

/* Sections that need less space when stacked directly against each other */
section + section{
    padding-top:0;   /* top padding cancels when two sections touch, avoiding double-gap */
}

/*==========================================
GLOBAL HEADING SPACING
===========================================*/

.section-title,
section h2{
    margin-bottom:12px;
}

.section-title + p,
section h2 + p{
    margin-bottom:40px;
}

/*==========================================
GLOBAL RESPONSIVE SPACING
===========================================*/

@media(max-width:768px){

section{
    padding:40px 0;
}

.container{
    padding:0 16px;
}

}



/* Navbar */
.navbar {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: var(--space-3) 0;
}


.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);

  font-weight: 700;
  color: #1a1a1a !important;
  font-size: var(--font-size-xl);
  font-family: var(--font-family-primary);
}

.navbar-brand:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.nav-link {
  color: #1a1a1a !important;
  margin: 0 var(--space-3);
  transition: color var(--motion-duration-fast) ease;
  font-weight: 600;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 4px;
  border-radius: var(--radius-xs);
}

.nav-link.active {
  color: var(--primary-color) !important;
  border-bottom: 2px solid var(--primary-color);
}



/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%), url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-text-secondary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}





.hero > div {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
  padding: var(--space-2) var(--space-4);
  border-radius: 50px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  word-spacing: 0.1em;
}


.hero h1 .accent {
  color: #60a5fa;
  display: block;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-6);
  color: #d1d5db;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--color-text-secondary);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--motion-duration-fast) ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  text-align: center;
  margin: 0 var(--space-3);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  background-color: #ff9500;
  border-color: #ff9500;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 165, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.3);

}

.btn-primary-custom:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.btn-primary-custom:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary-custom {
  background-color: transparent;
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--motion-duration-fast) ease;
  border: 2px solid white;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  text-align: center;
  margin: 0 var(--space-3);
  position: relative;
  overflow: hidden;
}

.btn-secondary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-secondary-custom:hover::before {
  left: 100%;
}

.btn-secondary-custom:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary-custom:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.btn-secondary-custom:active {
  transform: translateY(-1px) scale(0.98);
}


@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(calc(var(--space-4) * -1));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(var(--space-4));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatingDelay {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3), 0 0 20px rgba(255, 165, 0, 0.2);
  }
  50% {
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.5), 0 0 30px rgba(255, 165, 0, 0.4);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box img {
    width: 100%;
    max-width: 600px;
    animation: floatImage 4s ease-in-out infinite;
    will-change: transform;
    border-radius: 20px;

}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.custom-btn {
    background-color: rgb(253, 177, 16) !important;
    border-color: rgb(253, 177, 16) !important;
    color: #fff !important;
}




/*==========================================
        DIGITAL SOLUTIONS SECTION
===========================================*/

.digital-section{
    background:#ffa500;
    padding:70px 0;
    overflow:hidden;
}

.digital-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}


.digital-content .section-title{
    text-align:left;
    color:#1b2130;
    font-size:40px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.digital-content .section-title::after{
    content:"";
    display:block;
    width:60px;
    height:4px;
    background:#161616;
    margin:14px 0 0 0;   /* left-aligned underline, not auto-centered */
    border-radius:2px;
}

/*==========================================
LEFT CONTENT
===========================================*/

.digital-content{
    width:48%;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    background:#1b2130;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.digital-content p{
    color:#0e0e0e;
    line-height:28px;
    font-size:16px;
    font-weight: 500;
    margin-bottom:18px;
}


.service-section{
    font-size: 50px;
    font-weight:600;
    padding-top:60px;
}

.text-we{
  color:#FFA500;
 
}
/*==========================================
COUNTERS
===========================================*/

.counter-wrapper{
    display:flex;
    gap:40px;
    margin:28px 0;
}

.counter-box h3{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin-bottom:4px;
}

.counter-box span{
    color:black;
    font-weight:500;
    font-size:14px;
}

/*==========================================
BUTTON
===========================================*/

.project-btn{
    display:inline-block;
    text-decoration:none;
    padding:14px 32px;
    background:#070707;
    color:#fff;
    border-radius:50px;
    transition:.4s;
    font-weight:600;
    font-size:15px;
}

.project-btn:hover{
    background:#0f56df;
    color:#fff;
    transform:translateY(-5px);
}

/*==========================================
RIGHT SIDE
===========================================*/

.digital-animation{
    width:52%;
    height:480px;
    position:relative;
}

/*==========================================
CIRCLES
===========================================*/

/*==========================================
CIRCLES - ALTERNATING ROTATION
===========================================*/

.ring{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    border:2px solid transparent;
}

/* Ring 1 - rotates counter-clockwise, no color (plain) */
.ring1{
    width:420px;
    height:420px;
    border:2px dashed rgba(255,255,255,.5);   /* dashed border makes rotation visible */
    animation:rotateCCW 25s linear infinite;
}
/* Ring 2 - rotates clockwise, with colored gradient sweep */

    .ring2{
    width:310px;
    height:310px;
    border:3px dashed rgba(255,255,255,.5);
    border-radius:50%;
    background:transparent;
    animation:rotateCW 20s linear infinite;
}


/* Ring 3 - rotates counter-clockwise, no color (plain) */
.ring3{
    width:200px;
    height:200px;
    border:2px dashed  rgba(255,255,255,.5);
    animation:rotateCCW 15s linear infinite;
}

@keyframes rotateCW{
    from{ transform:translate(-50%,-50%) rotate(0deg); }
    to{ transform:translate(-50%,-50%) rotate(360deg); }
}

@keyframes rotateCCW{
    from{ transform:translate(-50%,-50%) rotate(360deg); }
    to{ transform:translate(-50%,-50%) rotate(0deg); }
}

/*==========================================
CENTER LOGO
===========================================*/

.center-logo{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:135px;
    height:135px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:
    0 0 20px #1565ff,
    0 0 45px rgba(21,101,255,.4);
    animation:logoFloat 4s ease-in-out infinite;
}

.center-logo{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:135px;
    height:135px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;          /* keeps the image clipped to the circle */
    box-shadow:
        0 0 20px #1565ff,
        0 0 45px rgba(21,101,255,.4);
    animation:logoFloat 4s ease-in-out infinite;
}

.center-logo img{
    width:100%;
    height:100%;
    object-fit:cover;         /* fills the circle fully without distortion */
}

@keyframes logoFloat{
    0%{ transform:translate(-50%,-50%) translateY(0); }
    50%{ transform:translate(-50%,-50%) translateY(-10px); }
    100%{ transform:translate(-50%,-50%) translateY(0); }
}

/*==========================================
FLOATING CARDS
===========================================*/

.floating-card{
    position:absolute;
    background:#1d2230;
    color:#fff;
    padding:12px 20px;
    border-radius:14px;
    font-weight:600;
    font-size:14px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 12px 28px rgba(0,0,0,.35);
    transition:.4s;
}

.floating-card:hover{
    transform:scale(1.05);
    box-shadow:
    0 12px 32px rgba(21,101,255,.35);
}

/*==========================================
POSITIONS
===========================================*/

.website{
    top:25px;
    left:60px;
    animation:floatOne 4s ease-in-out infinite;
}

.graphic{
    top:70px;
    right:5px;
    animation:floatTwo 5s ease-in-out infinite;
}

.ecommerce{
    bottom:80px;
    left:70px;
    animation:floatThree 4.5s ease-in-out infinite;
}

.seo{
    bottom:45px;
    right:20px;
    animation:floatFour 5.2s ease-in-out infinite;
}

/*==========================================
FLOAT ANIMATIONS
===========================================*/

@keyframes floatOne{
    0%{ transform:translateY(0); }
    50%{ transform:translateY(-16px); }
    100%{ transform:translateY(0); }
}

@keyframes floatTwo{
    0%{ transform:translateY(0); }
    50%{ transform:translateY(16px); }
    100%{ transform:translateY(0); }
}

@keyframes floatThree{
    0%{ transform:translateY(0); }
    50%{ transform:translateY(-18px); }
    100%{ transform:translateY(0); }
}

@keyframes floatFour{
    0%{ transform:translateY(0); }
    50%{ transform:translateY(16px); }
    100%{ transform:translateY(0); }
}

/*==========================================
RESPONSIVE
===========================================*/

@media(max-width:992px){

.digital-wrapper{
    flex-direction:column;
}

.digital-content,
.digital-animation{
    width:100%;
}

.digital-animation{
    margin-top:60px;
    height:450px;
}

.digital-content{
    text-align:center;
}

.counter-wrapper{
    justify-content:center;
}

}

@media(max-width:768px){

.digital-section{
    padding:60px 0;
}

.digital-content h2{
    font-size:36px;
}

.digital-content p{
    font-size:15px;
}

.counter-wrapper{
    flex-direction:column;
    gap:20px;
}

.digital-animation{
    transform:scale(.72);
    transform-origin:center;
    height:360px;
}

}

.website{

    left:30px;
}

.ecommerce{

    left:30px;
}

.graphic{

    right:0;
}

.seo{

    right:10px;
}

/*==========================================
        TESTIMONIAL SECTION
===========================================*/

.testimonial-section{
    background:#fff;
    overflow:hidden;
}

.testimonial-header{
    text-align:center;
    margin-bottom:50px;
}

.testimonial-header .section-title{
    font-size:var(--font-size-3xl);
    font-weight:700;
    margin-bottom:12px;
    letter-spacing: -0.02em;
}

.testimonial-header .highlight{
    color:#FFA500;
}

.testimonial-subtitle{
    color:#666;
    font-size:16px;
}

/*==========================================
SCROLL TRACK
===========================================*/

.testimonial-track-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scrollLeft 30s linear infinite;
}

.testimonial-track-wrapper:hover .testimonial-track{
    animation-play-state:paused;
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/*==========================================
CARD
===========================================*/

.testimonial-card{
    flex:0 0 auto;
    width:360px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:30px;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
    transition:.3s;
}

.testimonial-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transform:translateY(-5px);
}

.quote-icon{
    width:48px;
    height:48px;
    background:linear-gradient(135deg,#ffa500,#c97800);
    color:#fff;
    font-size:28px;
    font-weight:700;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-family:Georgia, serif;
}

.testimonial-text{
    color:#444;
    font-size:15px;
    line-height:26px;
    margin-bottom:25px;
    min-height:100px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:12px;
}

.testimonial-author img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-author span{
    font-size:14px;
    font-weight:600;
    color:#1b2130;
}

/*==========================================
RESPONSIVE
===========================================*/

@media(max-width:768px){

.testimonial-header .section-title{
    font-size:28px;
}

.testimonial-card{
    width:280px;
    padding:22px;
}

.testimonial-text{
    font-size:14px;
    min-height:auto;
}

}



/*==========================================
        WHY CHOOSE SECTION
===========================================*/

.why-choose-section{
    background:#0d0f1a;
    padding:70px 0;
}

.why-choose-header{
    text-align:center;
    margin-bottom:50px;
}

.why-choose-header .section-title{
    font-size:var(--font-size-3xl);
    font-weight:700;
    color:#fff;
    margin-bottom:12px;
    letter-spacing: -0.02em;
}

.why-choose-header .highlight{
    color:#fdb110;
}

.why-choose-subtitle{
    color:#c7c7c7;
    font-size:15px;
}

/*==========================================
WRAPPER
===========================================*/

.why-choose-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

/*==========================================
LEFT LIST
===========================================*/

.why-choose-list{
    width:50%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.why-choose-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#171a2b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    padding:22px;
    transition:.3s;
}

.why-choose-item:hover{
    border-color:rgba(253,177,16,.4);
    transform:translateY(-3px);
}

.why-icon{
    width:48px;
    height:48px;
    flex-shrink:0;
    background:linear-gradient(135deg,#fdb110,#fd7e14);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    box-shadow:0 8px 18px rgba(253,177,16,.3);
}

.why-text h5{
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin-bottom:6px;
}

.why-text p{
    color:#a8a8b3;
    font-size:14px;
    line-height:22px;
    margin:0;
}

/*==========================================
RIGHT IMAGE
===========================================*/
.why-choose-image{
    width:50%;
    position:relative;
    animation:floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-18px);
    }
    100%{
        transform:translateY(0px);
    }
}

.why-choose-image img{
    width:100%;
    border-radius:100px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
    transition:box-shadow 4s ease-in-out;
    animation:glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse{
    0%{
        box-shadow:0 20px 50px rgba(0,0,0,.4);
    }
    50%{
        box-shadow:0 25px 60px rgba(253,177,16,.35), 0 20px 50px rgba(0,0,0,.4);
    }
    100%{
        box-shadow:0 20px 50px rgba(0,0,0,.4);
    }
}

.experience-badge{
    position:absolute;
    bottom:-20px;
    right:-20px;
    background:linear-gradient(135deg,#fdb110,#fd7e14);
    color:#fff;
    padding:20px 28px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 15px 35px rgba(253,177,16,.4);
    animation:badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
    100%{
        transform:scale(1);
    }
}

.experience-badge h3{
    font-size:26px;
    font-weight:800;
    margin:0;
}

.experience-badge span{
    font-size:12px;
    font-weight:600;
    display:block;
    margin-top:2px;
}

/*==========================================
RESPONSIVE
===========================================*/

@media(max-width:992px){

.why-choose-wrapper{
    flex-direction:column;
}

.why-choose-list,
.why-choose-image{
    width:100%;
}

.experience-badge{
    right:15px;
    bottom:-15px;
}

}

@media(max-width:576px){

.why-choose-header .section-title{
    font-size:28px;
}

.why-choose-item{
    padding:18px;
    gap:14px;
}

.why-icon{
    width:42px;
    height:42px;
    font-size:17px;
}

.why-text h5{
    font-size:15px;
}

.why-text p{
    font-size:13px;
}

}

/*==========================================
        FAQ SECTION
===========================================*/
/*==========================================
        FAQ SECTION
===========================================*/

.faq-section{
    padding:70px 0;
    background:#fff;
}

.faq-header{
    text-align:left;
    margin-bottom:45px;
}

.faq-header .section-title{
    font-size:var(--font-size-3xl);
    font-weight:700;
    color:#1b2130;
    margin-bottom:12px;
    text-align:left;
    letter-spacing: -0.02em;
}

.faq-header .highlight{
    color:#FFA500;
}

.faq-subtitle{
    font-size:15px;
    text-align:left;
}

/*==========================================
WRAPPER (now sits inside col-9, no max-width/auto margin needed)
===========================================*/

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/*==========================================
FAQ ITEM
===========================================*/

.faq-item{
    border:1px solid #e2e2e2;
    border-radius:14px;
    overflow:hidden;
    transition:border-color .3s;
}

.faq-item.active{
    border-color:#FFA500;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 24px;
    cursor:pointer;
    text-align:left;
}

.faq-question h5{
    font-size:16px;
    font-weight:700;
    color:#1b2130;
    margin:0;
    transition:color .3s;
    text-align:left;
}

.faq-item.active .faq-question h5{
    color:#FFA500;
}

.faq-icon{
    color:#FFA500;
    font-size:14px;
    transition:transform .35s ease;
    flex-shrink:0;
    margin-left:16px;
}

.faq-item.active .faq-icon{
    transform:rotate(180deg);
}

/*==========================================
ANSWER (smooth grid-based collapse)
===========================================*/

.faq-answer{
    display:grid;
    grid-template-rows:minmax(0, 0fr);
    max-height:none;
    overflow:hidden;
    transition:grid-template-rows .4s ease;
    padding:0 24px;
}

.faq-item.active .faq-answer{
    grid-template-rows:minmax(0, 1fr);
}

.faq-answer p{
    min-height:0;
    overflow:hidden;
    padding:0 0 20px 0;
    margin:0;
    color:#555;
    font-size:14.5px;
    line-height:24px;
}

/*==========================================
SIDE IMAGE (col-3)
===========================================*/

.faq-image-box{
    position:sticky;
    top:100px;
}

.faq-image-box img{
    width:100%;
    height: 470px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

/*==========================================
RESPONSIVE
===========================================*/

@media(max-width:991px){

.faq-image-box{
    margin-top:30px;
    position:static;
}

}

@media(max-width:576px){

.faq-header .section-title{
    font-size:26px;
}

.faq-question{
    padding:16px 18px;
}

.faq-question h5{
    font-size:14.5px;
}

.faq-answer p{
    padding:0 18px 16px;
}

}

/*==========================================
        WHATSAPP CTA SECTION
===========================================*/

.whatsapp-cta-section{
    padding:60px 0;
    background:#242128;
}

.whatsapp-cta-box{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    background:#fff;
    border-radius:24px;
    padding:45px 60px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* Gradient glow background (green fading into white) */
.whatsapp-cta-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 0% 0%, rgba(37,211,102,.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(37,211,102,.18), transparent 55%);
    z-index:0;
}

.whatsapp-cta-content,
.whatsapp-cta-action{
    position:relative;
    z-index:1;
}

/*==========================================
LEFT CONTENT
===========================================*/

.whatsapp-cta-content{
    max-width:650px;
}

.whatsapp-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(37,211,102,.12);
    color:#1f9c53;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.whatsapp-badge i{
    font-size:15px;
}

.whatsapp-cta-title{
     text-align: start;
    font-size:32px;
    font-weight:600;
    color:#1b2130;
    margin-bottom:14px;
    line-height:1.25;
}

.whatsapp-cta-title .highlight{
  color:#1f9c53;
;
}
.whatsapp-cta-text{
    color:#5c5c5c;
    font-size:16px;
    line-height:26px;
}

.whatsapp-cta-title::after{
    content:"";
    display:block;
    width:60px;
    height:4px;
    background:#1f9c53;
    margin:12px 0 0 0;   /* left-aligned instead of centered */
}
/*==========================================
BUTTON
===========================================*/

.whatsapp-cta-action{
    flex-shrink:0;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#25D366,#128C4A);
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:700;
    font-size:16px;
    box-shadow:0 12px 25px rgba(37,211,102,.35);
    transition:.35s;
    white-space:nowrap;
}

.whatsapp-btn i{
    font-size:20px;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(37,211,102,.45);
    color:#fff;
}

/*==========================================
RESPONSIVE
===========================================*/

@media(max-width:992px){

.whatsapp-cta-box{
    flex-direction:column;
    text-align:center;
    padding:40px 30px;
}

.whatsapp-cta-content{
    max-width:100%;
}

.whatsapp-badge{
    margin-left:auto;
    margin-right:auto;
}

}

@media(max-width:576px){

.whatsapp-cta-title{
    font-size:26px;
}

.whatsapp-cta-text{
    font-size:15px;
}

.whatsapp-btn{
    padding:14px 26px;
    font-size:15px;
}

}

/*==========================================
        PORTFOLIO SECTION
===========================================*/

.btn-buy {
    text-decoration: none;
}

.btn-buy:hover {
    text-decoration: underline;
}


/*=========================
        PORTFOLIO
==========================*/

.portfolio-section{

    


    overflow:hidden;
}

.portfolio-header{

    text-align:center;

    margin-bottom:50px;
}

.portfolio-tag{

    display:inline-block;

    padding:10px 28px;

    border:1px solid rgba(255,165,0,.35);

    border-radius:50px;

    color:rgb(255,165,0);

    letter-spacing:2px;

    font-size:14px;

    margin-bottom:25px;

    background:rgba(255,165,0,.08);
}

.portfolio-title{

    font-size:var(--font-size-3xl);
    color:black;
    font-weight:700;
    margin-bottom:20px;
}

.portfolio-title span{
    color:rgb(255,165,0);
}

.portfolio-header p{
    width:650px;
    max-width:100%;
    margin:auto;
    color:#000000;
    font-size:18px;
}


/* Grid */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;
}


/* Card */

.portfolio-card{

    background:rgba(255,255,255,.03);

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.06);

    transition:.45s;

    position:relative;
}

.portfolio-card:hover{

    transform:translateY(-12px);

    border-color:rgb(255,165,0);

    box-shadow:0 20px 60px rgba(255,165,0,.25);
}


/* 1:1 Image */

.portfolio-image{

    position:relative;

    aspect-ratio:1/1;

    overflow:hidden;
}

.portfolio-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;
}

.portfolio-card:hover img{

    transform:scale(1.08);
}


/* Overlay */

.portfolio-overlay{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #0b1020;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,165,0,.2);
}
.portfolio-overlay h4{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-overlay p{
    color: #b8c0d4;
    font-size: 15px;
    margin: 0;
}


.portfolio-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:rgb(255,165,0);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

    color:#fff;

    box-shadow:0 0 30px rgba(255,165,0,.55);
}


.portfolio-overlay h4{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:10px;
}

.portfolio-overlay p{

    color:#d0d6e4;

    font-size:16px;
}


/* Button */

.portfolio-btn{

    display:inline-block;

    padding:18px 45px;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    background:linear-gradient(135deg,
    rgb(255,165,0),
    #ff8f00);

    transition:.35s;
}

.portfolio-btn:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(255,165,0,.45);
}


/* Responsive */

@media(max-width:992px){

.portfolio-title{

font-size:45px;

}

}

@media(max-width:768px){

.portfolio-section{

padding:80px 0;

}

.portfolio-title{

font-size:38px;

}

.portfolio-header{

margin-bottom:45px;

}

.portfolio-grid{

grid-template-columns:1fr;

}

.portfolio-overlay{

padding:25px;

}

}

/*==========================================
        CONTACT SECTION
===========================================*/

.contact-section{
    background:#fff;
}

.contact-header{
    text-align:center;
    margin-bottom:60px;
}

.contact-header .section-title{
    font-size:var(--font-size-3xl);
    font-weight:700;
    color:#1b2130;
    margin-bottom:12px;
}

.contact-header .highlight{
    color:#1565ff;
}

.contact-subtitle{
    color:#555;
    font-size:16px;
}

/*==========================================
WRAPPER
===========================================*/

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    gap:60px;
}

/*==========================================
LEFT INFO
===========================================*/
.contact-info{
    width:40%;
}

.contact-info h3{
    font-size:22px;
    font-weight:700;
    color:#1b2130;
    margin-bottom:16px;
}

.contact-info > p{
    color:#555;
    font-size:15px;
    line-height:25px;
    margin-bottom:26px;
}

.contact-detail{
    display:block;
    margin-bottom:20px;
    margin-left:0;
    padding-left:0;
    color:#333;
    font-size:15px;
    line-height:24px;
    text-align:left;
}

.contact-detail i{
    color: #FFA500;   /* remove icon reserved space entirely */
}

/*==========================================
RIGHT FORM
===========================================*/

.contact-form-box{
    width:55%;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    font-family:inherit;
    color:#333;
    outline:none;
    transition:.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#999;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#1565ff;
    box-shadow:0 0 0 3px rgba(21,101,255,.12);
}

.contact-form textarea{
    min-height:130px;
    resize:vertical;
}

/*==========================================
BUTTON
===========================================*/

.send-btn{
    align-self:flex-start;
    background:rgba(255, 165, 0, 1);
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    box-shadow:rgba(255, 165, 0, 1);
    transition:.35s;
    margin-top:6px;
}

.send-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(255, 219, 18, 0.45);
}



/*==========================================
RESPONSIVE
===========================================*/

@media(max-width:992px){

.contact-wrapper{
    flex-direction:column;
}

.contact-info,
.contact-form-box{
    width:100%;
}

}

@media(max-width:576px){

.contact-header .section-title{
    font-size:28px;
}

.contact-info h3{
    font-size:20px;
}

.contact-form input,
.contact-form textarea{
    padding:14px 16px;
    font-size:14px;
}

.send-btn{
    width:100%;
    text-align:center;
}

}



.service-card, .portfolio-card {
  background: var(--color-surface-muted);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: all var(--motion-duration-fast) ease;
  margin-bottom: var(--space-6);
}

.service-card:hover, .portfolio-card:hover {
  transform: translateY(calc(var(--space-3) * -1));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:focus-within, .portfolio-card:focus-within {
  box-shadow: 0 0 0 2px var(--color-surface-muted), 0 0 0 4px var(--color-focus-ring);
}

.service-card-body, .portfolio-card-body {
  padding: var(--space-6);
}

.service-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-lg);
  font-family: var(--font-family-primary);
}

/* Service Package Cards */
.service-package-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--motion-duration-fast) ease;
  position: relative;
}

.service-package-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.service-package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9500 100%);
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
}

.package-badge.badge-featured {
  background: linear-gradient(135deg, #ec4899 0%, var(--primary-color) 100%);
}

.package-header {
  padding: var(--space-5) var(--space-5) var(--space-3);
  border-bottom: 1px solid #f0f0f0;
}

.package-header h5 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-surface-base);
}

.package-subtitle {
  font-size: var(--font-size-sm);
  margin: 0;
  font-weight: 500;
}

.package-body {
  padding: var(--space-5);
}

.package-description {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.package-demo {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: #f9f9f9;
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
  border-left: 3px solid var(--primary-color);
}

.calendar-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.demo-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-surface-base);
}

.demo-date {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap:4px;

}

.service-package-card{
    transform:none !important;
    scale:1 !important;
}

.service-package-card:hover{
    transform:translateY(-10px) !important;
}



.tag {
  display: inline-block;
  background: #e3f2fd;
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  transition: all var(--motion-duration-fast) ease;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
}

.package-stats {
  display: flex;
  justify-content: space-around;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding: var(--space-3) 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat i {
  font-size: 1.2rem;
}

.stat span {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.package-pricing {
  text-align: center;
  margin-bottom: var(--space-4);
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
}

.price-note {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.btn-package {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: all var(--motion-duration-fast) ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.btn-package:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-package.btn-featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff9500 100%);
  border: 2px solid transparent;
}

.btn-package.btn-featured:hover {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Section Styling */
section {
  padding: var(--space-7) 0;
}

section h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  /*margin-bottom: var(--space-6);*/
  text-align: center;
  color: var(--color-surface-base);
  font-family: var(--font-family-primary);
  letter-spacing: -0.02em;
  margin-top: 30px;
}

section.why-section h2.main-title::after{
    margin:14px 0 0 0;
}

/*section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: var(--space-3) auto 0;
}*/

.section-light {
  background-color: var(--color-surface-muted);
}

/* About Section */
.service-hero h2::after{
    display:none !important;
}
.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.about-text h3 {
  color: var(--primary-color);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-3);
  font-weight: 700;
  font-family: var(--font-family-primary);
  letter-spacing: -0.01em;
}

.about-text p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
  color: #666;
  line-height: 1.8;
  font-family: var(--font-family-primary);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: var(--space-3) 0;
  color: #666;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  line-height: 1.8;
}

.feature-list li::before {
  content: '✓ ';
  color: var(--primary-color);
  font-weight: 700;
  margin-right: var(--space-2);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group label {
  font-weight: 600;
  color: var(--color-surface-base);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  display: block;
}

.form-control {
  border: 2px solid var(--color-border-default);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  transition: all var(--motion-duration-fast) ease;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
}

.form-control:focus-visible {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

.form-control:focus {
  border-color: var(--primary-color);
}

.form-control textarea {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
footer {
  background-color: var(--color-surface-base);
  color: var(--color-text-secondary);
  padding: var(--space-6) 0;
  text-align: center;
  font-family: var(--font-family-primary);
}

footer p {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-sm);
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--motion-duration-fast) ease;
  font-weight: 500;
}

footer a:hover {
  color: #ff9500;
}

footer a:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

/* Portfolio Gallery */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  transition: all var(--motion-duration-fast) ease;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--motion-duration-fast) ease;
}

.portfolio-item:hover img,
.portfolio-item:focus-within img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 165, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--motion-duration-fast) ease;
  color: var(--color-text-secondary);
  text-align: center;
  padding: var(--space-4);
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h5 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  font-family: var(--font-family-primary);
}

.portfolio-overlay p {
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
}

/* Accessibility Utilities */
/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-text-secondary);
  color: var(--color-surface-base);
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
  z-index: 100;
  border-radius: var(--radius-xs);
  font-weight: 600;
}

.skip-to-main:focus {
  top: 0;
}

/* Keyboard focus visible support */
*:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  :root {
    --color-focus-ring: oklch(0.3 0.3 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: var(--font-size-3xl);
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  .hero p {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-4);
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    display: block;
    width: 90%;
    margin: var(--space-2) auto !important;
  }

  section h2 {
    font-size: var(--font-size-2xl);
  }

  .about-content {
    flex-direction: column;
    gap: var(--space-5);
  }

  .navbar-brand {
    font-size: var(--font-size-lg);
  }

  .service-package-card.featured {
    transform: scale(1);
  }

  .service-package-card.featured:hover {
    transform: translateY(-10px);
  }

  section {
    padding: var(--space-6) 0;
  }
}

/* Service Detail Page Styles */
.service-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%), url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 22px 0;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  margin-bottom: 4px;
  font-size: var(--font-size-sm);
}

.breadcrumb-nav a {
  color: #FFA500;
  text-decoration: none;
  transition: color var(--motion-duration-fast) ease;
}

.breadcrumb-nav a:hover {
  color: white;
}

.breadcrumb-nav span {
  color: #d1d5db;
}

.service-hero h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: white;
}

/* Service Overview Section */
.service-overview {
  padding: var(--space-7) 0;
  background: var(--color-surface-muted);
}

.service-overview h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.service-overview p {
  font-size: var(--font-size-md);
  color: #666;
  line-height: 1.8;
  margin-bottom: var(--space-5);

}


.service-overview img {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
}

/* Service Packages Section */
.service-packages {
  padding: var(--space-4) 0;
  background: linear-gradient(135deg, #ffa500 50%, #ff8c00 100%);
}

.service-packages h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  text-align: center;
 
  margin-bottom: var(--space-3);
}

.section-subtitle {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: var(--font-size-md);
  margin-bottom: var(--space-6);
}

/* Package Card Styles */
.package-card {
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  position: relative;
  transition: all var(--motion-duration-fast) ease;
  border: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: white;
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-badge.badge-bestseller {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.package-badge.badge-hotdeal {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.package-badge.badge-creative {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.package-badge.badge-premium {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.package-badge.badge-support {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.package-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-surface-base);
  margin-top: 30px;
  margin-bottom: var(--space-2);
}

.package-desc {
  font-size: var(--font-size-sm);
  color: #666;
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-4);
}

.original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
}

.btn-buy {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--motion-duration-fast) ease;
  width: 100%;
}

.btn-buy:hover {
  background: #ff9500;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.btn-buy:active {
  transform: translateY(0);
}

/* Support Section */
.support-section {
  background: linear-gradient(135deg, #d1fae5 0%, #c7f0d8 100%);
  padding: var(--space-7) 0;
}

.support-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
  position: relative;
}

.support-badge {
  display: inline-block;
  background: #d1fae5;
  color: #047857;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.support-card h2 {
  font-size: var(--font-size-3xl);
  color: var(--color-surface-base);
  margin-bottom: var(--space-3);
  font-weight: 800;
}

.support-card p {
  font-size: var(--font-size-md);
  color: #666;
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: all var(--motion-duration-fast) ease;
  border: 2px solid #25D366;
}



.btn-whatsapp:hover {
  background: white;
  color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp span {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero {
    min-height: 180px;
    padding: 20px 0;
  }

  .service-hero h1 {
    font-size: var(--font-size-2xl);
  }

  .breadcrumb-nav {
    font-size: 12px;
  }

  .service-overview h2 {
    font-size: var(--font-size-2xl);
  }

  .service-packages h2 {
    font-size: var(--font-size-2xl);
  }

  .support-card h2 {
    font-size: var(--font-size-2xl);
  }

  .package-card {
    padding: var(--space-4);
  }
}


/*==========================================
        SITE FOOTER
===========================================*/

.site-footer{
    background:#e6e6e6;
    padding:60px 0 25px;
}

/*==========================================
TOP GRID
===========================================*/

.footer-top{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:40px;
}

/*==========================================
BRAND COLUMN
===========================================*/

.footer-logo{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.footer-logo img{
    height:38px;
    width:auto;
}

.footer-logo span{
    font-size:24px;
    font-weight:800;
    color:#1b2130;
}

.footer-company-name{
    font-size:16px;
    font-weight:700;
    color:#1b2130;
    margin-bottom:18px;
}

.footer-detail{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
    color:#333;
    font-size:14.5px;
    line-height:24px;
}

.footer-detail i{
    color:#FFA500;
    font-size:15px;
    margin-top:4px;
    flex-shrink:0;
    width:16px;
    text-align:center;
}

/*==========================================
LINK COLUMNS
===========================================*/

.footer-links h5{
    font-size:19px;
    font-weight:800;
    color:#1b2130;
    margin-bottom:20px;
}

.footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    color:#333;
    text-decoration:none;
    font-size:14.5px;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#FFA500;
    padding-left:4px;
}

/*==========================================
DIVIDER
===========================================*/

.footer-divider{
    border:none;
    border-top:1px solid #cfcfcf;
    margin:40px 0 20px;
}

/*==========================================
BOTTOM BAR
===========================================*/

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.footer-bottom p{
    color:#333;
    font-size:14px;
    margin:0;
}

/*==========================================
RESPONSIVE
===========================================*/

@media(max-width:992px){

.footer-top{
    grid-template-columns:1fr 1fr;
    gap:35px;
}

}

@media(max-width:576px){

.footer-top{
    grid-template-columns:1fr;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

}

.footer-links{
    text-align:left;
}

.footer-links h5{
    text-align:left;
}

.footer-links ul li a{
    text-align:left;
}

.footer-detail{
    text-align:left;
}

.footer-detail span{
    text-align:left;
}
/* If you have this: */
.footer-top{
    text-align:center;   /* ← remove or change to left */
}

.site-footer,
.site-footer *{
    text-align:left;
}

.footer-detail{
    justify-content:flex-start;
}





/*Privacy Policy*/
.policy-page-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 60px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #3d4048;
  line-height: 1.75;
}

.policy-header {
  text-align: center;
  margin-bottom: 24px;
}

.policy-header h1 {
  color: rgb(253, 177, 16 );
  font-size: var(--font-size-3xl);
  font-weight: 700;
  padding-top: px;
  margin: 0 0 10px;
}

.policy-header p {
  color: black;
  font-size: 14px;
  margin: 0;
  opacity: 0.85;
}

.policy-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #f8d929;
  box-shadow: 0 2px 10px rgba(20, 25, 40, 0.05);
  padding: 32px 48px 44px;
}

.policy-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e6e8ec;
}

.policy-section:first-child {
  padding-top: 4px;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #22242b;
  margin: 0 0 16px;
}

.policy-section h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: rgb(253, 177, 16 );
  border-radius: 2px;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 15px;
  color: #4b4f58;
  margin: 0 0 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .policy-card {
    padding: 24px 22px 32px;
  }
  .policy-header h1 {
    font-size: 26px;
  }
}