 li::marker {
    color: var(--color);
}

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

: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;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: myFont;
    scroll-behavior: smooth !important;
    transition: 0.5s all linear;
}

@font-face {
    font-family: myFont;
    src: url(../fonts/manrope-medium.otf);

}


::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;
}
 

.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);
}
 


.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;
}



.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%);
    }
}



/* header */

.hero-section {
  background: url("../Images/smm/smm-bannerpage.png") no-repeat center center/cover;
  min-height: 100vh; /* full screen height */
  position: relative;
}

/* Dark overlay for readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-section  {
  position: relative;
  z-index: 2; 
}

.hero-bannerpage{
  position: relative;
  z-index: 2; 
}

.img-hero{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
  .hero-bannerpage h1 {
    font-size: 1.8rem; /* smaller heading on mobile */
  }
  .hero-bannerpage p {
    font-size: 1rem;
  }
}

.custom-badge {
  
  padding: 10px 20px;
  border-radius: 50px; /* pill shape */
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.gradient-heading {
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




         .btn-grad {background-image: linear-gradient(to right, #EB3349 0%, #F45C43  51%, #EB3349  100%)}
         .btn-grad {
            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;
            display: block;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            text-decoration: none !important; 
  border: none !important; 
}

          .btn-grad:hover {
            background-position: right center; 
            color: #fff;
            text-decoration: none;
          }

 

          
         .btn-grads {background-image: linear-gradient(to right, #1F1C2C 0%, #928DAB  51%, #1F1C2C  100%)}
         .btn-grads {
            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;
            display: block;
                    text-decoration: none !important; 
  border: none !important; 
          }

          .btn-grads:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
          }
         





          .about-section {
  /* background: linear-gradient(135deg, #f9f9f9, #ffffff);
  transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.about-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  font-size: 2rem;
  border-left: 5px solid  #ff4b2b; /* Bootstrap blue */
  padding-left: 10px;
}

.about-section p {
  color: #444;
}

.about-us{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
         

  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 380px !important;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  .service-card img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
  }

/* banner page */
.img-rounded{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

/* Timeline container */
.timeline {
  position: relative;
  margin: 40px auto;
  padding: 20px 0;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-left: 2px dashed #444;
  transform: translateX(-50%);
}

/* Timeline item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }

/* Circle number */
.timeline-icon {
  width: 50px;
  height: 50px;
  background: #ff416c;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 12px rgba(255, 65, 108, 0.4);
}

.timeline-content {
  position: relative;
  background: #fff; /* inner background */
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  display: inline-block;
  z-index: 1; /* keep content above the border */
}

.timeline-content::before {
  content: '';
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  border-radius: 10px;
  padding: 2px; /* border thickness */
  background: linear-gradient(315deg, #03a9f4, #ff0058);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /* subtract inner area */
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.abs-soc{
    position: absolute;
    bottom: 1%;
    left: 1%;
    width: 50px !important;
}

.abs-soc1{
    position: absolute;
    bottom: 1%;
    right: 1%;
    width: 50px !important;
}


.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before { left: 10px; }
  .timeline-item {
    width: 100%;
    padding-left: 60px !important;
    padding-right:0px ;
    text-align: left !important;
  }
  .timeline-item.right { left: 0; }
  .timeline-icon {
    position: absolute;
    left: 0;
    top: 20px;
    margin: 0;
  }


  .abs-soc{
    position: absolute;
    bottom: 1%;
    right: 1% !important;
    width:30px !important;
    
    left: unset !important;
}

.abs-soc1{
    position: absolute;
    bottom: 1%;
    right: 1% !important;
    width: 30px !important;
}

}


.img-certified{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.card-img-top{
    height: 200px;
    width: 100%;
    object-fit: cover;
}


.card-img-top img{
     height: 100%;
    width: 100%;
    object-fit: cover;
}






    .timeline-icon {
  width: 40px;
  height: 40px;
  background: #ff416c;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 12px rgba(255, 65, 108, 0.4);
}
.timeline-icon i {
  font-size: 26px;
}

.img-footer{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
   
.title{
    color:#ed1943;
}


.text-branch{
    text-transform: uppercase;
}

.developed{
    color: floralwhite;
}


 .p-in-line{
  width: 30px;
  height: 2px;
  background-color: var(--color);
  transition: all .5s;
 }
 .br-bot{
  border-bottom: 1px solid #a3a3a3;
 }
 .br-ri{
  border-right: 1px solid #a3a3a3;
 }
 .br-lef{
  border-left: 1px solid #a3a3a3;
 }
 .make-us-box{
  height: 100%;
 }
 .make-us-box:hover{
  background-color: #f6f6f6 !important;
 }
 .make-us-box:hover .p-in-line{
  width: 0px;
  /* height: 0px; */
  background-color: unset;
  transition: all .5s;
  margin-right: unset !important;
 }
 .web-form{
  background-color: #ed979729;
 }
 .form-web-img{
  width: 100%;
 }
 .web-pg-input{
  background-color: unset !important;
  border-radius: 0% !important;
  border: 1px solid #000 !important;
  height: 50px;
 }



/* header */



.bg-c1{
        height: 88vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #000, #d2042d);
            overflow: hidden;
}

.bg-c4{
    background-color: #f6f6f6 !important;
}


  
   .carousel-indicators {
    position: absolute;
    bottom: 0% !important;
  }


.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #888 !important; /* Change this to the color you want */
}

.carousel-indicators .active {
  background-color: #DC143C !important; /* Change this to the color you want for the active indicator */
}

.foot-arrow1{
  width: 50px;
}


.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 coimbatore ------- */

.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-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-card img{
  width: 80px !important;
}

.seo-label {
  display: inline-block;
  background: #ffc5d0;  /* Accent color */
  color: #e30808;
  font-size: 16px !important;
  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: 14px !important;
  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;
}

.ac11{
  background-image: url(../images/im1.jpg) !important;
}

.ac22{
  background-image: url(../images/im2.jpg) !important;
}

.ac33{
  background-image: url(../images/im3.jpg) !important;
}

.ac44{
  background-image: url(../images/im4.webp) !important;
}

.cta-banner { 
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.722);
}

.cta-banner::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  background-image: url(../images/imgi_30_image.png);
  background-size: cover;
  background-position:  center;
  z-index: -1; 
}


.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;
      }
    }

@media screen and (max-width: 660px) {
    .sm-js {
        text-align: justify !important;
    }

     .br-bot{
  border-bottom: unset;
 }
 .br-ri{
  border-right: unset;
 }
 .br-lef{
  border-left: unset;
 }

     .make-us-box {
        border-bottom: 1px solid #a3a3a3;
    }

}

@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;
    }



}



.no-style-link {
  text-decoration: none !important;  /* removes underline */
  border: none !important;          /* ensures no border */
  outline: none !important;         /* removes focus outline */
}

.no-style-link:hover {
  text-decoration: underline; /* optional hover effect */
}


.no-style-links {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  display: inline;  /* ensures no forced break */
  white-space: nowrap; /* optional: prevents breaking between words */
}


/* Remove space between accordion items */
.accordion-item {
  border: none;          /* remove default border */
  margin: 0 !important;  /* remove margin */
  border-bottom: 1px solid #ddd; /* keep only a thin separator */
}

/* Remove extra spacing on accordion buttons */
.accordion-button {
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  padding: 12px 16px; /* adjust padding for compact look */
}

/* Remove background highlight gap when opened */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa; /* subtle background */
  color: #000; /* text color */
  box-shadow: none !important;
}






@media screen and (max-width:320px) {

}

@media screen and (min-width:321px) and (max-width:425px) {

}

@media screen and (min-width:426px) and (max-width:600px) {
    
    /* --------------------------------------footer section -------------------------------------- */


}

@media screen and (min-width:601px) and (max-width:768px) {
        /* --------------------------------------footer section -------------------------------------- */

}














