  :root {
    --black: #0A0A0A;
    --yellow: #FFC727;
    --gold: #F4B400;
    --light: #ffffff;
    --soft-bg: #FFF9E8;
    --text: #333333;
    --muted: #6c757d;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', Roboto, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
  }

  /* ========================= NAVBAR ========================= */
  .navbar {
    background: var(--black);
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
  .navbar .container-fluid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
  .navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 55px;
    width: 100%;
  }

  /* LEFT: BRAND */
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .navbar-brand .logo {
    height: 40px;
    width: 40px;
    border-radius: 4px;
    object-fit: cover;
  }

  .navbar-brand span {
    color: var(--yellow);
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
  }
  
  .portfolio-preview {
  padding: 72px 0 40px 0;
  background: #fafafa;
}
.portfolio-preview h2 {
  color: var(--black);
  font-weight: 800;
  margin-bottom: 36px;
  font-size: 28px;
  letter-spacing: 0.5px;
}
.portfolio-preview img {
  border-radius: 13px;
  transition: 0.3s;
  border: 3px solid var(--yellow);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.portfolio-preview img:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  border-color: var(--gold);
}

  /* RIGHT: MENU + TOGGLE */
  .navbar-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto !important; /* PUSH TO RIGHT */
  }

  /* MENU - RIGHT SIDE - ALWAYS VISIBLE ON DESKTOP */
  .nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    align-items: center;
    background: transparent;
    max-height: none;
    overflow: visible;
    flex-direction: row;
  }

  .nav-menu li {
    margin: 0;
  }

  .nav-link {
    color: var(--light);
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 4px;
    position: relative;
    display: block;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }

  .nav-link:hover {
    color: var(--yellow);
    background: rgba(255,199,39,0.08);
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
  }

  .nav-link.active {
    color: var(--yellow);
  }

  /* TOGGLE BUTTON - HIDDEN BY DEFAULT (DESKTOP) */
  .toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 40px !important;     /* FIXED WIDTH */
    height: 40px !important;    /* FIXED HEIGHT */
    padding: 0 !important;      /* REMOVE EXPANDING */
    align-items: center;
    justify-content: center;
  }

  .toggle-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .toggle-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .toggle-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

/* ========================= HERO SECTION (HOME) ========================= */
.hero-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--soft-bg) 0%, #fff5d6 100%);
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}

.hero-section h1 span {
  color: var(--yellow);
}

.hero-section p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-section .btn-main {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-section .btn-main:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

  
  
  /* ========================= Home PAGE (index.php) ========================= */
  .services-home {
  background: #fafafa;
  padding: 70px 0;
}

.services-home .card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 30px;
  background: var(--light);
  transition: all 0.3s ease;
}

.services-home .card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transform: translateY(-6px);
  border-color: var(--yellow);
}

.services-home i {
  color: var(--yellow);
  font-size: 36px;
  margin-bottom: 15px;
}


 /* ========================= SERVICES PAGE (services.php) ========================= */
.services-section {
  background: var(--light);
  padding: 70px 0 90px;
}

/* Headings - Digital/Music/YouTube */
.section-title h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
}

/* Main card style */
.service-box {
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  background: var(--light);
  padding: 30px;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  transition: all 0.25s ease-in-out;
}

/* Icon styling */
.service-box i {
  width: 50px;
  height: 50px;
  font-size: 20px;
  border-radius: 50%;
  background: rgba(255,199,39,0.15);
  color: var(--yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

/* Title */
.service-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Text */
.service-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/* Hover Effect */
.service-box:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  background: #FFFDF3;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.service-box:hover i {
  background: rgba(255,199,39,0.25);
}


  /* ========================= CTA ========================= */
  .cta-section {
    background: var(--black);
    color: var(--light);
    padding: 80px 0;
    text-align: center;
  }

  .cta-section h2 {
    color: var(--yellow);
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 20px;
  }

  .cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 30px;
  }

  .cta-section .btn-cta {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .cta-section .btn-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
  }

  /* ========================= FOOTER ========================= */
  .site-footer {
    background: var(--black);
    color: var(--light);
    padding: 60px 0 25px;
    border-top: 3px solid var(--yellow);
  }

  .site-footer h5 {
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 15px;
  }

  .site-footer a {
    color: #ddd;
    transition: color 0.2s ease;
  }

  .site-footer a:hover {
    color: var(--yellow);
  }

  /* ========================= UTILITIES ========================= */
  .container-fluid {
    width: 100%;
    margin: 0 auto;
  }

  .px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .px-md-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  @media (min-width: 768px) {
    .px-md-4 {
      padding-left: 24px;
      padding-right: 24px;
    }
  }

  a {
    text-decoration: none;
    color: var(--yellow);
    transition: color 0.2s ease;
  }

  a:hover {
    color: var(--gold);
  }
  
  .social-icons {
  display: flex;
  align-items: center;
  gap: 10px;          /* icons ke beech spacing */
  font-size: 1.3rem;  /* size adjust as you like */
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

  
  /* ========================= RESPONSIVE - TABLET & MOBILE ========================= */
  @media (max-width: 991px) {
    .navbar {
      padding: 10px 0;
    }

    .navbar-wrapper {
      min-height: 50px;
    }

    .navbar-brand span {
      font-size: 18px;
    }

    /* SHOW TOGGLE BUTTON ON MOBILE */
    .toggle-btn {
      display: flex;
      margin-left: auto !important; 
    }

    /* HIDE MENU BY DEFAULT ON MOBILE */
    .nav-menu {
    position: absolute;
    top: 100%;          /* Open BELOW navbar, not right */
    left: 0;            /* FULL WIDTH dropdown */
    right: 0;
    width: 100%;
    flex-direction: column;
    background: #1a1a1a;
    max-height: 0;      /* fully hidden */
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    margin: 0;
    z-index: 9999;
    }

    /* SHOW MENU WHEN ACTIVE */
    .nav-menu.show {
        max-height: 600px; 
    }

    .nav-menu li {
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link {
      padding: 14px 20px;
      border-radius: 0;
    }

    .nav-link::after {
      left: 0;
      right: 0;
      bottom: 0;
    }
  }

  @media (max-width: 768px) {
    .navbar-brand {
      gap: 8px;
    }

    .navbar-brand .logo {
      height: 35px;
      width: 35px;
    }

    .navbar-brand span {
      font-size: 16px;
    }

    .navbar-right {
      gap: 10px;
    }

    .nav-link {
      padding: 12px 16px;
      font-size: 14px;
    }

    .toggle-btn span {
      width: 22px;
      height: 2px;
    }
    .site-footer {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  }

  @media (max-width: 576px) {
    .navbar {
      padding: 8px 0;
    }

    .navbar-brand span {
      font-size: 14px;
    }

    .navbar-brand .logo {
      height: 32px;
      width: 32px;
    }

    .nav-menu.show {
      max-height: 500px;
    }
  }
  .button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-custom {
     background: var(--yellow);
  color: var(--black);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-custom:hover {
  transform: translateY(-0.1px);
}


.btn-warning {
    background: #FFC727 !important;
    color: #0A0A0A !important;
    border: none !important;
}

@media(max-width: 480px) {
    .button-group {
        flex-direction: column;
        width: 100%;
    }
    .btn-custom {
        width: 100%;
    }
}

/* Align form labels above inputs properly */
.contact-section label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 15px;
}

/* Form controls uniform styling */
.contact-section .form-control,
.contact-section .form-select {
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    font-size: 15px;
}

/* On focus */
.contact-section .form-control:focus,
.contact-section .form-select:focus {
    border-color: #FFC727;
    box-shadow: 0 0 0 0.15rem rgba(255,199,39,0.35);
}

/* Service dropdown spacing */
.service-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Semi-grid alignment on desktop */
@media (min-width: 768px) {
    .service-group label {
        width: 60%;
    }
    .service-group select {
        width: 60%;
    }
}

/* Mobile fix - stack vertically */
@media (max-width: 767px) {
    .service-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .service-group label,
    .service-group select {
        width: 100% !important;
    }
}
/* Phone input group alignment */
.phone-group {
    display: flex;
    gap: 12px; /* 👈 Yeh gap banayega */
    align-items: center;
}

/* Country code dropdown width */
.phone-group select {
    width: 80px; /* 👈 Aap isko kam ya zyada kar sakte ho */
    padding: 10px; /* Height control */
    font-size: 14px;
}

/* Phone input full width */
.phone-group input {
    flex: 1;
}

.not-found-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
  color: #e5e7eb;
}

.not-found-card {
  background: #0b1120;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.not-found-card .display-3 {
  font-size: 3.5rem;
}

@media (max-width: 576px) {
  .not-found-card .display-3 {
    font-size: 2.8rem;
  }
}
/* About – Who We Are block */
.about-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background:#f9fafb;          /* ya jo bhi light color rakhna ho */
}

.about-section .about-intro {
    max-width: 900px;
}

.about-section h2 {
    font-size: 2.1rem;
    margin-bottom: 14px;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 10px;
}



  
