/* header  */

 /* Main dropdown */
.mega-dropdown.multi-column {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
}

.mega-dropdown.multi-column .column {
    list-style: none;
    padding: 0;
    min-width: 200px;
}

/* Startup wale menu ke liye */
.mega-dropdown.cat-startup {
    min-width: 800px;
    padding-left: 30px !important;
}

/* Trademark wale menu ke liye */
.mega-dropdown.cat-trademark {
    min-width: 400px;
}

/* Ngo wali category ke liye */
.mega-dropdown.cat-ngo {
    background: #f8f8f8;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .mega-dropdown {
        flex-direction: column;
        min-width: 100%;
    }
}

.cat-startup {
    min-width: 480px;
    column-count: 2 !important;
}

.cat-registration {
    min-width: 800px;
    padding: 10px 20px !important;
}

.cat-compliances {
    min-width: 750px;
    padding: 10px 20px !important;
}

.cat-tax-filling {
   min-width: 750px;
    padding: 10px 20px !important;
}

.cat-trademark {
    min-width: 660px !important;
    padding: 10px 20px !important;
}

.cat-company-convert {
        min-width: 535px;
    padding: 10px 20px !important;
    column-gap: 20px !important;
    column-count: 2 !important;
}

.cat-iso {
    min-width: 360px;
    column-count: 2;
    padding: 10px 20px !important;
}

.cat-ngo {
    background: #f8f8f8;
    column-count: 1;
    min-width: 100px;
    padding: 10px 20px !important;
}


/* home page  */

/* Slider container */
.custom-slider {
    position: relative;
    overflow: hidden;
}
.custom-slider .slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}
.custom-slider .slide.active {
    display: block;
    opacity: 1;
}

/* Moving Overlay */
.slide-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, #010c3a 0%, rgb(255 252 252 / 57%) 43%, #ffffff 100%);
    z-index: 1;
    background-size: 200% 100%;
    animation: slideOverlay 5s linear infinite;
}


/* Content above overlay */
.row-custom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
}

.text-content {
    flex: 1;
    max-width: 40%;
}
.text-content h1.slide-heading {
    font-size: 36px;
    font-weight: bold;
    margin: 15px 0;
    color: #ffffff;
}
.text-content p.slide-description {
    font-size: 16px;
    color: #ffffff;
}

/* Central Graphic Area */
.graphic-center {
    display: flex;
    flex: 1;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 80px;
}
.graphic-left, .graphic-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-box {
    background: #f7f7f7;
    padding: 15px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.info-box.red { border-left: 5px solid #df0303; }

/* Navigation arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    color: #010c3a;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
}
.slider-btn:hover {
    background: rgba(0,0,0,0.8);
    color: #fff;
}
.slider-btn.prev { left: 15px; }
.slider-btn.next { right: 15px; }

/* Responsive */
@media (max-width: 1200px) {
    .row-custom { flex-direction: column; text-align: center; gap: 30px; }
    .text-content { max-width: 80%; margin: 0 auto; }
    .graphic-center { flex-direction: column; gap: 20px; padding: 20px; }
    .content-block .sec-title {position: relative; display: block; margin-left: 15px; margin-top: 40px; }
    .about-section .single-item { gap: 0px; margin-left: 15px; }
    .more-btn.mt_60 {margin-left: 15px;}
    .content-block .text {margin-left: 15px;}

}
@media (max-width: 768px) {
    .custom-slider .slide { height: 400px; }
    .text-content h1.slide-heading { font-size: 19px; margin-bottom: 10px; }
    .text-content p.slide-description {         font-size: 12px;
        line-height: 20px;
        margin-bottom: 20px; }
}
@media (max-width: 480px) {
    .custom-slider .slide { height: 300px; }
    .slider-btn { width: 40px; height: 40px; font-size: 24px; }
    .text-content h1.slide-heading { font-size: 16px; }
    .text-content p.slide-description { font-size: 12px; }
    .graphic-center { padding: 10px; gap: 10px; }
}

/* Responsive */
@media(max-width: 768px) {
    .row-custom {
        flex-direction: column;
    }

    .text-content,
    .graphic-center {
        max-width: 100%;
        text-align: center;
    }

    .graphic-left,
    .graphic-right {
        display: block;
    }

    .info-box.red a {
    color: #010c3a;
    font-size: 11px;
    line-height: 18px;
}

    .info-box {
        margin: 10px;
        width: 100px;
    }

    @media (max-width: 768px) {
    .text-content h1 {
        font-size: 24px;
    }
    .text-content p {
        font-size: 14px;
    }
    .graphic-center {
        flex-direction: row;
        gap: 10px;
        margin-top: -65px;
    }
    .info-box {
        max-width: 100%;
                   margin-bottom: -6px;
                    padding: 2px;
    }
}

}



.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


.project-block-one {
    flex: 0 0 auto;
    width: 200px; /* Adjust width as needed */
}

.project-block-one .inner-box {
    border-radius: 8px;
    overflow: hidden;
}

.project-block-one img {
    width: 100%;
    display: block;
}

.info-box.red a {
    color: #010c3a;
}


/* partners page  */
.experiance-section {
    background: #fdf6f6;
    padding: 80px 0;
}

.partnerbenefit .benefit-card {
    background: #fff;
    padding: 40px 20px 30px;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnerbenefit .benefit-card::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, #ff4d4d, #d40000);
    top: -100%;
    left: -100%;
    opacity: 0.15;
    transform: rotate(25deg);
}

.partnerbenefit .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d40000;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.icon-wrapper:hover {
   background: #222843 !important;
}


.icon-wrapper img {
    width: 50%;
    height: auto;
}

.partnerbenefit .benefit-card:hover .icon-wrapper {
    background: #222843;
    transform: scale(1.1);
}

.partnerbenefit h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.partnerbenefit p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}


    .default-form input,
    .nice-select,
    .default-form textarea {
        padding: 12px;
        border-radius: 6px;
            border: 1px solid #dddddd !important;
    background: #fff !important;
        width: 100%;
        margin-bottom: 15px;
        font-size: 14px;
    }
    .default-form button {
        padding: 12px 30px;
        border-radius: 6px;
        font-size: 16px;
        background: #d40000;
        color: #fff;
        border: none;
    }
    .default-form button:hover {
        background: #222843;
    }

    section.py-5.partner-form .container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #d3d3d3;
    max-width: 1290px;
    
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: marquee 20s linear infinite;
}

.project-block-one {
    flex: 0 0 auto;
    width: 200px; /* Adjust width as needed */
}

.project-block-one .inner-box {
    border-radius: 8px;
    overflow: hidden;
}

.project-block-one img {
    width: 100%;
    display: block;
}

/* Marquee animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scroll half width since we repeated items */
}

.slider-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* or contain depending on layout */
}

/* services  */


.container-dark {
    max-width: 1310px;
    margin: auto;
    padding: 40px 30px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.offer-section {
    flex: 1 1 45%;
    background: #fff;
    padding: 55px 60px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px #010c3a7d;
    border-radius: 16px;
    gap: 15px;
}

.offer-title {
    font-size: 29px;
    font-weight: 800;
    color: #df0303;
    text-transform: uppercase;
    line-height: 35px;
    text-align: center;
}

.price-tag {
    font-size: 20px;
    font-weight: 800;
    color: #df0303;
    text-align: center;
}

.price-tag del {
    color: #777;
    margin-right: 16px;
    font-weight: 400;
    font-size: 20px;

}

.price-tag small {
    color: #8b8383;
    font-weight: 400;
    font-size: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    margin-left: 65px;
    margin-top: 20px;
}
ul.features-list li:before {
    content: "";
    position: absolute;
    width: 10px;
    border-radius: 50%;
    left: 100px;
    background: #df0303;
    height: 10px;
        margin-top: 8px;
}

.features-list li {
   font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.04em;
    color: #000;
}

.info-blocks {
    display: flex;
    gap: 30px;
}

.info-block {
    background: #010c3a;
    padding: 18px;
    border-radius: 12px;
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 0 20px #010c3a7d;
}

.info-block img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 4px #010c3a7d);
}

.info-block strong {
    font-weight: 700;
    font-size: 16px;
    color: #ffffffff;
    margin-bottom: 6px;
}

.info-block p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.special-offer-badge {
    margin-top: 30px;
    background: #df0303;
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 40px;
    width: fit-content;
    letter-spacing: 0.1em;
    user-select: none;
}

.form-section {
    flex: 1 1 38%;
    background: #010c3a;
    border-radius: 16px;
    padding: 30px 30px;
    box-shadow: 0 0 20px #010c3a7d;
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 14.5px;
    margin-bottom: 8px;
    display: block;
}

input.form-control {
    width: 100%;
    background: #ffffffff;
    border: 1.5px solid #ffffffff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #eee;
    margin-top: 20px;
    transition: border-color 0.3s ease;
}

input.form-control::placeholder {
    color: #888;
}

input.form-control:focus {
    border-color: #ff7979;
    outline: none;
    box-shadow: 0 0 20px #010c3a7d;
}

.form-check {
    margin-top: 15px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    accent-color: #df0303;
}

.form-check-label {
    margin-left: 10px;
    color: #bbb;
    font-size: 15.5px;
}

button.btn-danger {
    background: #df0303;
    border: none;
    padding: 12px 0;
    font-weight: 900;
    font-size: 18px;
    border-radius: 14px;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn-danger:hover {
    background: #e04141;
}

/* GST input hidden initially */
#gstField {
    margin-top: 15px;
    display: none;
}


.how-it-works {
    width: 100%;
    color: #eee;
    text-align: center;
        padding: 80px;
}

.how-it-works h2 {
    font-weight: 900;
    font-size: 34px;
    margin-bottom: 45px;
    letter-spacing: 0.1em;
    color: #010c3a;
    text-transform: uppercase;
}

.how-cards {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.work-card {
    background: #010c3a;
    border-radius: 18px;
    padding: 30px 19px;
    width: 275px;
       box-shadow: 0 10px 30px rgb(188 188 189 / 68%);
    transition: transform 0.25s ease;
    cursor: default;
}

.work-card:hover {
    transform: translateY(-12px);
}

.work-card img {
    width: 50px;
    margin-bottom: 25px;
}

.work-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffffff;
}

.work-card p {
  font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

/* Service description */
.service-desc {
    max-width: 1310px;
    border-radius: 16px;
    margin: 0px;
    padding: 35px 40px;
    color: #010c3a;
    font-size: 16px;
    line-height: 1.7;
}

h3 strong {
    font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .container-dark {
        flex-direction: column;
    }
    .offer-section, .form-section {
        flex: 1 1 100%;
    }
    .how-cards {
        flex-direction: column;
        align-items: center;
    }
}


.responsive-banner {
  position: relative;
  overflow: hidden;
  background: #df0303;
  border-radius: 12px;
  padding: 15px 0;
  box-shadow: 0 6px 24px rgba(255, 82, 82, 0.4);
  user-select: none;
  width: 100%;
  margin-top: 60px;
}

.banner-wrapper {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.banner-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: #fff;
  padding: 0 25px;
  white-space: nowrap;
  user-select: none;
}

.banner-item img {
  height: 40px;
  width: 40px;
  filter: drop-shadow(0 0 3px #121212);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.service-desc div p {
    margin: 6px 0px !important;
    font-size: 18px !important;
}

.service-desc ol {
    padding: 0px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-align: left;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

table thead {
    background-color: #010c3a;
    color: #fff;
}
table th, table td {
    padding: 12px 20px;
    border: 1px solid #dee2e6;
}

.service-desc ul li {
    font-size: 18px;
    margin-top: 5px;
    color: gray;
}
.service-desc h3 {
    margin: 16px 0px;
}

.service-desc h3 {
    margin: 16px 0px;
    font-size: 25px;
    font-weight: 600;
}
.ribbon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.ribbon {
    position: absolute;
    display: block;
    width: 160px;
    background: #df0303;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    transform: rotate(-45deg);
    top: 30px;
    left: -40px;
    box-shadow: 0 3px 10px -5px rgba(0,0,0,0.3);
}



/* digital page  */
.hero-section {
  position: relative;
  height: 600px;
  background-image: url("{{ asset('public/frontend/assets/images/Registration.jpg') }}");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background: #010c3a7d; /* Your overlay color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  z-index: 2;
}

.hero-content {
  color: #fff;
  max-width: 900px;
  margin-top: 40px;
  z-index: 2;
}

.subtitle {
  font-size: 23px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.title {
  font-size: 48px;
  font-weight: bold;
  margin: 10px 0;
  color: #ffffff;
}

.title .highlight {
  color: #df0303;
}

.description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.btn-primary {
  background: #df0303;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #010c3a;
      color: #fff;
}

/* ✅ Stats Glass Cards */
.hero-counters {
  position: relative;
  top: 0px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 20px;
  max-width: 1200px;
   margin-top: 50;
  z-index: 3;
      border: 1px solid #aba9a9;
    border-radius: 20px;
}

.counter-box {
  background: rgba(1, 12, 58, 0.4); /* Glassy dark blue */
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  min-width: 200px;
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
  background: rgb(223 3 3 / 43%); /* red overlay on hover */
}

.counter-box h2 {
  font-size: 36px;
  margin: 0 0 10px;
  color: #ffffff;
  font-weight: bold;
}

.counter-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content .title {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
  }
}


/* ------------------------------
   Services Section Layout
------------------------------ */
.digital-services-section {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow: hidden; /* Hide visible scrollbars */
}

.digital-services-grid {
  display: flex;
  flex-direction: column;
}

.digital-service-block {
  scroll-snap-align: start;
  min-height: 100vh; /* Full page height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  box-sizing: border-box;
}

/* ------------------------------
   Service Card
------------------------------ */
.digital-service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px #b0b0b7;
  padding: 40px 60px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  transform: scale(0.95);
  opacity: 1;
}

.digital-service-card.active {
  transform: scale(1);
  box-shadow: 0 20px 50px rgba(0, 86, 210, 0.25);
}

/* ------------------------------
   Content Area
------------------------------ */
.digital-service-content {
  flex: 1;
  padding: 20px;
}

.tags {
  margin-bottom: 12px;
  text-align: left;
}

.tag {
  display: inline-block;
  background: #e6f0ff;
  color: #082b5f;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 8px;
}

.digital-service-content h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  color: #082b5f;
  text-align: left;
}

.digital-service-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
}

.stats {
  display: flex;
  gap: 28px;
  margin-bottom: 14px;
}

.stat {
  font-weight: 700;
  color: #082b5f;
      font-size: 25px;
}

.stat span {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 15px;
}

/* ------------------------------
   Video Area
------------------------------ */
.digital-service-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-service-image video {
  width: 100%;
  max-width: 550px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  filter: brightness(80%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card.active .digital-service-image video {
  transform: scale(1);
  filter: brightness(100%);
}

.digital-service-image video:hover {
  transform: scale(1.05);
  filter: brightness(110%);
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 992px) {
  .digital-service-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px;
  }

  .digital-service-content {
    padding: 10px;
  }

  .digital-service-image video {
    max-width: 90%;
    height: auto;
  }

  .digital-service-content h2 {
    font-size: 1.75rem;
  }
}

/* ------------------------------
   Hide Scrollbars
------------------------------ */
body {
  scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* than you page  */
.thank-you-section {
    background: #f8f9fa;
}
.thank-you-box,
.error-box {
    border: 1px solid #dee2e6;
}

    a.btn.btn-primary.mt-4 {
    background: #df0303;
    border: #df0303;
}

.thank-you-section p {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

/* blog page  */
   blockquote {
    padding: 0px !important;
    margin: 0px !important;
}

.lower-content ul li {
    color: #757575;
    line-height: 33px;
}
.sidebar-page-container .news-block-one .inner-box .lower-content h2 {
    display: block;
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 10px;
}


.widget-content ul.category-list{
    margin-bottom: 20px;
}


.sidebar-page-container .news-block-one .inner-box .lower-content h3 {
    font-size: 22px;
    line-height: 38px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-align: left;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

table thead {
    background-color: #010c3a;
    color: #fff;
}
table th, table td {
    padding: 12px 20px;
    border: 1px solid #dee2e6;
}
table th, table td {
    padding: 12px 20px;
    border: 1px solid #dee2e6;
    line-height: 24px;
}
.blog-details-content .news-block-one .inner-box .lower-content p {
    margin-bottom: 18px;
}

/* enquiry page  */

  .enquiry-wrapper {
    max-width: 1240px;
    margin: 60px auto 80px;
    padding: 40px 30px 50px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgb(0 0 0 / 0.1);
  }

  .form-header {
    margin-bottom: 40px;
  }

  .form-header h1 {
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 0.3rem;
    color: #010c3a;
  }

  .form-header p {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    margin-bottom: 0;
  }

  form input[type="text"],
  form input[type="email"],
  form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 400;
    color: #222;
    border: 1.5px solid #dce3e7;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s;
  }
  form input[type="text"]:focus,
  form input[type="email"]:focus,
  form textarea:focus {
    border-color: #7f00ff;
  }
  textarea {
    resize: vertical;
    min-height: 100px;
  }

  label {
    font-weight: 600;
    font-size: 18px;
    color: #444;
    margin-bottom: 8px;
    display: block;
  }

  /* Service checkboxes styling */
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 35px;
  }

  .service-option {
    cursor: pointer;
    text-align: center;
    border: 1.5px solid #dce3e7;
    border-radius: 12px;
    background: #fafafa;
    padding: 20px 3px 38px;
    font-size: 17px;
    color: #3d3d3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    user-select: none;
    transition: all 0.3s ease;
  }

  .service-option svg {
    stroke: currentColor;
    width: 32px;
    height: 32px;
  }

  input[type="checkbox"] {
    display: none;
  }
  input[type="checkbox"]:checked + label.service-option {
        border-color: #010c3a;
    background: #010c3a;
    color: #ffffff;
    box-shadow: 0 0 8px #000000;
  }
  input[type="checkbox"]:checked + label.service-option svg {
    stroke: #ffffff;
  }

  /* Budget and timeline radio buttons */
  .options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 15px;
    margin-bottom: 40px;
  }
  input[type="radio"] {
    display: none;
  }
  label.option-btn {
    cursor: pointer;
    border: 1.5px solid #dce3e7;
    border-radius: 12px;
    background: #fafafa;
    padding: 12px 20px;
    font-size: 18px;
    color: #3d3d3d;
    user-select: none;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
  }
  input[type="radio"]:checked + label.option-btn {
    background: linear-gradient(90deg, #010c3a, #010c3a);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 15px #010c3a;
  }
  input[type="radio"]:focus + label.option-btn {
    box-shadow: 0 0 6px #7f00ffaa;
  }

  /* Submit button */
  button.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #010c3a, #010c3a);
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 36px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  button.btn-submit:hover {
    opacity: 0.95;
    box-shadow: 0 0 15px #010c3a;
  }

  button.btn-submit svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2;
  }

  @media (max-width: 768px) {
    .services-container {
      grid-template-columns: repeat(2, 1fr);
    }
    .options-container {
      justify-content: center;
    }
  }

  /* raised page  */

  /* General Section */
.ticket-section {
    background: #f9fafb;
    padding: 60px 0;
}

.ticket-search-box {
    background: linear-gradient(135deg, #df0303, #a10202);
    padding: 60px 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.15);
}
.ticket-search-box h2 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
.ticket-search-box p {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 15px;
    color: #fff;
}
.ticket-search-box .input-group {
    margin: 20px auto 0;
    max-width: 500px;
}
.ticket-search-box .form-control {
    border-radius: 10px 0 0 10px;
    border: none;
    padding: 14px;
}
.ticket-search-box .btn {
    border-radius: 0 10px 10px 0;
    padding: 14px 25px;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
.faq-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}
.accordion-box {
    list-style: none;
    padding: 0;
    margin: 0;
}
.accordion .acc-btn {
    padding: 15px;
    background: #f4f5f7;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion .acc-btn:hover {
    background: #eceef0;
}
.accordion .acc-content {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}
.accordion .acc-content.current {
    display: block;
}

/* Ticket Form */
.ticket-form {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.08);
}
.ticket-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}
.ticket-form label {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
}
.ticket-form label span {
    color: red;
}
.ticket-form .form-control {
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 12px;
}
.ticket-form button {
    width: 100%;
    border-radius: 10px;
    padding: 12px;
        background: #de2c2c;
    border: #de2c2c;
}

/* referral policy  */
/* General */
.tandc {
    background: #f9fafc;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.7;
}
.tandc h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}
.tandc h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #df0303;
}
.tandc h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}
.tandc p {
    font-size: 18px;
    color: #2c2b2b;

}
.tandc ul {
    list-style: none;
    padding-left: 0;
}
.tandc ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 18px;
}

.policy-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
.policy-card h4 {
    border-left: 4px solid #df0303;
    padding-left: 10px;
}
.highlight-box {
    background: #ffeaea;
    border-left: 4px solid #df0303;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}
.steps-list li {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    font-weight: 500;
}

.steps-list li b {
    color: #df0303;
}
.start-box {
    text-align: center;
    background: linear-gradient(135deg, #df0303, #a10202);
    color: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    margin-top: 40px;
}
.start-box h4 {
    color: #fff;
    margin-bottom: 15px;
}