* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Satoshi', sans-serif;
    color: #fff;
    background: rgb(4 15 30);
}

.testimonial-card, .cardMeta, .contact-form, .project-card, .leftSection, .quote-form, .second-section {
	background: #0a1628;
}
.content {
padding: 80px;
}


.container {
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
:root {
    --primary: #007bff;
    --text: #333;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px #eeeeee17 solid;
    z-index: 1000;
    padding: 0px 80px 0px 80px;
    background: rgb(4 15 30 / 51%);
    backdrop-filter: blur(10px);
}
.nav-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0px;
}

.nav {
    display: flex;
    position: relative;
    border: 1px #eeeeee17 solid;
    padding: 10px;
    border-radius: 20px;
}

.nav-link {
    text-decoration: none;
    color: #9ca3af;
    padding: 6px 20px;
    font-weight: 400;
    z-index: 2;
    transition: color 0.3s;
}

/* The Sliding Pill */
.nav-indicator {
    position: absolute;
    height: 30px; /* Match link height area */
    background: #dedfc626;
    border-radius: 25px;
    z-index: 1;
    transition: all var(--transition);
    display: block;
}

.nav-link.active { color: white; }

/* Hamburger Menu Icon */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.logo img {
    width: 100%;
	height: 30px;
	}


.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: var(--transition);
}





/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav {
        display: none; /* Hidden until toggled */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav.open { display: flex; }
    
    .nav-indicator { display: none; } /* Usually cleaner to hide pill on mobile list */
    .nav-link.active { color: var(--primary); background: #f0f7ff; border-radius: 8px; }

.projects, .welcome-section, .services-container {
  display: flex;
  flex-direction: column !important;
  width: 100%;
  }

.container.hero-content {
    display: flex;
    flex-direction: column-reverse !important;
}
.services-sidebar {
    flex-direction: row !important;
}

.serviceList {
    flex-wrap: wrap !important;
}
body {
    padding: 10px !important;
}












}

/* ================= HERO ================= */
.hero {
    padding: 50px 0 10px;
    background: rgb(4 15 30);
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 35px;
    font-weight: 600;
    padding-top: 40px;
}

.hero p {
    max-width: 600px;
    margin: 20px auto 0;
    color: #fff;
}
.container.hero-content{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.leftSection{
    border: 1px #cfaaaa17 solid;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.achList {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 40px;
    justify-content: center;
}
.achList h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 20px;
    background: #dedfc600;
    border: 1px #eeeeee12 solid;
}
.achList h2 {
    display: inline-block;
    transition: transform 0.4s ease;
}

.achList h2:hover {
    transform: scale(1.15);
	color: rgb(47 190 171);
}

/* ================= SERVICE SECTION ================= */

.services-container {
  display: flex;
  gap: 30px;
  align-items: center;
}

.services-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  gap: 10px;
}

.tab-btn {
  padding: 15px;
  text-align: left;
  background: #dedfc600;
  border: 1px #eeeeee12 solid;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.tab-btn.active {
  background: #dedfc626;
  color: white;
}

.category-content {
  display: none;
}

.category-content.active {
  display: block;
}

.services {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.serviceList {
    width: 100%;
    display: flex;
    gap: 20px;
}
/* ================= WELCOME SECTION ================= */
.welcome {
    padding: 100px 0px 0px 0px;
    background: rgb(4 15 30);
}

.welcome-section {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.welcome h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.welcome p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* ================= INSTANT QUOTE ================= */
    .quote-form {
        max-width: 100%;
        width: 100%;
        margin: auto;
        padding: 25px;
        border: 1px solid #eeeeee17;
        border-radius: 8px;

    }

    .quote-form h2 {
        margin: 0 0 8px;
        font-size: 22px;
    }

    .quote-form p {
        margin: 0 0 20px;
        font-size: 14px;
        color: #ccc;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        background: transparent;
        border: 1px solid #eeeeee17;
        color: #cfcfcf;
        font-family: 'Satoshi', sans-serif;
        font-size: 14px;
        outline: none;
    }

    .quote-form textarea {
        resize: vertical;
        min-height: 80px;
    }

    .quote-form input::placeholder,
    .quote-form textarea::placeholder {
        color: #aaa;
    }

    .quote-form select option {
        background: rgb(4 15 30);
        color: #fff;
    }

    .quote-form button {
        width: 100%;
        padding: 12px;
        border: 1px solid #eeeeee17;
        background: transparent;
        color: #fff;
        font-size: 15px;
        cursor: pointer;
        transition: background 0.3s ease;
        font-family: 'Satoshi', sans-serif;
    }

    .quote-form button:hover {
        background: #ffffff10;
    }
/* ================= WELCOME RESPONSIVE ================= */
@media (max-width: 768px) {
    .welcome h2 {
        font-size: 26px;
    }
}

/* ================= PROFILE ================= */
.myName {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  font-family: 'Satoshi', sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.myName::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  border-radius: 20px;
  width: 100%;
  background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
  background-size: 400% 100%;
  animation: colorLoop 4s linear infinite;
}

@keyframes colorLoop {
  0% { background-position: 400% 0%; }
  100% { background-position: 0% 0%; }
}

.profile {
    padding: 90px 0;
}

.profile.alt {
    background: rgb(4 15 30);
}

.profile-header {
    max-width: 700px;
    margin-bottom: 40px;
}

.pfp img{
    width: 120px;
    border: 3px #13ffcb solid;
    border-radius: 50%;
    opacity: 0.5;
}
.roles {
    font-weight: 600;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    margin: 20px 0;
}

.description {
    margin: 15px 0 25px;
    font-family: 'Satoshi', sans-serif;
    line-height: 21px;
    color: #fff;
}

.profile-buttons .btn:hover {
	border: 1px solid #2563eb75;
}
.profile-buttons .btn {
   margin-right: 12px;
   border: 1px #eeeeee17 solid;
}

/* ============ Services Section =============== */

section.webDesign {
    max-width: 1200px;
    display: flex;
    gap: 20px;
    flex-direction: row;
    margin: auto;
    align-items: center;
    justify-content: center;
}
.first-section img{
	width: 495px;
}
.second-section p {
	color: #cacaca;
    line-height: 20px;
    font-size: 16px;
	padding: 10px 0px;
	max-width: 700px;
}
.second-section {
	padding: 30px;
	border: 1px solid #eeeeee17;
	border-radius: 20px;
}

.serviceIcons {
	margin-top: 20px;
}
/* ================= PROJECTS ================= */
.projects {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.project-card {
    padding: 15px 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    border-radius: 18px;
    justify-content: space-between;
    border: 1px #eeeeee17 solid;
    height: auto;
    width: 100%;
}

.project-card h2 {
	padding-top: 5px;
}
[class^="ri-"] {
    font-size: 28px;
    padding: 7px;
    border-radius: 9px;
    color: rgb(47 190 171);
    background: #ffffff0d;
}

.project-card:hover, .template-card:hover {
    border: 1px #80ffea70 solid;
    transition-duration: 0.15s;
}

.cardMeta h2{
    font-size: 16px;
    font-weight: 600;
}
.cardMeta p {
    color: #cacaca;
    line-height: 18px;
    font-size: 14px;

}
/* ================= BUTTONS ================= */
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn.primary {
    background: rgb(4 15 30);
    color: #fff;
    font-family:  'Satoshi', sans-serif;
    font-weight: 400;
}

.btn.secondary {
    border: 1px solid #2563eb75;
    color: #fff;
    font-family:  'Satoshi', sans-serif;
    font-weight: 400;
}

/* ================= MODAL================= */
/* Main Page Button */
.trigger-btn {
    padding: 10px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    background: rgb(4 15 30);
    border: #ffffff14 1px solid !important;
    color: white;
    border-radius: 12px;
}

/* Full Screen Overlay */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Semi-transparent black */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Popup Box */
.popup-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 100%;
    width: 100%;
    overflow: auto;
    height: 90%;
    margin: 80px;
    background: rgb(4 15 30);
    position: relative;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

/* Close Button (Top Right) */
.close-btn {
    position: fixed;
    top: 15px;
    right: 20px;
    height: 20px;
    width: 20px;
    font-size: 20px;
    background: #d50000;
    border: none;
    cursor: pointer;
    color: #fff;
}

/* Skills/Tags styling */
.skill-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #000;
    padding: 5px 12px;
    margin: 5px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.image-placeholder img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

.action-btn {
    background: #28a745;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Simple entry animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/*================== TESTIMONIALS ================= */

.testimonials {
    font-family: 'Satoshi', sans-serif;
    max-width: 1200px;
    margin: 70px auto;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 35px;
    font-size: 24px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    height: 180px; /* fixed height */
    padding: 20px;
    border: 1px solid #eeeeee17;
	border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    font-size: 16px;
	color: #ff9800;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    margin: 12px 0;
	color: #d1d5db;
}

.author {
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= CONTACT FORM ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info p {
    color: #fff;
    margin-top: 10px;
    max-width: 400px;
}

.contact-form {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eeeeee17;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #eeeeee17;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: #cfcfcf;
    background: rgb(4 15 30);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 13px;
    pointer-events: none;
    transition: 0.3s;
    padding: 0 6px;
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
    top: -8px;
    font-size: 12px;
    color: #fff;
}

.btn.full {
    width: 100%;
    text-align: center;
}

.form-status {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
}
.btn.full {
    border: 1px solid #eeeeee17;
}
/* ================= CONTACT RESPONSIVE ================= */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ================= FOOTER ================= */
.footer {
    padding: 30px 0;
    text-align: center;
	margin-top: 40px;
    background: rgb(4 15 30);
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #091628;
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }
}




/* Ensure the card itself is a contained box */
.template-card {
    background: rgb(4 15 30);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 0px;
    gap: 10px;
    justify-content: space-between;
    border: 1px #eeeeee17 solid;
    height: auto;
    width: 100%;
}
.cardMeta {
padding: 5px 20px;
    display: flex;
    gap: 10px;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.temp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*promobile css*/

    .tag {
      display: inline-block;
      background: var(--bg-light);
      border: 1px solid var(--border-light);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 14px;
      margin-bottom: 24px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      margin-top: 40px;
    }

    .card {
      background: var(--bg-light);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 28px;
    }

    .card strong {
      color: var(--text-main);
    }

    ul {
      list-style: none;
      margin-top: 12px;
    }

    ul li {
      margin-bottom: 10px;
      padding-left: 18px;
      position: relative;
      color: #fff;
    }

    ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #eee;
    }

    .timeline {
      border-left: 2px solid var(--border-light);
      padding-left: 30px;
      margin-top: 40px;
    }

    .timeline-item {
      margin-bottom: 30px;
    }

    .timeline-item span {
      font-size: 14px;
      color: #eee;
      font-weight: 500;
    }

    .metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 40px;
    }

    .metric {
      flex: 1;
      min-width: 180px;
    }

    .metric h3 {
      font-size: 2rem;
      color: #fff;
    }

    .footer {
      text-align: center;
      padding: 60px 20px;
      border-top: 1px solid var(--border-light);
      margin-top: 80px;
      color: #fff;
      font-size: 14px;
    }
 /*///////////////////*/
.popup-overlay {
  display: none;            /* important */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  justify-content: center;  /* required for flex */
  align-items: center;
  z-index: 9999;
}

.popup {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}
/* ===============================================
   PROMOBILE CASE STUDY POPUP - SPECIFIC STYLES
   =============================================== */

/* Popup Overlay & Container */
#promobile-casestudy.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    padding: 2rem 1rem;
}

#promobile-casestudy.overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#promobile-casestudy .popup-content {
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideInUp 0.4s ease;
    margin: 2rem auto;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button */
#promobile-casestudy .close-btn {
    position: sticky;
    top: 1.5rem;
    right: 1.5rem;
    float: right;
    background: #ff4757;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

#promobile-casestudy .close-btn:hover {
    background: #e84118;
    transform: rotate(90deg);
}

/* Hero Section */
.pop-hero-1 {
    padding: 4rem 3rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.pop-tag-1 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pop-title-1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pop-subtitle-1 {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

/* Sections */
.pop-section-1 {
    padding: 3rem;
    border-bottom: 1px solid #eee;
}

.pop-section-1:last-of-type {
    border-bottom: none;
}

.pop-heading-1 {
    font-size: 2rem;
    font-weight: 700;
    color: #00abdb;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 0.75rem;
}




.pop-text-1 {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f2f2f2;
    margin: 0 0 1.5rem 0;
}

/* Grid Layout */
.pop-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pop-card-1 {
    background: rgb(4 15 30);
    padding: 2rem;
    border-radius: 10px;
    border: 1px #eeeeee17 solid;
    transition: all 0.3s ease;
}

.pop-card-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.pop-label-1 {
    display: block;
    font-size: 0.9rem;
    color: #f2f2f2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pop-value-1 {
    font-size: 1.05rem;
    color: #f2f2f2;
    margin: 0;
    font-weight: 500;
}

/* Subheadings */
.pop-subheading-1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f2f2f2;
    margin: 0 0 1rem 0;
}

/* Lists */
.pop-list-1 {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pop-item-1 {
    font-size: 1rem;
    line-height: 1.7;
    color: #f2f2f2;
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pop-item-1::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.pop-item-1:hover {
    border-left-color: #667eea;
    padding-left: 2.5rem;
}

/* Highlight */
.pop-highlight-1 {
    color: #f2f2f2;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline */
.pop-timeline-1 {
    margin: 2rem 0;
    position: relative;
}

.pop-timeline-1::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.pop-timeline-item-1 {
    position: relative;
    padding: 1.5rem 0 1.5rem 4rem;
    margin-bottom: 1rem;
}

.pop-timeline-item-1::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 1.75rem;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    z-index: 2;
}

.pop-week-1 {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pop-desc-1 {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f2f2f2;
    margin: 0.5rem 0 0 0;
}

/* Metrics */
.pop-metrics-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pop-metric-1 {
    background: rgb(4 15 30);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px #eeeeee17 solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pop-metric-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pop-metric-1:hover {
    border-color: #f2f2f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.pop-metric-1:hover::before {
    transform: scaleX(1);
}

.pop-metric-title-1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
}

.pop-metric-desc-1 {
    font-size: 0.95rem;
    color: #f2f2f2;
    margin: 0;
    font-weight: 500;
}

/* Footer */
.pop-footer-1 {
    text-align: center;
    padding: 2rem;
    color: #f2f2f2;
    font-size: 0.9rem;
    border-radius: 0 0 12px 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #promobile-casestudy .popup-content {
        margin: 1rem auto;
        border-radius: 8px;
    }

    .pop-hero-1 {
        padding: 3rem 1.5rem 2rem;
        border-radius: 8px 8px 0 0;
    }

    .pop-title-1 {
        font-size: 2rem;
    }

    .pop-subtitle-1 {
        font-size: 1rem;
    }

    .pop-section-1 {
        padding: 2rem 1.5rem;
    }

    .pop-heading-1 {
        font-size: 1.5rem;
    }

    .pop-grid-1 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pop-card-1 {
        padding: 1.5rem;
    }

    .pop-timeline-1::before {
        left: 20px;
    }

    .pop-timeline-item-1 {
        padding-left: 3rem;
    }

    .pop-timeline-item-1::before {
        left: 12px;
    }

    .pop-metrics-1 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pop-metric-title-1 {
        font-size: 2rem;
    }

    #promobile-casestudy .close-btn {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #promobile-casestudy.overlay {
        padding: 1rem 0.5rem;
    }

    .pop-hero-1 {
        padding: 2.5rem 1rem 1.5rem;
    }

    .pop-title-1 {
        font-size: 1.75rem;
    }

    .pop-section-1 {
        padding: 1.5rem 1rem;
    }

    .pop-card-1 {
        padding: 1.25rem;
    }
}

/* Print Styles */
@media print {
    #promobile-casestudy .close-btn {
        display: none;
    }

    #promobile-casestudy.overlay {
        background: white;
        position: relative;
        padding: 0;
    }

    #promobile-casestudy .popup-content {
        box-shadow: none;
        max-width: 100%;
    }

    .pop-section-1 {
        page-break-inside: avoid;
    }
}

/* Smooth Scrolling within Popup */
#promobile-casestudy.overlay {
    scroll-behavior: smooth;
}

/* Selection Styling */
#promobile-casestudy ::selection {
    background: #667eea;
    color: white;
}

#promobile-casestudy ::-moz-selection {
    background: #667eea;
    color: white;
}

/*bluewillow cs*/
/* ===============================
   Base Reset & Variables
================================= */

.cs-container,
.cs-container5 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===============================
   Hero Section
================================= */

.cs-hero {
  background: rgb(6 37 79);
  padding: 120px 0 100px;
  text-align: center;
  color: #fff;
}

.cs-hero span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 20px;
}

.cs-hero h1 {
  font-size: 44px;
  font-weight: 700;
  max-width: 850px;
  margin: 0 auto 25px;
  line-height: 1.2;
}

.cs-hero p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  opacity: 0.9;
}

/* ===============================
   Section Base Styling
================================= */

.cs-section2,
.cs-section3,
.cs-section4 {
  padding: 50px 0;
  background: var(--white);
}

.cs-section-dark {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.cs-section2 h2,
.cs-section3 h2,
.cs-section4 h2,
.cs-section-dark h2 {
  font-size: 34px;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
}

.cs-section2 p,
.cs-section3 p,
.cs-section-dark p {
  font-size: 17px;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cs-section-dark p {
  color: rgba(255,255,255,0.75);
}

/* ===============================
   Grid System
================================= */

.cs-grid {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.cs-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ===============================
   Cards
================================= */

.cs-card,
.imp-cs-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  transition: var(--transition);
  background: #0a1628;
  color: #fff;
  border: 1px solid #eeeeee17;
  border-radius: 20px;
  margin: 10px;
}


.cs-card:hover,
.imp-cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.cs-card h3,
.imp-cs-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.cs-card p,
.imp-cs-card p {
  font-size: 15px;
  color: #fff;
}

.cs-section-dark .cs-card p,
.cs-section-dark .imp-cs-card p {
  color: rgba(255,255,255,0.7);
}

/* ===============================
   Lists
================================= */

.cs-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.cs-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
  font-size: 15px;
}

.cs-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1bff1b !important;
  font-size: 14px;
}

/* ===============================
   Results Section
================================= */

.cs-results-box {
  background: rgb(6 37 79);
  padding: 60px;
  border-radius: 20px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.cs-section4 .cs-results-box h2 {
  margin-bottom: 30px;
}

.cs-section4 .cs-results-box .cs-list li {
  color: var(--white);
}

.cs-section4 .cs-results-box .cs-list li::before {
  color: #fff;
}

/* ===============================
   CTA Section
================================= */

.cs-cta {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.cs-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.cs-cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

.cs-cta button {
  background: #fff;
  color: #000;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.cs-cta button:hover {
  background: #4752c4;
  color: #fff;
  transform: translateY(-3px);
}

/* ===============================
   Responsive Design
================================= */

@media (max-width: 992px) {

  .cs-hero h1 {
    font-size: 34px;
  }

  .cs-grid-2 {
    grid-template-columns: 1fr;
  }

  .cs-section2,
  .cs-section3,
  .cs-section4,
  .cs-section-dark,
  .cs-cta {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {

  .cs-hero {
    padding: 80px 0;
  }

  .cs-hero h1 {
    font-size: 28px;
  }

  .cs-section2 h2,
  .cs-section3 h2,
  .cs-section4 h2,
  .cs-section-dark h2,
  .cs-cta h2 {
    font-size: 24px;
  }

  .cs-card,
  .imp-cs-card {
    padding: 25px;
  }

  .cs-results-box {
    padding: 35px;
  }
}