* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /*background: #f7f8fb;*/
    /*color: #333;*/
}
.navbar {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: bold;
    white-space: pre-line;
}
/* Fix Tools dropdown on mobile */
@media (max-width: 991.98px) {   /* same breakpoint as navbar-expand-lg */

  .navbar .dropdown-menu {
    position: static !important;     /* no absolute positioning */
    left: 0 !important;
    right: 0 !important;
    transform: none !important;      /* kill translateX(-50%) */
    margin-top: 0 !important;
    width: 100% !important;          /* full width under Tools */
    max-width: 100vw;
    box-shadow: none;                /* optional: flatter look on mobile */
  }

  .navbar .dropdown-menu.show {
    display: block;
  }
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    overflow: hidden;
    padding-top: 100px;

}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero h1 {
    font-size: 6rem;
}

.hero .highlight {
    color: #f8d32a;
    font-weight: bold;
    font-size: 6rem;
}


.hero .container  {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.hero h1 {
    margin-bottom: -5px;
}

.hero p {
    margin-bottom: -20px;

}

.hero-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: -150px !important;
}


.btn-outline-light {
    border: 1px solid #fff;
}

.text-heroo{
    margin-bottom: 25px!important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero .highlight {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;

    }

    .hero-buttons .btn {
        width: 100%;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.9rem;
    }

    .navbar {
        padding: 10px 20px;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;

    }

    .hero .container  {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
@media (max-width: 992px) {
.hero .container {
flex-direction: column;
align-items: flex-start;
gap: 30px;
}

.hero h2,
.hero h1,
.hero p {
text-align: left;
width: 100%;
}

.hero-buttons {
flex-direction: column;
align-items: flex-start;
width: 100%;
gap: 10px;
margin-bottom: -20 !important;
}

.hero-buttons .btn {
width: 100%;
}
}

@media (max-width: 576px) {
.hero {
padding: 40px 20px 20px;
}

.hero h1,
.hero .highlight {
font-size: 3rem;
}

.hero h2 {
font-size: 1.5rem;
}

.hero p {
font-size: 1rem;
}
}


/* our-service-section */

.service-item {
    max-height: 220px;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible; 
    z-index: 1; 
}

.service-item:hover {
    transform: scale(1.05); 
    z-index: 10;
}

.service-item .hover-image {
    display: none;
    margin: -150px 50;
    width: 250px !important;
    height: 180px!important;
    object-fit: cover;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    rotate: -10deg;
}

.service-item:hover .hover-image {
    display: block;
    width: 100px;
    height: 100px;
}

.service-item h2 {
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}
.service-item h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #00196b; 
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-item:hover h2::before {
    opacity: 1;
}

.service-item:hover h2 {
    font-weight: bold; 
}

.service-item p {
    font-weight: normal;
}

.btn-custom {
    background-color: #00196b;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    border: none;
    transition: all 0.3s ease; 
}

.btn-custom:hover {
    background-color: #00196bcc;
    font-weight: bold; 
    font-size: 1rem;  
    padding: 1rem 2rem; 
}
/* Responsive Styles */
@media (max-width: 768px) {
    .service-item:hover {
        transform: scale(1); 
    }

    .service-item .hover-image {
        width: 80px;
        height: 80px;
    }

    .service-item .row {
        text-align: center;
    }

    .service-item .col-md-8 {
        text-align: center;
    }

    .service-item .col-md-4 {
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .service-item .hover-image {
        width: 80px;
        height: 80px;
    }

    .service-item .row {
        flex-direction: column;
        align-items: center;
    }

    .service-item .col-md-8, .service-item .col-md-4 {
        text-align: center;
        width: 100%;
    }

    .service-item .btn-custom {
        width: 100%;
        text-align: center;
    }
}



/* icon-section */


.hover-container {
    position: relative;
    min-height: 100px; /* make room for animations */
    overflow: hidden;
}

.hover-container i {
    transition: opacity 0.3s ease;
}

.hover-heading {
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: relative;
    z-index: 1;
}

.hover-paragraph {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
    z-index: 0;
}

.hover-container:hover i {
    opacity: 0;
}

.hover-container:hover .hover-heading {
    transform: translateY(-20px);
}

.hover-container:hover .hover-paragraph {
    opacity: 1;
    transform: translateY(-10px);
}

.btn-icon {
    background-color: #000D6E !important;
    color: white !important;
}

.btn-icon:hover {
    background-color: yellow !important;
    color: black !important;
}



/* 5-card-section */

.success-label {
    font-size: 0.75rem;
    color: #0a1e7e;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    margin-top: 50px;
}

.success-label .dot {
    width: 0.75rem;
    height: 0.75rem;
    border: 1px solid #0a1e7e;
    background-color: #0a1e7e;
    border-radius: 50%;
}

h2.section-title {
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem auto;
}

.card-custom {
    background-color: #e6f2f9;
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #222222;
}

.card-custom h3 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.card-custom h3.large {
    font-size: 3rem;
}

.card-custom h3.xlarge {
    font-size: 3.5rem;
}

.card-custom h4 {
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.card-custom p {
    font-size: 0.875rem;
    line-height: 1.2;
    max-width: 90%;
    margin: 0;
}

.card-custom p.small {
    font-size: 0.75rem;
}

.card-custom hr {
    border-color: #a0a0a0;
    margin-bottom: 1rem;
}

.card-custom .icon-circle {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #c6f0e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.card-custom .icon-circle svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #3dbd9e;
}

.card-custom img.graph {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    object-fit: cover;
    opacity: 0.5;
    border-radius: 0 0 1rem 1rem;
    pointer-events: none;
    user-select: none;
}

.card-custom img.graph-right {
    right: 0;
    left: auto;
    object-fit: contain;
    opacity: 0.3;
}

.card-custom .flags {
    display: flex;
    gap: -1rem;
    margin-top: 0.5rem;
}

.card-custom .flags img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-top: -0.5rem;
    object-fit: cover;
    margin-right: -5px;
}

/* Responsive grid */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 90rem;
    margin: 0 auto;
}

.card-custom.w-56 {
    width: 14rem;
}

@media (min-width: 576px) {
    .card-custom.w-56 {
        width: 14rem;
    }
}

@media (min-width: 768px) {
    .card-custom.w-56 {
        width: 14rem;
    }
}

@media (min-width: 992px) {
    .card-custom.w-56 {
        width: 14rem;
    }
}

.card-km {
    height: 260px !important;
    margin-top: 70px;
}

.card-kamm {
    height: 100px !important;
    margin-top:110px;
}

.card-custom-1 {
    height: 300px!important;
    margin-top: 50px;
}

.card-custom-0 img {
    margin-top: 80px;
}

.one {
    margin-bottom: 8rem !important;
}

.two {
    margin-bottom: 8rem !important;
}

.for {
    margin-bottom: 8rem !important;
}





/* success-stories  */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      margin-top: 85px;
      margin-bottom: 40px;
    }
    .card-02{
        margin-top: 100px;
    }

    .card-04{
        margin-top: 150px;
    }


    .tagline {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .tag-circle {
      width: 16px;
      height: 16px;
      background-color: #3B3B6B;
      border-radius: 50%;
    }

    .tag-text {
      font-size: 10px;
      font-weight: bold;
      color: #3B3B6B;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    h1 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .case-count {
      font-size: 12px;
      color: #aaa;
      font-weight: bold;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 40px;
    }

    @media (min-width: 768px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .card {
      max-width: 80%;
      border: none;
    }

    .card img {
      width: 100%;
      height: auto;
      border-radius: 12px;
    }

    .meta {
      margin-top: 10px;
    }

    .category {
      font-size: 10px;
      font-weight: bold;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .title {
      font-size: 1.1rem;
      font-weight: bold;
      margin: 5px 0;
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }

    .profile img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
    }

    .profile-info {
      font-size: 12px;
      color: #555;
    }

    .profile-info p:first-child {
      font-weight: bold;
      color: #222;
      margin: 0;
    }

    .button-container {
      text-align: center;
      margin-top: 60px;
    }

    .cta-button {
      padding: 10px 24px;
      background-color: #0B1B6F;
      color: white;
      border: none;
      border-radius: 999px;
      font-size: 14px;
      font-weight: bold;
      cursor: pointer;
    }

    .cta-button:hover {
      background-color: #0a185f;
    }
  

/* Success Metrics-section */


/* web-storie-section */

.slider-container {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    height: 500px;
    /* margin-top: 5%; */
}

.slider-container h1 {
    margin-bottom: 30px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.card {
    flex: 0 0 20%;
    /* padding: 10px; */
    gap: 10px!important;
    transition: transform 0.4s ease;

}

.card-content {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s ease; */
}

.card.center .card-content {
    transform: scale(1.1);
    z-index: 2;
}

.card-content img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-content .text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    text-align: center;
    font-size: 12px;
}

.check-btn {
    display: block;
    margin: 20px auto;
    padding: 6px 45px;
    background-color: #001570;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top:28px !important;
}


@media (max-width: 1200px) {
    .card {
        flex: 0 0 25%;
      
    }
}

@media (max-width: 992px) {
    .card {
        flex: 0 0 33.33%;
       
    }
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 50%;
       
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 100%;
        
    }
}














  /* contact-us-section */

  .form-control:focus {
    border-color: #000D6E;
    box-shadow: none;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border: 2px solid white;
    border-radius: 50%;
    object-fit: cover;
}

.avatars-group img:not(:first-child) {
    margin-left: -10px;
}

@media (max-width: 768px) {
    .heading-cta-section {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .cta-side {
        align-items: flex-start !important;
    }
}

/* blog-section */

.btn-blue {
    background-color: #001f7f;
    color: white;
    border-radius: 9999px;
    padding: 0.375rem 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: background-color 0.3s ease;
    width: 150px!important;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: yellow;
}

.btn-outline-gray {
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
}

.btn-outline-gray:hover,
.btn-outline-gray:focus {
    background-color: #e5e7eb;
    color: #374151;
}

.text-uppercase-tracking {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 0.75rem;
    color: #6b7280;
}

.rounded-xl {
    border-radius: 1rem !important;
}


/* 
img-slider-section */



  .container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px 0;
  }

  .subheading {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
  }

  .subheading::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3b82f6;
    margin-right: 10px;
  }

  h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 30px;
  }

  .slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    padding: 0 20px;
  }

  .slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }

  .slide {
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
    min-width: 150px;
    max-width: 200px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .slide img {
    width: 100%;
   
    height: 100%;
    display: block;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .nav-left {
    left: 10px;
  }

  .nav-right {
    right: 10px;
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 24px;
    }

    .slide {
      min-width: 120px;
      max-width: 150px;
    }
  }

  @media (max-width: 480px) {
    .slide {
      min-width: 100px;
    }

    .nav-button {
      font-size: 18px;
    }
  }



  /* black-banner */

  .update-section {
      background-color: #000;
      border-radius: 1rem;
      padding: 2rem;
      margin: 2rem;
      color: white;
    }
    .social-icon {
      width: 3rem;
      height: 3rem;
      border: 1px solid white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
      transition: 0.3s;
      text-decoration: none;
    }
    .social-icon:hover {
      background-color: white;
      color: black;
    }
    .dot {
      width: 0.75rem;
      height: 0.75rem;
      background-color: #facc15; /* Tailwind's yellow-400 */
      border: 2px solid #facc15;
      border-radius: 50%;
    }
    .label-text {
      font-size: 0.75rem;
      text-transform: uppercase;
    }
    
    
    
/*tools css starts here*/



.inside-page-header {
    height: 400px;
    background: #000 url(../imgs/hello.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    
}

.inside-page-header h1 {
    font-size: 36px;
    line-height: 52px;
    margin: 0;
    transform: translateY(-15px);
    margin-top:100px;
}

.inside-page-header h1::first-letter {
    font-size: 72px;
    font-weight: 700;
}
/* MAIN SECTION WRAPPER */
.common-section {
    padding: 40px 0;                   /* fixed: no double-padding conflict */
    background: url(../imgs/bg-round.jpg) left 60px no-repeat;
}

/* ARTICLE SPACING FIXED */
.common-section article {
    margin-bottom: 30px;
    overflow: hidden;
}

/* HEADINGS */
.common-section h5 {
    font-weight: 600;
    margin-top: 30px;
}

/* CARD FIXES */
.common-section .card-body {
    padding: 10px;
}

.common-section .card.nav-item {
    padding-left: 0;
    margin-bottom: 10px;
}

.common-section .card.nav-item::before {
    display: none;
}

.common-section .card.nav-item .card-header {
    padding: 10px;
    background: #fddeb7;
}

.common-section .card.nav-item .card-header .card-title {
    margin-bottom: 0;
}

.common-section .card.nav-item .card-header .card-title a {
    padding: 10px !important;
    display: block;
    background: #fff;
    border-radius: 5px;
    font-size: 18px;
    color: #f89f32 !important;
    font-weight: 700;
}

.common-section .card.nav-item .card-body .h3 {
    font-size: 22px;
}

/* TOOL KEYWORD SECTION */
.tool-keyword {
    margin-bottom: 0 !important;       /* removed duplicate margin */
}

.tool-keyword .img-box img {
    max-width: 100%;
}

.tool-keyword ol {
    padding-left: 25px;
    margin: 0 0 20px;
}

.tool-keyword .tool-keyword-box {
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
    margin: 20px 2px 2px;
}

.tool-keyword .tool-keyword-box .tool-title {
    background: #ddd;
    color: #2b2929;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.tool-keyword .keyword-show-box {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #d6d4d4;
    margin-top: 10px;
}

.tool-keyword .keyword-show-box p {
    margin: 0;
}

.tool-keyword h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
.key-common-box{
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.3);
    padding:15px; 
    background: #f5f5f5;
    border-radius: 5px; 
    margin:2px 2px 20px;
    border: 4px solid #fff;
    
}
.key-common-box textarea {
    width:100%;
    height:173px;
    margin:0; 
    resize:auto;  
    border:1px solid #d6d4d4; 
    color: #000;
    background-color:#fff;
    
}
.preview-area {
    text-align: center;
}

/* Wrapper keeps grid exactly on top of image */
.preview-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

/* Image defines the size; grid stretches over it */
.preview-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* Full overlay */
.squares-grid {
    position: absolute;
    inset: 0;                 /* top:0; right:0; bottom:0; left:0; */
    display: flex;
    flex-direction: column;
    pointer-events: none;     /* let squares handle clicks */
}

/* Each row fills equal vertical space */
.squares-row {
    flex: 1;
    display: flex;
}

/* Each square fills equal horizontal space */
.square {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;     /* clickable */
}

/* Selected state */
.square.active {
    background: rgba(0, 128, 0, 0.3); /* adjust to your theme */
}
.custom-field {
    margin-bottom: 20px;
}

.custom-field .field-heading {
    font-weight: 600;
    background: #f7f7f7;          /* light grey bar */
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 8px 12px;
    border-radius: 4px 4px 0 0;
}

.custom-field .field-heading span {
    color: #d00;
}

.custom-field .form-control {
    border-radius: 0 0 4px 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.field-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}
/*fb ads preview */
/* ====== WRAPPER / LAYOUT ====== */

.fb-ad-preview {
    padding: 40px 0;
}

.fb-ad-preview #page-wrapper {
    max-width: 1260px;
    margin: 0 auto;
}

.fb-ad-preview .adbox {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.08);
    padding: 15px 20px 30px;
}

.fb-ad-preview .pageLeft {
    float: left;
    width: 55%;
}

.fb-ad-preview .pageRight {
    float: left;
    width: 45%;
    padding: 0 0 0 20px;
}

/* clearfix */
.fb-ad-preview .page::after,
.fb-ad-preview .adbox::after {
    content: "";
    display: table;
    clear: both;
}

/* ====== TOP MAIN TAB (FACEBOOK LEAD ADS) ====== */

.fb-ad-preview #nav {
    max-width: 1260px;
    margin: 0 auto 20px;
    display: flex;
    padding: 0;
    border-radius: 3px;
    list-style: none;
}

.fb-ad-preview #nav li {
    width: 100%;
}

.fb-ad-preview #nav a {
    display: block;
    text-align: left;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    border: 1px solid #f69721;
    color: #f69721;
    background: #fff;
}

.fb-ad-preview #nav a .fa {
    margin-right: 5px;
}

.fb-ad-preview #nav li.active a {
    background: #f69721;
    color: #fff;
}

.fb-ad-preview #nav li.active a:hover {
    background: #f7a137;
}

/* ====== TYPE SWITCHER (IMAGE / VIDEO / CAROUSEL) ====== */

.fb-ad-preview .pageLeft .type-switcher {
    margin-bottom: 20px;
    display: flex;
    padding: 10px;
    border: 1px solid #e5e6e9;
    border-radius: 3px;
    background: #f5f6f7;
    list-style: none;
}

.fb-ad-preview .pageLeft .type-switcher li {
    cursor: pointer;
    padding: 10px;
    flex-grow: 1;
    text-align: center;
    margin: 0 5px;
    border-radius: 3px;
    max-height: 94px;
}

.fb-ad-preview .pageLeft .type-switcher li img {
    height: 50px;
    width: 50px;
    display: block;
    margin: 0 auto;
}

.fb-ad-preview .pageLeft .type-switcher li small {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.fb-ad-preview .pageLeft .type-switcher li a {
    display: block;
    color: #333;
    text-decoration: none;
}

.fb-ad-preview .pageLeft .type-switcher li:hover {
    background: #eee;
}

.fb-ad-preview .pageLeft .type-switcher li.active {
    background: #ddd;
}

/* ====== LEFT FORM ====== */

.fb-ad-preview .pageLeft .form {
    padding: 10px 15px 15px;
    border: 1px solid #e5e6e9;
    border-radius: 3px;
    width: 100%;
    background: #fff;
}

.fb-ad-preview .pageLeft .form-section {
    margin-bottom: 20px;
}

.fb-ad-preview .pageLeft .form-section header h2 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.fb-ad-preview .pageLeft .form-section header p {
    margin: 5px 0 10px;
    font-size: 14px;
    color: #555;
}

.fb-ad-preview .pageLeft .form-section .fields {
    position: relative;
}

.fb-ad-preview .pageLeft .form-section .fields.imgupload {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fb-ad-preview .pageLeft .form-section .fields.imgupload .field {
    max-width: 68%;
    flex: 0 0 68%;
}

.fb-ad-preview .pageLeft .form-section .fields.imgupload .field.imageupload {
    max-width: 30%;
    flex: 0 0 30%;
    position: relative;
}

/* file input overlay */
.fb-ad-preview .pageLeft .form-section .fields .upload {
    position: absolute;
    height: 115px;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

/* generic field */
.fb-ad-preview .pageLeft .form-section .fields .field {
    margin-top: 10px;
    padding: 0;
    border: 1px solid #d0d1d5;
    border-radius: 3px;
    display: flex;
    align-items: stretch;
    background: #fff;
}

/* logo upload card */
.fb-ad-preview .pageLeft .form-section .fields .field.imageupload {
    display: block;
    padding: 20px 10px;
    border-style: dashed;
    text-align: center;
}

.fb-ad-preview .pageLeft .form-section .fields .field.imageupload img {
    display: block;
    margin: 0 auto 10px;
}

.fb-ad-preview .pageLeft .form-section .fields .field.imageupload p {
    margin: 0;
    font-size: 13px;
}

/* text / textarea / select inside field */
.fb-ad-preview .pageLeft .form-section .fields .field input[type="text"],
.fb-ad-preview .pageLeft .form-section .fields .field textarea,
.fb-ad-preview .pageLeft .form-section .fields .field select {
    flex-grow: 1;
    padding: 8px 10px;
    border: none;
    font-size: 15px;
    outline: none;
    box-shadow: none;
}

.fb-ad-preview .pageLeft .form-section .fields .field textarea {
    resize: vertical;
    min-height: 70px;
    font-family: inherit;
}
.prev {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      /*margin-top: 85px;*/
      margin-bottom: 40px;
    }
/* small counter on right */
.fb-ad-preview .pageLeft .form-section .fields .field .count {
    border-left: 1px solid #d0d1d5;
    padding: 0 10px;
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
}

.fb-ad-preview .pageLeft .form-section .fields .field .count.bad {
    color: #d20000;
}

/* add buttons */
.fb-ad-preview .pageLeft .addMoreBtn {
    margin-top: 5px;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 3px;
    border: 1px solid #72a34a;
    color: #fff;
    background: #72a34a;
}

/* ====== RIGHT PREVIEW COLUMN ====== */

.fb-ad-preview .pageRight .tab-content > .active {
    display: block !important;
}

/* Newsfeed / Right-hand / Mobile tabs above preview */
.fb-ad-preview .preview-switcher {
    margin-bottom: 20px;
    display: flex;
    padding: 0;
    border: 1px solid #e5e6e9;
    border-radius: 3px;
    list-style: none;
    background: #f5f6f7;
}

.fb-ad-preview .preview-switcher li {
    cursor: pointer;
    padding: 10px;
    flex-grow: 1;
    text-align: center;
    margin: 0 5px;
    border-radius: 3px;
}

.fb-ad-preview .preview-switcher li a {
    display: block;
    background-color: transparent !important;
    border: none !important;
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.fb-ad-preview .preview-switcher li:hover {
    background: #eee;
}

.fb-ad-preview .preview-switcher li.active {
    background: #ddd;
}

/* Main preview card (Newsfeed) */
.fb-ad-preview .preview article {
    border: 1px solid #e4e6eb;
    border-radius: 3px;
    background: #fff;
    font-size: 13px;
}

.fb-ad-preview .preview header {
    padding: 0px 10px 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-ad-preview .preview .profile {
    display: flex;
    align-items: center;
}

.fb-ad-preview .previewlogoimg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
    background: #eee;
}

.fb-ad-preview .previewlogoimg .avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-ad-preview .preview .title .name {
    display: block;
    font-weight: 600;
    color: #365899;
    font-size: 13px;
}

.fb-ad-preview .preview .title .sponsored {
    display: block;
    font-size: 11px;
    color: #90949c;
}

/* Like page button */
.fb-ad-preview .fb-button {
    border-radius: 2px;
    border: 1px solid #ced0d4;
    background: #f6f7f9;
    color: #4b4f56;
    padding: 3px 10px;
    font-size: 12px;
}

/* preview body */
.fb-ad-preview .txt_msg {
    padding: 0 10px 10px;
    font-size: 13px;
    color: #1d2129;
}

.fb-ad-preview .preview main {
    border-top: 1px solid #e4e6eb;
}

.fb-ad-preview .preview .previewpost img {
    display: block;
    width: 100%;
    height: auto;
}

.fb-ad-preview .preview .details {
    padding: 8px 10px 10px;
}

.fb-ad-preview .preview .details .headline {
    font-weight: 600;
    margin-bottom: 3px;
}

.fb-ad-preview .preview .details .description {
    font-size: 12px;
    color: #606770;
    margin-bottom: 6px;
}

.fb-ad-preview .preview .caption {
    font-size: 11px;
    color: #90949c;
    margin: 4px 0 0;
}

/* CTA button in card */
.fb-ad-preview .preview .details footer .fb-button {
    float: right;
}

/* stats row under card */
.fb-ad-preview .result_options {
    padding: 6px 10px 8px;
    font-size: 11px;
    color: #606770;
}

.fb-ad-preview .result_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-ad-preview .like_itm {
    display: flex;
    align-items: center;
}

.fb-ad-preview .like_itm .img_items img {
    width: 16px;
    height: 16px;
    margin-right: 3px;
}

/* Right-hand small layout */
.fb-ad-preview .righthand {
    border: 1px solid #e4e6eb;
    border-radius: 3px;
    padding: 8px;
    background: #fff;
    font-size: 12px;
}
/* Right-Hand column preview card */
.fb-ad-preview .righthand {
    width: 260px;
    margin: 20px auto;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    background: #fff;
    padding: 10px;
    font-size: 12px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    text-align: left;
}

/* Image on top */
.fb-ad-preview .righthand .previewpost.image img,
.fb-ad-preview .righthand .previewpost img {
    display: block;
    width: 100%;
    height: auto;
}

/* Text under image */
.fb-ad-preview .righthand .headline,
.fb-ad-preview .righthand .caption,
.fb-ad-preview .righthand .title .name {
    margin: 3px 0;
    font-size: 12px;
    color: #385898;          /* FB blue-like */
}

.fb-ad-preview .righthand .headline {
    font-weight: 700;
}

.fb-ad-preview .righthand .title .name {
    font-weight: 600;
}
/* ===============================
   MOBILE PREVIEW – card sizing
   =============================== */

.fb-ad-preview .preview.mobile article {
    width: 360px;            /* card width like screenshot */
    max-width: 100%;
    margin: 20px auto;       /* center on the page */
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* top section (logo + page name) already uses generic styles */

/* message text spacing */
.fb-ad-preview .preview.mobile .txt_msg {
    padding: 0 12px 10px;
}

/* image already full-width via generic .previewpost img */

/* headline + description area */
.fb-ad-preview .preview.mobile .details {
    padding: 8px 12px 10px;
}

.fb-ad-preview .preview.mobile .details .headline {
    font-weight: 700;
    margin-bottom: 2px;
}

.fb-ad-preview .preview.mobile .details .description {
    font-size: 12px;
    color: #4b4f56;
    margin-bottom: 4px;
}

.fb-ad-preview .preview.mobile .caption {
    font-size: 11px;
    color: #90949c;
}

/* CTA button on the right like real FB */
.fb-ad-preview .preview.mobile .details footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-ad-preview .preview.mobile .details footer .controls {
    order: 2;
}

.fb-ad-preview .preview.mobile .details footer .fb-button {
    padding: 5px 14px;
    border-radius: 3px;
    border: 1px solid #ccd0d5;
    background: #f5f6f7;
    color: #4b4f56;
    font-size: 12px;
}

/* stats row under card */
.fb-ad-preview .preview.mobile .result_options {
    border-top: 1px solid #e9eaed;
    padding: 6px 16px 8px;
    font-size: 12px;
    color: #616770;
}

.fb-ad-preview .preview.mobile .result_row {
    align-items: center;
}

.fb-ad-preview .preview.mobile .like_itm .img_items img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* actions row (Like / Comment / Share) */
.fb-ad-preview .preview.mobile .actions {
    border-top: 1px solid #e9eaed;
    padding: 8px 30px 12px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #616770;
}

.fb-ad-preview .preview.mobile .actions span {
    flex: 1;
    text-align: center;
    cursor: pointer;
}


/* Button at bottom */
.fb-ad-preview .righthand footer {
    margin-top: 8px;
}

.fb-ad-preview .righthand .fb-button {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid #ccd0d5;
    background: #f5f6f7;
    color: #4b4f56;
    font-size: 12px;
}


/* Carousel cards */
.fb-ad-preview .carouselcards {
    display: flex;
    gap: 8px;
    padding: 8px 10px 10px;
    overflow-x: auto;
}

.fb-ad-preview .carouselcards .card {
    min-width: 170px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    overflow: hidden;
}

.fb-ad-preview .carouselcards .card footer {
    padding: 6px 8px 8px;
}

/* promo gif under preview */
.fb-ad-preview .ad-img-bx {
    margin-top: 20px;
    text-align: center;
}

.fb-ad-preview .ad-img-bx img {
    max-width: 100%;
    height: auto;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 991px) {
    .fb-ad-preview .pageLeft,
    .fb-ad-preview .pageRight {
        float: none;
        width: 100%;
        padding: 0;
    }

    .fb-ad-preview .pageRight {
        margin-top: 20px;
    }

    .fb-ad-preview #nav {
        display: block;
    }
}
/* ====== Stats row (likes / comments / shares) ====== */
.fb-ad-preview .preview.mobile footer {
    background: #fff;
}

.fb-ad-preview .preview.mobile .result_options {
    padding: 6px 16px 4px;
    font-size: 12px;
    color: #616770;
}

.fb-ad-preview .preview.mobile .result_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* left: like icon + count */
.fb-ad-preview .preview.mobile .like_itm {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fb-ad-preview .preview.mobile .like_itm .img_items img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.fb-ad-preview .preview.mobile .like_itm .count {
    font-size: 12px;
}

/* right: comments + shares */
.fb-ad-preview .preview.mobile .comm_shar p {
    margin: 0;
    font-size: 12px;
    white-space: nowrap;
}

.fb-ad-preview .preview.mobile .comm_shar .comment_result,
.fb-ad-preview .preview.mobile .comm_shar .share_result {
    font-weight: 600;
}

/* divider line */
.fb-ad-preview .preview.mobile footer hr {
    margin: 4px 0 0;
    border: 0;
    border-top: 1px solid #e9eaed;
}

/* ====== Like / Comment / Share row ====== */
.fb-ad-preview .preview.mobile .actions {
    padding: 8px 30px 12px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #616770;
}

.fb-ad-preview .preview.mobile .actions span {
    flex: 1;
    text-align: center;
    cursor: pointer;
}
/* REMOVE EXTRA SPACE ABOVE & BETWEEN CAROUSEL GROUPS */
.carousel {
    margin: 0 !important;
    padding: 0 !important;
}

/* FIX INNER GAP BETWEEN GROUPS */
.carousel .group {
    margin: 0 0 15px 0 !important;   /* Only 15px space between cards */
    padding: 15px !important;
}

/* REMOVE ANY EXTRA GAP UNDER THE "Carousel" HEADING */
.form-section:nth-child(3),
.form-section:nth-child(4) {
    margin-bottom: 10px !important;
    padding-bottom: 0 !important;
}

/* REMOVE EXTRA SPACE COMING FROM IMPLICIT ELEMENTS */
.carousel .group .left,
.carousel .group .right {
    margin: 0 !important;
    padding: 0 !important;
}

/* PREVENT LARGE SPACE CAUSED BY INLINE BLOCK IMAGES */
.carousel img {
    display: block !important;
}

/* REMOVE EXTRA PADDING ON MESSAGE BELOW IMAGE */
.carousel .field.imageupload p {
    margin: 5px 0 0 !important;
}

/* REMOVE WHITE SPACE CREATED BY EMPTY LINE-BLOCK ELEMENTS */
.carousel .group br {
    display: none !important;
}

/* REMOVE SPACE FROM ANY P TAGS INSIDE CAROUSEL */
.carousel p {
    margin: 0 !important;
    padding: 0 !important;
}

/* FIX WRAPPER TOO LOW MARGIN */
.form-section {
    margin-bottom: 15px !important;
}

/* REMOVE DEFAULT MARGIN FROM HEADERS BEFORE CAROUSEL */
.form-section header {
    margin-bottom: 5px !important;
}

/* FINAL FIX — FORCE ZERO EXTRA SPACE BETWEEN GROUPS */
.carousel .group + .group {
    margin-top: 10px !important;
}
/*css for crousel*/
/* WRAP BOTH SECTIONS HORIZONTALLY */
.carousel .group {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 25px !important;     /* spacing between left and right */
    padding: 20px;
    border: 1px dashed #ccc;
    border-radius: 6px;
    background: #fafafa;
}

/* LEFT SIDE — IMAGE UPLOAD */
.carousel .group .left {
    width: 30% !important;
    min-width: 200px !important;
}

/*.carousel .group .left img {*/
/*    width: 100% !important;*/
/*    display: block;*/
/*}*/

.carousel .group .left .field.imageupload {
    text-align: center;
}

/* RIGHT SIDE — TEXT INPUTS */
.carousel .group .right {
    width: 70% !important;
}

.carousel .group .right .field {
    margin-bottom: 12px !important;
}

/* FORCE INPUTS TO USE FULL WIDTH */
.carousel .group input,
.carousel .group select {
    width: 100% !important;
    height: 38px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* OPTIONAL – REDUCE TOP/BOTTOM SPACING */
.carousel .group + .group {
    margin-top: 20px !important;
}

/* NO MORE WEIRD LINE BREAKS */
.carousel br {
    display: none !important;
}
.imageupload img{
    height:40px;
    width:auto;
}
.query-output {
    width: 100%;
    height: 42px;         /* normal input height */
    line-height: 42px;
    padding: 8px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;   /* show "..." if long */
}


/*Services css start here */
/* ========= Utility ========= */

.align-center-vert {
    align-items: center;
}

/* ========= HERO / INNER HEADER ========= */

.inner-hero-web {
    position: relative;
    padding: 140px 0 80px;           /* extra top space for fixed nav */
    min-height: 320px;
    background: #000 url("../imgs/hello.jpg") no-repeat center center;
    background-size: cover;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
}

.inner-hero-web::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.35)
    );
    pointer-events: none;
}

.inner-hero-web .container {
    position: relative;
    z-index: 1;
}

.inner-hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
}

.inner-hero-content h1::first-letter {
    font-size: 72px;
    font-weight: 700;
}

.inner-hero-content p {
    max-width: 640px;
    font-size: 16px;
    color: #f0f0f0;
    margin: 0;
}

/* ========= Section 1 – Intro ========= */

.section-intro-web {
    padding: 70px 0;
    background: #ffffff;
}

.intro-text-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.intro-text-block p {
    max-width: 760px;
    margin: 0 auto 25px;
    font-size: 15px;
    color: #555;
}

.section-intro-web article h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-intro-web article p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

/* Right image card */

.intro-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: #f8f9fb;
}

.intro-image-bg {
    width: 100%;
    padding-top: 70%; /* aspect ratio */
    background-image: url("../imgs/wd2.jpg");  /* update path if needed */
    background-size: cover;
    background-position: center;
}

/* ========= Section 2 – Why Choose Us ========= */

.section-why-web {
    background: #f3f5f9;
    padding: 70px 0;
}

.why-image-side {
    min-height: 320px;
    background-image: url("../imgs/web-development.jpg");  /* update path if needed */
    background-size: cover;
    background-position: center;
}

.why-text-box {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.why-text-box h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-text-box h5 {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}

.why-border-line {
    display: inline-block;
    width: 70px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff6b6b, #ffa64d);
    margin: 12px 0 18px;
}

/* bullet list */

.why-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-bullet-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.why-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
}

/* ========= Section 3 – Features ========= */

.section-web-features {
    padding: 10px 0 2px;
    background: #ffffff;
}

.section-web-features .intro-text-block p {
    margin-bottom: 40px;
}

.feature-card-web {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card-web figure {
    margin-bottom: 14px;
}

.feature-card-web img {
    max-width: 80px;
    height: auto;
}

.feature-card-web h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card-web p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.feature-card-web:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* CTA under cards */

.features-cta {
    text-align: center;
    margin-top: 40px;
}

.features-cta .btn {
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 14px;
}

/* ========= Responsive tweaks ========= */

@media (max-width: 991.98px) {
    .inner-hero-web {
        padding: 120px 0 60px;
    }

    .inner-hero-content h1 {
        font-size: 26px;
    }

    .why-text-box {
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .inner-hero-content p {
        max-width: 100%;
    }

    .feature-card-web {
        max-width: 340px;
        margin: 0 auto;
    }
}

/* container tweaks */
        .respad-container {
            max-width: 1250px;
        }

        /* LEFT PANEL -------------------------------------------------- */
        .respad-panel {
            background: #ffffff;
            border-radius: 8px;
            padding: 16px 18px 18px;
            box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
            border: 1px solid #e5e7eb;
        }

        .respad-label-main {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .respad-section-title {
            font-size: 14px;
            font-weight: 600;
            margin: 14px 0 6px;
        }

        .respad-row {
            margin-bottom: 8px;
        }

        .respad-sub-label {
            font-size: 12px;
            font-weight: 600;
            color: #4b5563;
            margin-bottom: 4px;
        }

        .respad-flex-line {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .respad-input,
        .respad-textarea {
            font-size: 13px;
            border-radius: 4px;
        }

        .respad-textarea {
            resize: vertical;
        }

        .respad-count {
            min-width: 52px;
            font-size: 11px;
            text-align: center;
            padding: 2px 4px;
            border-radius: 3px;
            border: 1px solid #d1d5db;
            background: #f9fafb;
            color: #6b7280;
        }

        .respad-count.respad-over {
            border-color: #dc2626;
            color: #b91c1c;
            background: #fee2e2;
        }

        .respad-path-slash {
            padding: 0 4px;
            color: #6b7280;
        }

        .respad-actions {
            margin-top: 14px;
            display: flex;
            gap: 8px;
            justify-content: flex-end;
        }

        /* RIGHT SIDE – DESKTOP PREVIEW -------------------------------- */
        .respad-preview-block {
            background: #ffffff;
            border-radius: 8px;
            padding: 14px 16px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
        }

        .respad-preview-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .respad-card {
            border: 1px solid #dadce0;
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 13px;
            background: #ffffff;
        }

        .respad-sponsored {
            font-size: 11px;
            color: #5f6368;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .respad-url-line {
            font-size: 12px;
            color: #5f6368;
            margin-bottom: 4px;
        }

        .respad-ad-label {
            font-weight: 600;
        }

        .respad-domain {
            color: #202124;
        }

        .respad-headline {
            font-size: 15px;
            color: #1a0dab;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .respad-path-text {
            font-size: 12px;
            color: #006621;
            margin-bottom: 4px;
        }

        .respad-description {
            font-size: 12px;
            color: #4d5156;
        }

        /* MOBILE PHONE PREVIEW ---------------------------------------- */
        .respad-phone-wrapper {
            margin-top: 20px;
        }

        .respad-phone {
            width: 270px;
            height: 500px;
            border-radius: 32px;
            background: #222;
            margin: 8px auto 0;
            padding: 12px;
            position: relative;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
        }

        .respad-phone-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 10px;
            border-radius: 999px;
            background: #111;
        }

        .respad-phone-inner {
            background: #ffffff;
            border-radius: 26px;
            width: 100%;
            height: 100%;
            padding: 16px 10px 14px;
            overflow-y: auto;
            font-size: 12px;
        }

        .respad-phone-inner::-webkit-scrollbar {
            width: 4px;
        }

        .respad-phone-inner::-webkit-scrollbar-thumb {
            background: #d4d4d8;
            border-radius: 999px;
        }

        .respad-google-bar {
            text-align: center;
            margin-bottom: 10px;
        }

        .respad-google-logo {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .respad-google-logo span:nth-child(1) { color: #4285f4; }
        .respad-google-logo span:nth-child(2) { color: #ea4335; }
        .respad-google-logo span:nth-child(3) { color: #fbbc05; }
        .respad-google-logo span:nth-child(4) { color: #4285f4; }
        .respad-google-logo span:nth-child(5) { color: #34a853; }
        .respad-google-logo span:nth-child(6) { color: #ea4335; }

        .respad-search-pill {
            margin: 6px auto 2px;
            height: 26px;
            border-radius: 999px;
            border: 1px solid #dadce0;
            max-width: 210px;
            background: #f1f3f4;
        }

        .respad-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 10px;
            color: #5f6368;
            margin-bottom: 8px;
        }

        .respad-tabs span:first-child {
            color: #1a73e8;
            border-bottom: 2px solid #1a73e8;
            padding-bottom: 2px;
        }

        .respad-phone-card {
            border-radius: 10px;
            border: 1px solid #dadce0;
            padding: 8px 10px;
            background: #fff;
        }

        .respad-phone-sponsored {
            font-size: 10px;
            color: #5f6368;
            margin-bottom: 2px;
        }

        .respad-phone-url {
            font-size: 11px;
            color: #5f6368;
            margin-bottom: 3px;
        }

        .respad-phone-headline {
            font-size: 13px;
            color: #1a0dab;
            font-weight: 500;
            margin-bottom: 3px;
        }

        .respad-phone-desc {
            font-size: 11px;
            color: #4d5156;
        }

        @media (max-width: 991.98px) {
            .respad-panel {
                margin-top: 10px;
            }

            .respad-phone {
                width: 240px;
                height: 460px;
            }
        }

.service-packages {
  background: #f8fafc;
  overflow-x: hidden; /* FIX horizontal scroll */
}

.service-packages .section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 30px 0 0 0;
}

.service-packages .section-heading .gl {
  display: inline-block;
  width: 80px;
  height: 3px;
  background: #16a34a;
  border-radius: 999px;
}

/* Grid for packages (Responsive + FIXED width overflow) */
.service-packages .packages-grid {
  margin-top: 40px;
  display: grid;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box; /* FIX */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Card styles */
.service-packages .package-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e5e7eb;
}

.service-packages .package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.14);
}

.service-packages .package-header {
  padding: 18px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #16a34a0f, #16a34a12);
}

.service-packages .package-header h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.service-packages .package-header small {
  font-size: 12px;
  color: #6b7280;
}

.service-packages .package-body {
  padding: 18px 20px 20px;
}

.service-packages .package-body p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.service-packages .package-body p:last-child {
  margin-bottom: 0;
}

.service-packages .package-body .sm-pkg {
  font-weight: 600;
  color: #374151;
}

.service-packages .package-body .price {
  font-weight: 700;
  font-size: 15px;
  color: #16a34a;
}

/* First column card (heading column) */
.service-packages .package-cover {
  background: #0f172a;
  color: #e5e7eb;
}

.service-packages .package-cover .package-header {
  background: transparent;
  border-bottom-color: rgba(148, 163, 184, 0.4);
}

.service-packages .package-cover .package-body p {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.service-packages .package-cover .package-body p strong {
  font-size: 15px;
}

/* Accent colors */
.service-packages .package-card.basic .package-header {
  border-bottom-color: #bbf7d0;
}
.service-packages .package-card.standard .package-header {
  border-bottom-color: #bfdbfe;
}
.service-packages .package-card.professional .package-header {
  border-bottom-color: #fed7aa;
}
.service-packages .package-card.ecommerce .package-header {
  border-bottom-color: #fbcfe8;
}

/* Bottom sections */
.service-packages .note,
.service-packages .pkg-discounts,
.service-packages .pkg-disclaimer {
  margin-top: 30px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.service-packages .note p,
.service-packages .pkg-disclaimer p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.service-packages .pkg-discounts h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-packages .pkg-discounts ul {
  padding-left: 18px;
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.service-packages .pkg-discounts ul ul {
  margin-top: 6px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .service-packages {
    padding: 40px 0;
  }

  .service-packages .section-heading h2 {
    font-size: 24px;
  }

  .service-packages .package-body p {
    font-size: 13px;
  }

  .service-packages .package-body .price {
    font-size: 14px;
  }
}

/* Hosting Extra Section (Already Namespaced) */
.hosting-extra-wrapper .extra-card {
  background: #fff;
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.hosting-extra-wrapper .extra-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.hosting-extra-wrapper .extra-list {
  padding-left: 18px;
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.hosting-extra-wrapper .extra-list li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.hosting-extra-wrapper .extra-inner-list {
  margin-top: 6px;
  padding-left: 18px;
  font-size: 13px;
  color: #6b7280;
}

.hosting-extra-wrapper .extra-list li strong {
  color: #16a34a;
}




/* ===== Website Maintenance Table Section ===== */
.maintenance-packages {
  padding: 60px 0;
  background: #ffffff;
}
/* heading */
.maintenance-packages .section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.maintenance-packages .section-heading .gl {
  display: inline-block;
  width: 80px;
  height: 3px;
  background: #16a34a;
  border-radius: 999px;
}

/* table wrapper – handles horizontal scroll only inside table */
.maintenance-table-wrapper {
  margin-top: 30px;
  overflow-x: auto;
}

/* base table */
.maintenance-table {
  width: 100%;
  min-width: 980px; /* keeps structure like screenshot */
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* header */
.maintenance-table thead th {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  background: #f9fafb;
  font-weight: 700;
}

.maintenance-table thead th:last-child {
  border-right: none;
}

.maintenance-table thead .col-services {
  width: 22%;
  text-align: left;
}

.maintenance-table .plan-name {
  font-size: 15px;
}

.maintenance-table .plan-price {
  font-size: 16px;
  font-weight: 700;
  color: #16a34a;
}

.maintenance-table .plan-price span {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  margin-left: 2px;
}

/* body cells */
.maintenance-table tbody td {
  padding: 10px 12px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  vertical-align: middle;
  background: #ffffff;
}

.maintenance-table tbody td:first-child {
  text-align: left;
  background: #fafafa;
}

.maintenance-table tbody td small {
  font-size: 11px;
  color: #6b7280;
}

/* column background stripes */
.maintenance-table tbody td:nth-child(2),
.maintenance-table thead th:nth-child(2),
.maintenance-table tfoot td:nth-child(2) {
  background-color: #fff3dd;
}

.maintenance-table tbody td:nth-child(3),
.maintenance-table thead th:nth-child(3),
.maintenance-table tfoot td:nth-child(3) {
  background-color: #fff7e6;
}

.maintenance-table tbody td:nth-child(4),
.maintenance-table thead th:nth-child(4),
.maintenance-table tfoot td:nth-child(4) {
  background-color: #e8ffe0;
}

.maintenance-table tbody td:nth-child(5),
.maintenance-table thead th:nth-child(5),
.maintenance-table tfoot td:nth-child(5) {
  background-color: #f0ffe7;
}

/* tick / cross styling */
.maintenance-table .tick {
  color: #16a34a;
  font-size: 18px;
  font-weight: 700;
}

.maintenance-table .cross {
  color: #e11d48;
  font-size: 18px;
  font-weight: 700;
}

/* footer buttons */
.maintenance-table tfoot td {
  padding: 12px 12px 16px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.maintenance-table tfoot td:first-child {
  border-right: 1px solid transparent;
}

.btn-plan {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 4px;
  background: #f59e0b;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid #d97706;
}

.btn-plan:hover {
  background: #d97706;
  color: #fff;
}



/* responsive tweaks */
@media (max-width: 767px) {
  .maintenance-packages {
    padding: 40px 0;
  }

  .maintenance-packages .section-heading h2 {
    font-size: 24px;
  }
}




/* Grid wrapper */
.host-disc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* Individual card */
.host-disc-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 16px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
    transition: 0.2s;
}

.host-disc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* Header: percent + label */
.host-disc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Big percentage circle */
.host-disc-percent {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.host-disc-percent-blue {
    background: linear-gradient(135deg,#2563eb,#4f46e5);
}

.host-disc-percent-green {
    background: linear-gradient(135deg,#16a34a,#22c55e);
}

.host-disc-percent-orange {
    background: linear-gradient(135deg,#f97316,#f59e0b);
}

.host-disc-tag {
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

/* Body */
.host-disc-body h5 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
}

.host-disc-body p {
    font-size: 14px;
    color: #444;
}

/* Conditions list */
.host-disc-conditions {
    padding-left: 18px;
    margin-top: 6px;
    font-size: 14px;
    color: #555;
}

.host-disc-conditions li {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .host-disc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .host-disc-grid {
        grid-template-columns: 1fr;
    }
}





/* HEADINGS */
.work-terms-heading,
.definitions-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f2937;
    text-align: left;
}

/* CARD WRAPPER */
.work-terms-card,
.definitions-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 35px;
}

/* LIST STYLE */
.work-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-terms-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
    color: #444;
}

.work-terms-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-weight: bold;
}

/* PARAGRAPHS inside card */
.definitions-card p {
    margin-bottom: 16px;
    line-height: 1.55;
    color: #444;
}

/* DISCLAIMER */
.work-disclaimer {
    margin-bottom: 35px;
}

/* Responsive */
@media (max-width: 768px) {
    .work-terms-card,
    .definitions-card {
        padding: 18px;
    }
}


/* Enable horizontal scroll on mobile */
.mobile-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

@media (max-width: 768px) {

    .maintenance-table {
        border-collapse: separate;
        border-spacing: 0;
    }

    /* FIXED + Balanced Width */
    .maintenance-table th.col-services,
    .maintenance-table td:first-child {
        position: sticky;
        left: 0;
        background: #ffffff;
        z-index: 10;
        width: 150px;          /* Increased from 120 → 150px */
        min-width: 150px;
        font-size: 14px;       /* Slightly larger for readability */
        padding: 10px 8px;     /* More breathing space */
        border-right: 1px solid #ddd;
    }

    /* Show small description but slightly dim it */
    .maintenance-table td:first-child small {
        display: block;
        font-size: 11px;
        opacity: 0.7;
    }

    /* Soft shadow for depth */
    .maintenance-table td:first-child {
        box-shadow: 2px 0 6px rgba(0,0,0,0.12);
    }

    /* Other columns */
    .maintenance-table th,
    .maintenance-table td {
        font-size: 13.5px;
        padding: 10px;
        min-width: 120px;      /* Slightly wider for good visibility */
    }

    /* Table scroll width */
    .mobile-scroll table {
        width: 780px;
    }
}

