 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 {
  background: linear-gradient(135deg, #ff4b2b, #ff416c); /* red-pink gradient */
  padding: 10px 20px;
  border-radius: 50px; /* pill shape */
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 0.9rem;
  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;
  }
  .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;
}

/* 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 #ddd;
  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);
}

/* Content box */
.timeline-content {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: inline-block;
  max-width: 90%;
}

.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;
    text-align: left !important;
  }
  .timeline-item.right { left: 0; }
  .timeline-icon {
    position: absolute;
    left: 0;
    top: 20px;
    margin: 0;
  }
}


.img-certified{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.card-img-top{
    height: 100%;
    width: 100%;
    object-fit: cover;
}






    .timeline-icon {
  width: 60px;
  height: 60px;
  background: #ff416c;
  color: #fff;
  font-size: 24px;
  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;
}


/* header */






/* ///////////////////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;
}



@media screen and (max-width: 660px) {
    .sm-js {
        text-align: justify !important;
    }
}

@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) {
        /* --------------------------------------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;
        }
}














