* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
    background-color: #ffffff;
    scroll-behavior: smooth;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    min-width: 320px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    background-color: white;
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: black;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6rem;
    flex-grow: 0;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}


/* .nav-link.active {
  font-weight: bolder;
} */

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: black;
    color: black;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.section {
    min-height: 96vh;
    /* max-height: 100vh; */
    padding: 2rem 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8rem;
}

.container {
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
}

.section-title {
    color: black;
    font-size: 3rem;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.home-section {
    text-align: center;
    display: flex;
}

#home {
    padding-top: 130px;
    /* margin-top: 100px; */

}

.cta-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.about-section {
    background: #ffffff;
}

/* .about-content p {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.8;
} */

/* .about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
} */

/* .feature-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
} */

/* .feature-card:hover {
  transform: translateY(-5px);
  border-color: #0066cc;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.feature-card h3 {
  color: #0066cc;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: #666;
} */

.works-section {
    /* background: #f8f9fa; */
    margin: 0 6rem;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.work-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    max-height: 600px;
}

/* .work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */
.work-image {
    max-height: 500px;
    border-radius: 15px;
}

/* .work-image {
  height: 200px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: white;
} */

/* .work-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: #333;
  font-size: 1.3rem;
} */
/* 
.work-card p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
} */

.contact-section {
    background: #ffffff;
}

/* .contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
} */

/* .contact-info h3 {
    color: #0066cc;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
} */

.info-item {
    margin-bottom: 1rem;
    color: #555;
}

.info-item strong {
    color: #0066cc;
    display: inline-block;
    width: 80px;
}

/* .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
} */

.submit-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.submit-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
}

#Green {
    color: rgb(30, 219, 30);
    font-weight: 900;
}
.service-head{
        color: rgb(30, 219, 30);
    font-weight: 900;
}

/* first-carosel */
.wrapper {
    background: linear-gradient(60deg, #420285, #08BDBD);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.carousel {
    position: relative;
    margin-right: 200px;
    width: 100%;
    max-width: 500px;
    /* display: flex;
            justify-content: center;
            flex-direction: row; */
}

.carousel__item {
    display: flex;
    align-items: center;
    position: absolute;
    width: 80%;
    /* padding: 0 12px; */
    opacity: 0;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;    /* filter: drop-shadow(0 2px 2px #555); */
    will-change: transform, opacity;
    animation: carousel-animate-horizontal 27s linear infinite;
    border-radius: 18px;

    /* text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.15),
        0 6px 10px rgba(0, 0, 0, 0.10); */

}

.first_carosel {
    width: 100%;
    border-radius: 18px;
}


/* ---- Animation Delays (manual expansion of SCSS loop) ---- */

.carousel__item:nth-child(1) {
    animation-delay: calc(3s * -1);
    /* 1 - 2 = -1 */
}

.carousel__item:nth-child(2) {
    animation-delay: calc(3s * 0);
    /* 2 - 2 = 0 */
}

.carousel__item:nth-child(3) {
    animation-delay: calc(3s * 1);
}

.carousel__item:nth-child(4) {
    animation-delay: calc(3s * 2);
}

.carousel__item:nth-child(5) {
    animation-delay: calc(3s * 3);
}

.carousel__item:nth-child(6) {
    animation-delay: calc(3s * 4);
}

.carousel__item:nth-child(7) {
    animation-delay: calc(3s * 5);
}

.carousel__item:nth-child(8) {
    animation-delay: calc(3s * 6);
}

/* last item delay = -(3s * 2) = -6s */
.carousel__item:nth-child(9) {
    animation-delay: calc(-3s * 2);
}

/* ----------------------------------------------------------- */

.carousel__item-body {
    width: 100%;
    background-color: #fff;
    border-radius: 18px;
    padding: 2rem;
    min-width: 700px;
}

/* -------- Keyframes (SCSS math converted to pure CSS) -------- */
/* animation-steps-fraction = 11.111% */

@keyframes carousel-animate-horizontal {

    0% {
        transform: translateX(80%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }

    3%,
    11.111% {
        transform: translateX(80%) scale(0.7);
        opacity: .1;
        visibility: visible;
    }

    14.111%,
    22.222% {
        transform: translateX(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    25.222%,
    33.333% {
        transform: translateX(-70%) scale(0.7);
        opacity: .1;
        visibility: visible;
    }

    36.333% {
        transform: translateX(-70%) scale(0.7);
        opacity: 0;
        visibility: visible;
    }

    100% {
        transform: translateX(-70%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }
}


#special {
    margin-bottom: 4rem;
}

.oneLiner {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-height: 5vh;
    background-color: rgb(65, 245, 65);
}

.oneLiner>p {
    font-size: 1.5rem;
}

/* about section */

.left-para {
    padding: 2rem 17rem 2rem 8rem;
    min-width: 70%;

}

.right-para {
    padding: 2rem;
    min-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-wrapper {
    display: flex;
    align-items: center;
}

.left-para>h1 {
    margin: 1.5rem 0;
    font-size: 3rem;
}

/* .left-para > p{
    font-size: 1.5rem;
    color: rgb(121, 110, 110);
    line-height: 2.2;
} */
.number {
    font-weight: bolder;
    font-size: 6rem;
}

.numNDtext {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.numNDtext>p {
    font-size: 2rem;
}

/* works */

/* .our-works > p{
    font-size: 1.5rem;
    color: rgb(121, 110, 110);
    line-height: 2.2;
} */

.common-content {
    font-size: 1.5rem;
    color: rgb(121, 110, 110);
    line-height: 2.2;
}

.our-works>h1 {
    margin: 1.5rem 0;
    font-size: 3rem;
}

.our-works>p {
    margin: 0 25rem;
    text-align: center;
}

.nameNDyear {
    display: flex;
    justify-content: space-between;
}

#Green-dark {
    color: rgb(22, 168, 22);
}

.sizeTown {
    font-size: 1.3rem;
}

.pASh1 {
    font-weight: 500;
    font-size: 1.3rem;
}

.work-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

#bolderP {
    font-weight: 500;
}

/* services */

.services {
    display: flex;
    width: 100%;
    margin: 0 3rem;
    align-items: center;
    gap: 3rem;
}

.left-content {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    max-width: 35%;
}

.right-content {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    min-width: 53%;
    border: 2px solid rgb(237, 237, 237);
    margin-left: 2rem;
}

.numbered-divs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    border-bottom: 2px solid rgb(237, 237, 237);
    height: 150px;
}

.left-content>h1 {
    font-size: 3rem;
}

.cont {
    width: 80%;
}

.cont>h1 {
    font-size: 1.5rem;
}

.cont>p {
    line-height: 1.7;
}

.num {
    font-size: 1.3rem;
    color: #a9a7ad
}

.common-content-smaller {
    font-size: 1.3rem;
    color: rgb(121, 110, 110);
    line-height: 2;
}

.service-section {
    position: relative;

}

/* side bar opened for sercices */


body {
    min-height: 100vh;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* 
body.no-scroll .section {
    filter: blur(3px);
    transition: filter 0.3s ease;
} */
body.no-scroll .overlay {
    background-color: grey;
    opacity: 0.7;
    filter: blur(3px);
    transition: filter 0.3s ease;
}

.blurr {
    opacity: 0.7;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -40%;
    width: 40%;
    height: 100vh;
    /* background: ; */
    /* box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5); */
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 1.5em;
    background-color: white;
    gap: 1.5em;
}

.sidebar-title {
    color: rgb(30, 219, 30);
    font-weight: 900;
}

.sidebar-content {
    /* border: 2px solid #0052a3; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding: 1rem;
    gap: 2rem;
    font-size: 1rem;
    color: rgb(121, 110, 110);
    /* line-height: 2; */
    letter-spacing: 1.5;


}

.sidebar-img {
    max-width: 400px;
    max-height: 400px;
    border-radius: 15px;
}

.sidebar.active {
    right: 0;
}

.back-button {
    position: sticky;
    top: 0;
    width: 20%;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease;
    z-index: 101;
    color: rgb(30, 219, 30);
    font-weight: 900;
    border: none;
    background-color: white;
    font-size: 1rem;
}

/* what our customers say */
.centre-aligned {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.3rem;
    color: rgb(121, 110, 110);
    gap: 1.3rem;
}

.wor {
    max-width: 800px;
    margin: auto;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-container {
    /* border: 2px solid rebeccapurple; */
    overflow: hidden;
    max-width: 80%;
    margin: auto;
    display: flex;
    height: 120vh;
    /* display: grid; */
}

.testimony {
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding: 4rem 2rem;
    height: 100%;
}

.each-testimony {
    /* border: 2px solid blue; */
    max-height: 400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.test-2 {
    justify-content: start;
}

.test-1 {
    justify-content: center;
    margin-top: 3%;
}

.profile>img {
    max-width: 50px;
    max-height: 50px;
    border-radius: 50%;
}

.profile {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.details {
    display: flex;
    flex-direction: column;
}

.user {
    display: flex;
    gap: 0.7rem;
    flex-direction: column;
}

.name,
.user-data {
    font-size: 1rem;
}

.name {
    font-weight: 700;
}


.form {
    border: 2px solid rgb(237, 237, 237);

    display: flex;
    flex-direction: column;
    max-width: 60%;
    margin: 2rem auto;
    padding: 2rem 4rem;
    border-radius: 15px;
}

.inner-touch {
    border-bottom: 2px solid rgb(237, 237, 237);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;

}

.sub-touch {
    display: flex;
    align-items: center;
    /* border: 2px solid rebeccapurple; */
    gap: 4rem;
}

/* get in touch */

.touch-title {
    font-size: 1.3rem;
    color: rgb(121, 110, 110);
}

.touch-value {
    font-weight: 500;
}

/* tesm */
/* #team {
    border: 2p solid rebeccapurple;
    background-color: yellow;
} */

.team-section {
    max-width: 80%;
    margin: auto;
    padding: 36px;
    background: linear-gradient(180deg, var(--bg), var(--muted));
    border-radius: 18px;
    box-shadow: var(--card-shadow);
}

.team-header {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin: 2rem;
    padding: 0 0 4rem 0;
}

/* .title-wrap {
    display: flex;
    gap: 16px;
    align-items: center
} */

.badge {
    background: var(--green);
    color: white;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px
}

h1 {
    margin: 0;
    font-size: 20px
}

p.lead {
    margin: 0;
    color: #475569
}

.filters {
    display: flex;
    gap: 8px;
    align-items: center
}

/* .filter-btn {
    background: transparent;
    border: 1px solid #e6eef0;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer
}

.filter-btn.active {
    background: var(--green);
    color: white;
    border-color: var(--green)
} */

/* grid */
.grid {
    display: flex;
    /* grid-template-columns: repeat(4, 1fr); */
    flex-wrap: wrap;
    gap: 20px;
    width:100%;
    justify-content: center;
}

:root {
    --bg: #ffffff;
    --muted: #f6f8f7;
    --green: #b6f7c8;
    --green-2: #a4f2bb;
    --text: #0f1720;
    --card-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
    --radius: 14px;
    --glass: rgba(255, 255, 255, 0.6);
}

@media (max-width:1000px) {
    .grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:700px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:420px) {
    .grid {
        grid-template-columns: 1fr
    }
}

.card {
    background: white;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid #f0f5f3;
    transition: transform .22s ease, box-shadow .22s ease;
    cursor: pointer;
    width:30%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08)
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    flex: 0.1 0 64px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: white;
    font-size: 20px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
}

.meta {
    flex: 1
}
/* Logo belt code starts here */

.logo-scroller {
  position: relative;
   display: block;
  width:100%;  /* Will fit parent container at 100% */
  margin:0 auto;
}

.logo-scroller-content {
  padding: 200px 0;
}

.logo-scroller-items {
  margin: -58px 0;
  overflow: hidden;
  cursor: default;
}

.logo-scroller-row {
  display: flex;
  position: relative;
  white-space: nowrap;
  justify-content: space-around; /* Ensures logos have space around them */
  gap: 40px; /* Adds consistent space between logos */
}

.logo-scroller-item {
  position: relative;
  flex: 1 1 auto; /* Flexible sizing */
  min-width: 150px; /* Prevent logos from getting too small */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-scroller-item span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Default logo size */
.logo-scroller-item span img {
  max-width: 100%;  /* Ensure the logo doesn't overflow horizontally */
  max-height: 100px;  /* Set consistent max height for logos */
  object-fit: contain;  /* Ensure logos maintain aspect ratio */
  display: block;  /* Remove inline spacing issues */
}

/* For larger screens (desktop) */
@media (min-width: 1024px) {
  .logo-scroller-item span img {
    max-height: 150px;  /* Larger height for big screens */
  }
}

/* For smaller screens (tablets) */
@media (max-width: 768px) {
  .logo-scroller-item {
    min-width: 100px; /* Adjust minimum width for smaller screens */
  }
  .logo-scroller-item span img {
    max-height: 80px;  /* Smaller height for tablets */
  }
}

/* For very small screens (phones) */
@media (max-width: 480px) {
  .logo-scroller-item {
    min-width: 80px; /* Adjust minimum width for mobile phones */
  }
  .logo-scroller-item span img {
    max-height: 60px;  /* Even smaller size for mobile phones */
  }
}

/* Logo belt code starts ends */



/* 
.pill {
    background: #eef7f2;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--green-2);
    font-weight: 600;
    border: 1px solid #e4f2ea
} */

/* modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 12, 0.45);
    z-index: 40
}

.modal {
    background: white;
    border-radius: 14px;
    max-width: 520px;
    width: 92%;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.45)
}

.modal h3 {
    margin: 0 0 8px
}

.modal p {
    margin: 0 0 14px;
    color: #475569
}

.close {
    background: transparent;
    border: 0;
    color: #334155;
    font-weight: 700;
    cursor: pointer
}

footer.small {
    margin-top: 20px;
    color: #6b7280;
    font-size: 13px;
    text-align: center
}

h1 {
    margin: 0;
    font-size: 20px
}

p.lead {
    margin: 0;
    color: #475569
}

.filters {
    display: flex;
    gap: 8px;
    align-items: center
}

.filter-btn {
    background: transparent;
    border: 1px solid #e6eef0;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
}

.filter-btn.active {
    background: rgb(30, 219, 30);
    border-color: rgb(30, 219, 30);

    color: white;
    border-color: var(--green)
}

/* grid */
/* .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
} */

.team-name {
    font-size: 1.4rem;
}

.team-role {
    font-size: 1rem;
}

.team-header {
    margin: 5rem auto 0 auto;
}

.before-line {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.line {
    width: 100%;
    border-bottom: 2px solid black;
}

.sidebar-p {
    font-size: 1.2rem;
}

.each-testimony>p {
    font-size: 1.2rem;
}

@media (max-width:1000px) {
    .grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:700px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:420px) {
    .grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: #333;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: #f0f0f0;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .about-features,
    .works-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .carousel__item-body {
        min-width: 500px;
    }
    .team-section{
        max-width: 100%;
    }
    .avatar {
    width: 64px;
    height: 64px;
    }

    @keyframes carousel-animate-horizontal {

        0% {
            transform: translateX(30%) scale(0.5);
            opacity: 0;
            visibility: hidden;
        }

        3%,
        11.111% {
            transform: translateX(30%) scale(0.7);
            opacity: .1;
            visibility: visible;
        }

        14.111%,
        22.222% {
            transform: translateX(0) scale(1);
            opacity: 1;
            visibility: visible;
        }

        25.222%,
        33.333% {
            transform: translateX(-30%) scale(0.7);
            opacity: .1;
            visibility: visible;
        }

        36.333% {
            transform: translateX(-30%) scale(0.7);
            opacity: 0;
            visibility: visible;
        }

        100% {
            transform: translateX(-70%) scale(0.5);
            opacity: 0;
            visibility: hidden;
        }
    }

    .carousel {
        margin-left: 80px;
    }

    .carousel__item {
        width: 140%;
    }

    .left-para>h1 {
        font-size: 2rem;
    }

    .common-content {
        font-size: 1rem;
        color: rgb(121, 110, 110);
        line-height: 2;
    }

    .container {
        margin-top: 6rem;
    }

    .left-para {
        max-width: 20%;
        min-width: 60%;
        padding: 1rem;
    }

    .numNDtext>p {
        font-size: 1rem;
    }

    .about-wrapper {
        justify-content: space-between;
    }

    #Green {
        font-size: 3rem;
    }
    .works-section{
        padding: 0;
    }
        .about-wrapper {
        flex-direction: column;


    }
    .about-section {
        padding: 0;
    }

    .left-para {
        min-width: 70%;
    }

    .left-para>h1 {
        font-size: 2rem;
    }

    #Green {
        font-size: 2.5rem;
    }
    .right-para{
        flex-direction: row;
        gap: 3rem;
    }
    .about-section{
        justify-content: center;
        align-items: center;
    }
    .work-card{
        max-width: 70%;
        margin: auto;
    }
    .work-image {
    max-height: 400px;
}
.pASh1{
    font-size: 1.2rem;
}
.sizeTown{
    font-size: 1rem;
}
.tamil{
    font-size: 1rem;
}
    .work-card{
        max-width: 100%;
    }
    .services{
        flex-direction: column;
    }
    .left-content{
        max-width: 100%;
    }
    .left-content>h1 {
    font-size: 2rem;
}
.common-content-smaller {
    font-size: 1rem;
}
.left-content >h2{
    font-size: 1rem;
}
.right-content{
    margin-left: 0;
}
.cont > p{
    font-size: 0.79rem;
}
.service-head{
    font-size: 1rem;
}
.num{
    font-size: 1rem;
}
.fa-arrow-right{
    font-size: 0.5rem;
}
.sidebar{
    width: 100%;
    right: -100%;
}
.sidebar-p {
    font-size: 1rem;
}
.cont>h1 {
    font-size: 1.2rem;
}
#service{
    padding: 0;
    
}
.testimonials-container{
    flex-direction: column;
    height: fit-content;
    /* overflow: visible; */
        /* height: 140vh; */

}
#testimonial{
    height: fit-content;
}

.testimony{
    gap: 0;
    padding: 0 2rem;
}
    .each-testimony>p{
        font-size: 0.8rem;
    }
    #none-care{
        display: none;
    }
    .team-header{
        display: none;
    }
    .card{
            width:40%;

    }
    .grid{
        margin-top: 2rem;
    }
    .team-name{
        font-size: 1rem;
    }
    .team-role{
        font-size: 0.8rem;
    }
    .centre-aligned{
        font-size: 1rem;
    }
    .touch-value{
    font-size: 1rem;
}
.form{
    max-width: 90%;
}

}

@media (max-width: 430px) {
    .carousel__item-body {
        min-width: 90px;
        max-width: 300px;
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .carousel {
        margin-left: 10px;
        margin-right: 20px;
    }

    .carousel__item {
        width: 100%;
    }

    .container {
        margin-top: 8rem;
    }

    .oneLiner>p {
        font-size: 1rem;
    }

    .about-section {
        padding: 0;
    }

    .left-para {
        min-width: 80%;
    }

    .left-para>h1 {
        font-size: 1.5rem;
    }

    #Green {
        font-size: 2rem;
    }
    .right-para{
        flex-direction: column;
    }
    .cont>h1 {
    font-size: 0.9rem;
}

.testimonials-container{
    /* height: 210vh; */
}
#testimonial{
    padding: 0;
}
.profile>img{
    max-height: 25px;
    max-width: 25px;
}
.name, .user-data {
    font-size: 0.7rem;
}
.team{
    padding-top: 0;
    padding: 0;
}
/* .avatar {
        width: 10%;
        height: 10%;
    } */
         .team-name {
        font-size: 0.6rem;
    }
.team-role{
    font-size: 0.6rem;
}
    .touch-value{
    font-size: 0.7rem;
}
.sub-touch{
    gap: 1.5rem;
}
.touch-title{
    font-size: 0.9rem;
}
    

}
