*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    overflow-x: hidden;
}
/* bootstrap importants  */
figure,ul{
    margin-bottom: 0px !important;
}
/* ----------
 start header 
---------- */
header{
    padding: 10px;
    background-color: #fff;
    /* background-color: rgb(232 232 232); */
    box-shadow: 0px 2px 1px #ff0000;
    z-index: 800;
    position: sticky  !important;
    top: 0;
}
header nav ul a{
    font-family: 'Poppins', sans-serif;
    color: #000;
}
/*----------
 start slider 
---------- */
.slider{
  margin-top: -1px;
}

/*----------
 start about 
---------- */
.about-bx{
    background-color: #0d0d0d14;
}
.about-bx .about-inner img{
    max-width: 100%;
    border-radius: 20px;
    padding: 10px;
    border: 2px solid #00000024;
}
.ab-content p , .ab-content ul{
    font-size: 17px;
    text-align: justify;
}
/*------------
 start service
-------------*/
.ine-serbx .service-crd{
    overflow: hidden;
    transition: 0.5s;
}
.ine-serbx .service-crd .service-content{
    padding: 10px;
    color: #fff;
    background-color: #000c5c;
    bottom: -200px;
    transition: 0.5s;
    z-index: 5;
}
.ine-serbx .service-crd figure figcaption{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    font-weight: bold;
}
.ine-serbx .service-crd figure::after{
    content: '';
    background-color: #000;
    top: 0;left: 0;right: 0;bottom: 0;
    position: absolute;
    z-index: 2;
    border-radius: 10px;
    background-color: #0000009c;
    transition: 0.5s;
}
.ine-serbx .service-crd:hover figure::after{
    background-color: #00000054;
}
.ine-serbx .service-crd:hover figcaption{
    display: none;
    transition: 0.5s;
}
.ine-serbx .service-crd:hover .service-content{
   bottom: 0px;
}
.morebtn a{
  padding: 10px;
  border: 2px solid #fff;
  background-color: #a20a0af0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}
.morebtn a:hover{
  background-color: #fff;
  color:  #a20a0af0;
  box-shadow: 0px 0px 2px #000000ad;
}

/*---------------
 start atest news 
 ---------------*/
 .flip-card {
  background-color: transparent;
  height: 300px;
  perspective: 1000px;
  font-family: sans-serif;
  cursor: pointer;
}

.title {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid coral;
  border-radius: 1rem;
}
.flip-card-front img{
  border-radius: 10px;
  border: 1px solid coral;
}
.flip-card-front {
  background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%,
     rgb(255, 211, 195) 40%, rgba(255, 127, 80, 0.603) 48%);
  color: coral;
}

.flip-card-back {
  background: linear-gradient(120deg, rgb(255, 174, 145) 30%, coral 88%,
     bisque 40%, rgb(255, 185, 160) 78%);
  color: white;
  transform: rotateY(180deg);
}

/* slider  */
.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.doc-sider{
    display: flex !important;
    align-items: stretch !important;
}
.doc-bx figure img{
    height: 80px;
    border-radius: 50%;
    border: 2px solid #000c5c;
}

.doc-sider{
    padding: 10px;
    background-color: #fff !important;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    border-radius: 10px;
    /* height: 400px; */
    position: relative;
}

/* -------------
 start footer 
-------------- */
footer p{
    /*text-align:left;*/
}
footer ul{
    padding-left: 0px !important;
}
footer .footer-links a , .contact-info p{
    font-size: 17px !important;
}
footer .footer-section-title{
    font-size: 25px ;
}
.custom-footer {
    background: #34312d;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff1f08;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.custom-footer:hover .footer-overlay {
    transform: scaleX(1);
}

.footer-section-title {
    color: #ff1f08;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff1f08;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff1f08;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2c2c2c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

.copyright {
    border-top: 1px solid #2c2c2c;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: grayscale(0%);
}
/* -----------
 start contact 
------------ */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
}

.body{
    background-color: #e6e6e6;
    /* background-color: #0d0d1a; */
    color: #f1f1f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-image: radial-gradient(circle at 10% 20%, rgba(10, 10, 30, 0.9) 0%, rgba(5, 5, 15, 1) 90%); */
}
.contact-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    border-radius: 10px;
    background: rgba(30, 30, 60, 0.7);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--highlight-color);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    background: rgba(40, 40, 80, 0.8);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.btn-detective {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-detective:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-detective::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-detective:hover::after {
    left: 100%;
}

.form-control {
    background-color: rgba(30, 30, 60, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: rgba(40, 40, 80, 0.8);
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.25);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.contact-icon i {
    transform: rotate(-45deg);
}

.contact-card:hover .contact-icon {
    transform: rotate(0deg);
    border-radius: 50%;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--highlight-color);
    border-radius: 2px;
}

.confidential-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--highlight-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(233, 69, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(233, 69, 96, 0); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Custom validation styles */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* start counter  */
.counter-wrapper{
    background: url(../img/Matrimonial\ Investigation.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1.5rem;
    padding: 10rem 9%;
    /* margin-top: 5rem; */
    position: relative;
}
.counter-wrapper::before{
    position: absolute;
    content: '';
    content: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.counter{
   text-align: center;   
   color: #ddd;
   z-index: 2;
   position: relative;
}
.counter::before{
    position: absolute;
    content: '';
    bottom: -2rem;
    left: 50%;
    width: 20%;
    height: .2rem;
    background: #4DB7FE;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.counter .count{
    font-size: 5rem;
    margin-bottom: 1rem;    
}
.counter p{
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
@media (max-width: 768px) {
   .counter-wrapper{
       grid-template-columns: repeat(2, 1fr);
       grid-row-gap: 8rem;
   }
}
@media (max-width: 450px) {
    .counter-wrapper{
        grid-template-columns: 1fr;
    }
}


/* -----------
start service 
------------ */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-card {
    background-color: #9bc1bc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.section-title {
    position: relative;
    /*margin-bottom: 50px;*/
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.bg-login {
    background-image: url('/img/33384983.jpg');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
 /* update code  */
.service-details-inner .para{
   text-align: justify  !important;
}
.service-details-inner a{
    color: blue;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
}
