li::marker {
    color: var(--color);
}

:root {
    --color: #ed1943;
    --black: #161616;
    --gray: rgb(206, 205, 205);
    --light-gray: rgb(227, 227, 227);
    --light: rgb(223, 255, 255);
    --white: #ffffff;
    --blue: rgb(0, 81, 255);
    --sky: rgb(74, 204, 255);
    --green: green;
}

::selection {
    background-color: var(--color);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(0, 0, 0);
    background: linear-gradient(222deg, rgba(0, 0, 0, 1) 14%, rgba(237, 25, 67, 1) 100%);
}

html {
    scroll-behavior: smooth;
}
/* header {
    width: 100%;
    height: 110vh;
    background-image: url(../Images/banner/14.jpg);
    background-position: top right;
    background-size: cover;
    position: relative;
}


.header-1 {
    width: 100%;
    height: 90vh !important;
    background-image: url(../Images/banner/13.jpg);
    background-position: top right;
    background-size: cover;
    position: relative;
    margin-bottom: 5%;
}

.header-join{
    background-image: url(../Images/banner/join.jpg) !important;
    background-position: center right;
    background-size: cover;
}

.header-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../Images/banner/6.jpg);
    background-position: center;
    background-size: cover;
    opacity: 0.35;
} */

.navbar {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    position: sticky;
    top: 0;
    z-index: 99;
}


.nav-background {
    position: fixed !important;
    top: 0;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 5;
}

.nav-background .social-links {
    background-color: var(--light-gray);
}


.nav-brand {
    max-width: 80px;
    min-width: 80px;
    height: 70px;
    position: relative;
}

.nav-brand img {
    width: 200% !important;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: contain;
}

.nav-opacity {
    opacity: 0 !important;
}

.png-red {
    opacity: 0;
}

.png-white {
    opacity: 1;
}

.nav-menus {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-social-icons {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--white);
    border-radius: 50%;
    -webkit-animation: slide 1s infinite ease-in-out;

}

.nav-social-icons a:hover {
    background-color: var(--color);

}

.nav-social-icons a:hover i {
    color: var(--white) !important;
    scale: 1.2;
}

.nav-social-icons a i {
    font-size: 20px;
    color: var(--color);

}

.nav-social-icons a:nth-child(1) i {
    font-size: 17px;
}

.nav-social-icons a:nth-child(4) i {
    font-size: 17px;
}

@keyframes slide {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.nav-buttons {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-buttons a {
    width: auto;
    font-size: 11px;
    padding: 3% 7%;
    border-radius: 20px;
    background-color: var(--color);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.nav-buttons a:hover {
    color: var(--color);
    background-color: var(--white);
    letter-spacing: 0.5px;
}

.nav-buttons a:nth-child(2) {
    background-color: var(--white);
    color: var(--color);
    text-decoration: none;
    font-weight: 700;

}

.nav-buttons a:nth-child(2):hover {
    background-color: var(--color);
    color: var(--white);
}

.hambrger {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    border: none;
    flex-direction: column;
    align-items: flex-end;
    padding: 1%;
    justify-content: center;
    gap: 5px;
}

.hambrger span {
    width: 25px;
    height: 2.5px;
    border: 1px solid var(--black);
    background-color: var(--black);
}

.hambrger span:nth-child(2) {
    width: 20px;
}


.nav-background .hambrger {
    background-color: var(--light-gray);
}


.nav-background .nav-buttons a:nth-child(2) {
    background-color: var(--color);
    color: var(--white);
    font-weight: 900;
}


.nav-background .hambrger .t-ham {
    background-color: var(--color);
    border: 1px solid var(--color);
}

/*/////////////////// Navbar //////////////// */

.header-menus {
    width: 100%;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 100%;
    transition: 0.5s;
    overflow-y: scroll;
    z-index: 1000;
}

.header-active {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    transition: 0.55s;
    padding: 1% 2%;
}

.menus-close {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1%;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--black);
}

.menus-close button {
    padding: 1% 3%;
    background-color: var(--color);
    border: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    border-radius: 20px;
}

.load-calculation {
    margin-bottom: 5%;
    height: auto;
}

.load-questions-are {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 5%;

}

.load-questions-are .load-buttons {
    width: 25%;
    background-color: var(--white);
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.load-questions-are .load-buttons button {
    width: 100%;
    padding: 5%;
    margin: 1%;
    background: white;
    border: 1px solid var(--light);
    font-size: 15px;
    font-weight: 900;
    text-align: justify;
}

.load-questions-are .load-buttons button i {
    margin-right: 10px;
    color: var(--color);
}


/* .load-questions-are .load-buttons button:focus{
   
} */

/* .load-questions-are .load-buttons button:active{
    border-left: 4px solid var(--primary);
    transition: 0s;
    background-color: var(--light);
} */

.load-questions-are .load-calculate-content {
    width: 70%;
    height: auto;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.load-questions-are .load-calculate-content #load1,
.load-questions-are .load-calculate-content #load5 {
    display: none;
}

.load-questions-are .load-calculate-content #load2 {
    display: flex;
    height: 100%;
    position: absolute;
    z-index: 10;
    overflow-y: scroll !important;
}

.load-questions-are .load-calculate-content .load-box-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    overflow-y: scroll;
    scroll-behavior: smooth;
    z-index: 3;
}

.load-questions-are .load-calculate-content .load-calculate-boxs {
    width: 30%;
    height: auto;
    padding: 1%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1%;
    background-color: var(--white);
    margin-bottom: 4px;
}

.load-questions-are .load-calculate-content .load-calculate-boxs ul {
    padding-left: 0;
    list-style-type: none;
}

.load-questions-are .load-calculate-content .load-calculate-boxs h5 {
    color: var(--color);
    font-weight: 900;
}

.load-questions-are .load-calculate-content .load-calculate-boxs ul li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
}

.load-questions-are .load-calculate-content .load-calculate-box .load-questions-are .load-calculate-content .load-calculate-boxs .load-boxs-content {
    width: 47%;
}

.load-questions-are .load-calculate-content .load-calculate-boxs .load-boxs-content span {
    font-size: 11px;
    font-weight: 700;
}

.load-questions-are .load-calculate-content .load-calculate-boxs .wrapper {
    width: 47%;
    height: 50px;
    box-shadow: none;
    background-color: var(--white);
    cursor: pointer;
}

.accordion-collapse .load-calculate-boxs ul {
    list-style-type: none;
    padding-left: 0;
}

.accordion-collapse .load-calculate-boxs h5 {
    color: var(--color);
    font-weight: 700;
}

.accordion-collapse .load-calculate-boxs ul li a {
    color: var(--black);
    font-weight: 700;
}

.pro-active {
    border-left: 4px solid var(--color) !important;
    transition: 0s;
    background-color: var(--light-gray) !important;
}

.accordion-item a {
    text-decoration: none;
}

.menus-lists {

    overflow-y: scroll !important;
    height: 100vh !important;
}

.accordion-collapse {
    overflow-y: scroll !important;
    height: 600px;
}

.mobile-links {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: auto;
    z-index: 3;
    background-color: var(--white);
    border-radius: 15px 0 0 15px;
    padding: 1%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: translate(0%, -50%);
}

.mobile-links a {
    margin-bottom: 10px;
}

.nav-social-icons a:nth-child(1):hover {
    background-color: var(--blue);
    color: var(--white);
}

.nav-social-icons a:nth-child(2):hover {
    background-color: var(--green);
    color: var(--white);
}

.nav-social-icons a:nth-child(3):hover {
    background-color: var(--sky);
    color: var(--white);
}

.nav-social-icons a:nth-child(4):hover {
    background-color: var(--color);
    color: var(--white);
}

.header-bottom {
    width: 100%;
    height: 20vh;
    position: absolute;
    background-color: var(--black);
    left: 0;
    bottom: 0;
    animation: wave 4s ease-in-out infinite;
    z-index: 0;
}

.load-questions-are .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    width: 100%;
    height: 100%;
    padding: 5%;
    border: none !important;
    text-align: justify;
    background: var(--white);
    border-radius: 0px !important;
    color: black !important;
}

.load-questions-are i {
    color: var(--color);
}

.load-questions-are .pro-active {
    border-left: 5px solid var(--color) !important;
}


@keyframes wave {

    0%,
    100% {
        filter: drop-shadow(0 0 100px var(--color));
        clip-path: polygon(0% 50%, 16% 44%, 38% 42%, 59% 45%, 75% 48%, 89% 47%, 100% 39%, 100% 100%, 0% 100%);
    }

    50% {
        filter: drop-shadow(0 0 100px var(--color));
        clip-path: polygon(0 41%, 20% 51%, 37% 57%, 54% 58%, 66% 52%, 78% 41%, 100% 26%, 100% 100%, 0% 100%);
    }
}



/* ///////////////////Footer //////////////////////// */


/* seo-landing-page */



.card {
  background: linear-gradient(180deg, #ed1943,  #ed1943);
  border: 1px solid #ed1943;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 20px;
}

.form label { display:block; font-size:.9rem; margin:.5rem 0 .25rem; color: var(--muted); }
.form input, .form select, .form textarea {
  width: 100%; padding: .9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background:  #ed1943;
  color: var(--text);
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus {
  box-shadow: var(--ring);
  border-color: var(--brand);
}


section { padding: 56px 0; }
.section-title { font-size: clamp(1.3rem, 1.5vw + 1rem, 2rem); margin: 0 0 10px; }
.muted { color: var(--muted); }

/* Grid helpers */
.grid { display:grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Features / Services */
.feature {
  display:flex; gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #ea2950;
  border:1px solid  #ed1943;
  color: white;
}
.feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display:grid;
  place-items:center;
  color: #eee8ea;
  font-weight:900;
  box-shadow: var(--shadow);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}



  .feature {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: flex-start; /* Align to left */
    gap: 6px;
  }

.icon {
  display: inline-block;
  background: #ff3300; /* Background */
  color: #fff;
  font-weight: bold;
  border-radius: 50%; /* Makes it round */
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;

  /* Add border */
  border: 2px solid #fff; /* White border, you can change color & thickness */
}


  .content strong {
    font-size: 18px;
    display: block;
  }

  .muted {
    color: #eaedef;
    margin: 0;
  }





header .nav-link {
  font-weight: 500;
  padding: 0 12px;
  transition: color 0.3s ease;
}
header .nav-link:hover {
  color: #ebe6e7; /* red hover effect */
}

/* banner page */

/* card */

 .seo-section {
  background: #ed1943;   /* 🔴 new background */
  padding: 60px 20px;
  text-align: center;
  color: #fff;           /* default text color white */
}

.seo-section h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 40px;
  color: #fff;           /* heading white */
}

.seo-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f1f1f1;
}

.seo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.seo-label {
  display: inline-block;
  background: #ed1943;  /* Accent color */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.seo-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.seo-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}




.seo-card h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: #131313; /* darker heading inside card */
}

.seo-card p {
  color: #555;
  font-size: 15px;
  margin: 0;
}
/* card */


/* about us */

.image-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Hidden Text Card */
.card-text {
  position: absolute;
  bottom: -100%;  /* hidden below */
  left: 0;
  width: 100%;
  background: #7b4dff;
  color: #fff;
  padding: 20px;
  text-align: center;
  transition: all 0.5s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* On hover → slide up */
.image-card:hover .card-text {
  bottom: 0;
}








/* about us */



/* style */

.cta-banner {
  background-image: url('../assets/Images/portfolio-1/imgi_30_image.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000d0;
}

.cta-banner .content {
  position: relative;
  z-index: 1;
}


.stat-card {
  background: #e5e5e54f;
  text-align: center;
  padding: 30px 10px;
  border-width: 6px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  color: #ffffff;
  font-size: 30px;
}

.stat-card h3 {
  font-weight: bold;
  font-size: 2rem;
}

.stat-card p {
  font-weight: bold;
  margin: 0;
}

.btn-grad {
  background-image: linear-gradient(to right, #D31027 0%, #EA384D 51%, #D31027 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block; /* ✅ keep button as inline-block */
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}


/* style */



.seo-process {
    background: #ed1943;
    color: #fff;
  }

  .seo-process h2 {
    color: #fff;
  }

  .process-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease;
  }

  .process-card:hover {
    transform: translateY(-5px);
  }

  .step-number {
    background: #fff;
    color: #ed1943;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .process-card h5 {
    margin-bottom: 6px;
    color: #fff;
  }

  .process-card p {
    margin: 0;
    color: #f8dede;
    font-size: 15px;
  }


.image-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-text {
  position: absolute;
  bottom: 0; /* Fix at bottom */
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgba(224, 14, 14, 0.6); 
  color: #fff;
  text-align: center;
}

.card-text h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.card-text p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

  
    .testimonial-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 25px;
      transition: transform 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-10px);
    }
    .testimonial-text {
      font-style: italic;
      font-size: 1rem;
      color: #555;
    }
    .testimonial-author {
      margin-top: 15px;
      font-weight: bold;
      color: #ed1943;
    }
    .testimonial-role {
      font-size: 0.9rem;
      color: #777;
    }
    .testimonial-img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #ed1943;
    }




.testimonial-card {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-img {
  width: 60px;        /* make it smaller */
  height: 60px;       /* keep square */
  border-radius: 50%; /* perfect circle */
  object-fit: cover;  /* crops inside circle */
  border: 2px solid #00c853; /* optional border */
  margin: 0 auto;     /* center horizontally */
  display: block;
}


.testimonial-text {
  font-size: 0.95rem;
  color: #555;
}
.testimonial-author {
  font-weight: bold;
  margin-top: 10px;
}
.testimonial-role {
  font-size: 0.85rem;
  color: #777;
}




.curv-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}



 .services-section {
    background: #ffffff;
    color: #0b0b0b;
  
  }
  .services-section h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .card {
    background: #da0c0c ;
    border: none;
  }
  .card strong {
    display: block;
    margin-bottom: 0.25rem;
  }
  .card .icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff99;
  }





      .custom-badge {
      /* background-color: #b30628; */
      border: 1.4px solid #ffffff;
      color: #fff;
      border-radius: 50px;
   
   
      padding: 8px 18px;
      font-size: 14px;
      font-weight: bold;
      font-weight: 800;
      display: inline-block;
      margin: 5px;
    }

    /* Gradient Button */
    .btn-gradient {
      background: linear-gradient(90deg, #ed1943, #22c55e);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    .btn-gradient:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* Dark Button */
    .btn-dark-custom {
      background: #e30808;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    .btn-dark-custom:hover {
      background:#e30808;
      transform: translateY(-2px);
    }



   /* Card Styling */
.audit-card {
  max-width: 400px;
  margin: 50px auto;
  background: #ffffff; /* White background */
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 8px 20px rgba(196, 2, 2, 0.1);
  border:1px solid #e30808;
  color:#e30808; /* Default text color red */
}

.audit-card h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color:#e30808; /* Red title */
}

/* Label */
.form-label {
  font-size: 14px;
  font-weight: 500;
  color:#e30808; /* Red labels */
  margin-bottom: 6px;
}

/* Input Fields */
.form-control {
  background: transparent;

  border-radius: 10px;
  color:#e30808;
  padding: 12px;
  font-size: 14px;
}

.form-control:focus {
  background: transparent;

  box-shadow: 0 0 6px rgba(237, 25, 67, 0.5);
  color:#e30808;
}

.form-control::placeholder {
  color: #888;
  font-size: 13px;
}

/* Button */
.btn-gradient {
  width: 100%;
  background: linear-gradient(90deg, #ed1943, #e30808); /* Red gradient */
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


/* Container styling */
.audit-form-modern {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Shadow effect */
.shadow-custom {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Gradient heading */
.text-gradient {
  background: linear-gradient(135deg, #ed1943, #ff7c54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Form Inputs */
.modern-input {
  border: none;
  border-radius: 12px;
  background-color: #f7f7f7;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 14px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.modern-input:focus {
  outline: none;
  background-color: #fff;
  border: 1px solid #ed1943;
  box-shadow: 0 0 0 3px rgba(237, 25, 67, 0.1);
}

/* Button */
.btn-modern {
  background: linear-gradient(to right, #ed1943, #ff7c54);
  color: white ;
  border: none;
  font-weight: 600;
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(237, 25, 67, 0.2);
}

/* Label styling */
.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

/* Placeholder */
.form-control::placeholder {
  color: #aaa;
}

/* Privacy note */
.privacy-note {
  font-size: 0.85rem;
  color: #888;
}


    .btn-gradient {
      background: linear-gradient(90deg, #ed1943, #ff5b5b);
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 14px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .btn-gradient:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    .privacy-note {
      margin-top: 15px;
      font-size: 14px;
      color: #666;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .audit-form {
        padding: 25px;
      }


      .seo-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: bold;
  font-size: 16rem;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.contact-section {
  position: relative;
  height: 100% !important;
  background: url('../assets/Images/portfolio-1/pexels-padrinan-2882652 (1).jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
 
  z-index: 1;
}
    }

    .img-thumbnails{
   width: 180px;
      object-fit: cover;
    }


    .img-thumbnails {
  position: relative;
  display: inline-block;
  width: 100%; /* full width */
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}


.lead{
  color: white;
  font-weight: 400;
}





.seo-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.seo-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
}

.seo-btn:hover::before {
  left: 100%;
  transition: 0.6s;
}

.seo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 65, 108, 0.6);
}


 .list-group-item p {
    margin: 0; /* remove default spacing */
    line-height: 1.6; /* keep nice readability */
  }






.banner-text {
  position: absolute;
  top: 50%;   /* center vertically */
  left: 50%;  /* center horizontally */
  transform: translate(-50%, -50%);
  color: #fff; /* white text */
  font-size: 2rem; /* adjust size */
  font-weight: bold;
  text-align: center;
  font-family: cursive;

  text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* makes text readable */
}

.heading {
  
  padding:20px;
  color:#0c0c0c;
  font-family:monospace;
}

.tming {
  width:500px;
  height:500px;
  border:4px solid black;
  box-shadow:0 0 8px #888;
  overflow:hidden;
  margin:30px auto;
  border-radius:4px;
}

img{
  width:495px;
  padding:10px;
  object-fit:cover;
  transition:ease-in-out 3s;
  position:relative;
  top:0;
}

.tming:hover img{
  top:-130%;
}


   .logo-card {
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.05);
      text-align: center;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .logo-card img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }



       .stats-section {
      background: #111;
      color: #fff;
      padding: 80px 0;
      position: relative;
    }
    .stats-item {
      position: relative;
      padding: 20px;
    }
    .stats-item h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .stats-item p {
      margin: 0;
      font-size: 1.1rem;
    }
    .stats-item small {
      color: #bbb;
      font-size: 0.9rem;
    }
    .avatars {
      margin-top: 15px;
      display: flex;
      justify-content: center;
    }
    .avatars img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #111;
      margin-right: -10px;
    }
    /* Connecting lines */
    .stats-item::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -30px;
      width: 60px;
      height: 1px;
      background: #555;
    }
    .stats-item:last-child::after {
      display: none;
    }
    .stats-item::before {
      content: "";
      position: absolute;
      top: 50%;
      right: -30px;
      width: 10px;
      height: 1px;
      border-top: 2px solid #888;
      border-right: 2px solid #888;
      transform: rotate(45deg);
    }
    .stats-item:last-child::before {
      display: none;
    }
    /* CTA button */
    .stats-btn {
      background: #fff;
      color: #000;
      font-weight: bold;
      border-radius: 50px;
      padding: 12px 25px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      margin-top: 30px;
    }
    .stats-btn:hover {
      background: #f8f8f8;
    }
    .dot {
      width: 10px;
      height: 10px;
      background: #00ff5a;
      border-radius: 50%;
      display: inline-block;
      margin-left: 8px;
    }

    /* Responsive fix: remove lines on small screens */
    @media (max-width: 767px) {
      .stats-item::after,
      .stats-item::before {
        display: none;
      }
    }

   .arrow-btn {
  border: none;
  background: #333;
  color: #fff;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #555;
}

.all-projects {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  color: #000; /* change as needed */
  width: 100%; /* makes sure flex distributes */
}

.team-section {
    background-color: #0e0e0e; /* dark background */
  }
  .team-card img {
    border-radius: 12px;
  }
  .owner-card img {
    border-radius: 12px;
    object-fit: cover;
    height: 280px;
  }
  .owner-text {
    left: 20px;
    max-width: 300px;
  }
  .stat-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
  }



      .case-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      color: #fff;
      height: 320px;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      background-size: cover;
      background-position: center;
    }

    .case-category {
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      color: #000;
      font-weight: 600;
      padding: 6px 30px;
      border-radius: 30px;
      font-size: 16px;
    }

    .case-title {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 15px;
    }

    .case-btn {
      border: 2px solid #fff;
      border-radius: 10px;
      color: #fff;
      background: transparent;
      padding: 8px 20px;
      transition: 0.3s;
    }

    .case-btn:hover {
      background: #fff;
      color: #000;
    }

    @media (max-width: 768px) {
      .case-card {
        height: 250px;
      }
      .case-title {
        font-size: 16px;
      }
    }
  /* From Uiverse.io by Spacious74 */ 
.button {
  cursor: pointer;
  font-size: 1.4rem;
  border-radius: 16px;
  border: none;
  padding: 2px;
  background: radial-gradient(circle 80px at 80% -10%, #ffffff, #181b1b);
  position: relative;
}
.button::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 60%;
  border-radius: 120px;
  top: 0;
  right: 0;
  box-shadow: 0 0 20px #ffffff38;
  z-index: -1;
}

.blob1 {
  position: absolute;
  width: 70px;
  height: 100%;
  border-radius: 16px;
  bottom: 0;
  left: 0;
  background: radial-gradient(
    circle 60px at 0% 100%,
    #3fe9ff,
    #0000ff80,
    transparent
  );
  box-shadow: -10px 10px 30px #0051ff2d;
}

.inner {
  padding: 14px 25px;
  border-radius: 14px;
  color: #fff;
  z-index: 3;
  position: relative;
  background: radial-gradient(circle 80px at 80% -50%, #777777, #0f1111);
}
.inner::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 14px;
  background: radial-gradient(
    circle 60px at 0% 100%,
    #00e1ff1a,
    #0000ff11,
    transparent
  );
  position: absolute;
}



.img-footer{
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/* General Section Styling */
#testimonialCarousel {
  max-width: 800px;
  margin: 0 auto;
}

/* Heading */
#testimonialCarousel 
 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

/* Client Image */
#testimonialCarousel img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid #ff7a00; /* Orange Border */
  border-radius: 50%;
}

/* Testimonial Text */
#testimonialCarousel blockquote p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

/* Client Name */
#testimonialCarousel .blockquote-footer {
  font-weight: 600;
  margin-top: 10px;
  color: #111;
}

/* Carousel Controls */
.carousel-control-prev span,
.carousel-control-next span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff7a00;   /* Orange background */
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  transition: 0.3s ease;
}

.carousel-control-prev span:hover,
.carousel-control-next span:hover {
  background: #e66900;   /* Darker orange on hover */
}

/* Indicators */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ff7a00;
}

.carousel-indicators .active {
  background-color: #e66900; /* Darker orange when active */
}

/* Responsive */
@media (max-width: 576px) {
  #testimonialCarousel img {
    width: 100px;
    height: 100px;
  }

  #testimonialCarousel blockquote p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}



/* why choose  */

.activity-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: white;
}

.activity-card:hover {
  transform: scale(1.03);
}

/* Title (always visible) */
.card-title {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Overlay (hidden by default) */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.activity-card:hover .overlay {
  opacity: 1;
}

.overlay p {
  margin: 0;
  font-size: 1rem;
  color: white;
}

/* ... */

.seo-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.seo-card:hover {
  transform: translateY(-5px);
}
.seo-label {
  font-weight: 600;
  font-size: 1.1rem;
}


.contact-section {
  position: relative;
  height: 100vh;
  background: url('../assets/Images/portfolio-1/pexels-padrinan-2882652 (1).jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
 
  z-index: 1;
}

/* Overlay color using ::before */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
background: linear-gradient(to bottom, #ed1943, #000000);

   /* background: #ed1943; */
  z-index: 2;
}

/* Make sure inner content stays above the overlay */
.contact-section .container {
  position: relative;
  z-index: 3;
}


.form-box input,
.form-box select {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.form-box input:focus,
.form-box select:focus {
  box-shadow: none;
  border-color: #000;
}

.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}





/* ///////////////////Footer //////////////////////// */

footer {
    width: 100%;
    height: auto;
    display: flex;
    padding: 2%;
    justify-content: space-evenly;

}

footer ul {
    padding: 0;
}

footer ul li {
    list-style: none;
}

footer .branch li {
    margin-bottom: 5%;
}

footer .branch li h6 {
    color: #111;
    border-bottom: 1px solid #333;
}

footer .footer-boxes {
    width: 20%;
    height: auto;
}

footer .footer-boxes .footer-first {
    position: relative;
}

footer .footer-boxes .footer-first h5 {
    color: var(--color);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 800;

}


footer .footer-boxes .footer-first ul li a {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    text-decoration: dotted;
    color:#222;
    
}

footer .footer-boxes .footer-first .footer-social-link a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-decoration: dotted;
    color: var(--light);
    margin-right: 20px;
}

footer .footer-boxes .footer-first .footer-social-link a:hover {

    color: var(--color);
}


footer .footer-boxes .footer-first ul li a:hover {
    color: var(--color);
}

footer .footer-boxes .footer-first img {
    width: 60%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -0%);
    margin-top: 20px;
    margin-bottom: 20px;
}

/*////////// <!-- After footer start -->/////////////////////// */

.after-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    padding: 0.5%;
}

.after-footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    /* font-weight: 700; */
    color: #fff !important;

}


.after-footer p a {
    text-decoration: none;
    color: #fff !important;
    font-weight: 900 !important;
    letter-spacing: 1px;
     font-size: 16px !important;

}

.after-footer p a:hover {
    color: var(--blue);
}
.w{
    color: #fff !important;
}





.audit-form-modern {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient {
  background: linear-gradient(135deg, #ed1943, #ff7c54);
  border: none;
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #c4173a, #e0523f);
  transform: scale(1.02);
}

.privacy-note {
  font-size: 0.875rem;
  color: #666;
}


/* seo-landing-page */

@media screen and (max-width:991px) {
    .nav-menus {
        justify-content: flex-end;
    }

    .nav-menus .nav-social-icons {
        display: none;
    }

    .nav-buttons {
        width: 100%;
        justify-content: flex-start;
        gap: 30px;
    }

    .home-services-section .services-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
    }

    .services-content .services-content-boxs {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .services-content {
        width: 100%;
        height: auto;
    }


    .services-boxs-content {
        width: 30%;
        height: 150px;
        background-color: var(--white);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        margin-bottom: 3%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
        border-right: 3px solid var(--color);
        padding: 2%;

    }

    .services-carousel {
        width: 100%;
        height: 450px;
        overflow: hidden;
    }



}


@media screen and (max-width:320px) {
        /* --------------------------------------footer section -------------------------------------- */

        footer {
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-around;
            height: auto;
            padding: 2%;
        }
    
    
        footer .footer-boxes {
            width: 100%;
            height: auto;
        }
}

@media screen and (min-width:321px) and (max-width:425px) {
       /* --------------------------------------footer section -------------------------------------- */

       footer {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        height: auto;
        padding: 2%;
    }


    footer .footer-boxes {
        width: 100%;
        height: auto;
    }


    .list-out-lists ul li {
        width: 47%;
        list-style-type: none;
        margin-bottom: 2%;
        border: 1px solid var(--color);
        padding: 1%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}

@media screen and (min-width:426px) and (max-width:600px) {
    
    /* --------------------------------------footer section -------------------------------------- */

    footer {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
        height: auto;
        padding: 2%;
    }


    footer .footer-boxes {
        width: 100%;
        height: auto;
    }

    .list-out-lists ul li {
        width: 30%;
        list-style-type: none;
        margin-bottom: 2%;
        border: 1px solid var(--color);
        padding: 1%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}

@media screen and (min-width:601px) and (max-width:768px) {
        /* --------------------------------------footer section -------------------------------------- */

        footer {
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-around;
            height: auto;
            padding: 2%;
        }
    
    
        footer .footer-boxes {
            width: 100%;
            height: auto;
        }
}