* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #01003d;
    font-family: "Roboto", sans-serif;
    color: #e7e7e7;
    min-height: 100vh;
    line-height: 1.5;
}

.blur-gradient3 {
    width: 50rem;
    height: 0;
    position: absolute;
    top: 60%;
    right: 0%;
    
    z-index: -1;
    overflow: visible;
    transform-origin: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blur-gradient3::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    /* box-shadow: 0 0 800px 100px rgba(127, 66, 167, 0.41); */
   
    z-index: -1;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 3rem);
}

.logo{
  /* color: #fff; */
  opacity: 0;
}

.blur-gradient {
    width: 50rem;
    position: absolute;
    top: 50%;
    right: -2rem;
    box-shadow: 0 0 800px 80px #1a407c;
    rotate: -25deg;
    z-index: -1;

}

.blur-gradient2 {
    width: 40rem;
    position: absolute;
    top: 60%;
    left: 2rem;
    box-shadow: 0 0 700px 50px #4d3788;
    rotate: 25deg;
    z-index: -1;
}

.top-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 6rem;
    position: relative;
    background-color: #e7e7e7;
    z-index: 1;
    border-bottom: 1px solid rgba(231, 231, 231, 0.24);
}

.conteniner {
    width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26, 26, 26, 0.759), rgba(26, 26, 26, 0.282)),
        url('images/standard-quality-control-concept-m.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 80vh;
}
.blur-gradient3 img{
    width: 70%;
}

.top-logo img {
    width: 150px;
    height: 50px;
}

.top-head-right nav {
    display: flex;
    gap: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    z-index: 999;
     /* position: sticky; */
    /* position: fixed; */
}
/* Initial style */
#mainHeader {
  background-color: transparent;
  position: fixed;
  top: 4rem;
  right: 0;
  margin:1.5rem 0rem;
  width: 100%;
  z-index: 1000;
   opacity: 0;
}
.logo img {
    width: 150px;
    height: 60px;
    opacity: 0;
}

/* Style after scroll */
#mainHeader.scrolled {
  background-color: white; /* Or any other solid color */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  top: 0;
  margin: 0;
   opacity: 1;
}
#mainHeader.scrolled nav a{
    color: #1a1a1a;
}
#mainHeader.scrolled .logo img{opacity: 1;}


header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 200;
}

nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -5%;
    z-index: 999;
    position: relative;
}

.top-head nav a {
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: #2a2a2a;
}
nav a {
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: #2a2a2a;
}


.content {
    max-width: 40rem;
    /* margin-left: 2%;s */
    z-index: 999;
    position: absolute;
    top: 20%;
}

.tag-box {
    position: relative;
    width: 18rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #656565, rgb(244, 101, 39), #6600c5, #5300a0, #757575, #656565);
    background-size: 200%;
    animation: gradientAnimation 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes gradientAnimation {
    to {
        background-position: 200%;
    }
}

.tag-box .tag {
    position: absolute;
    inset: 3px 3px 3px 3px;
    background-color: #000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    cursor: pointer;
}

.tag-box .tag:hover {
    color: rgba(244, 101, 39, 0.5);
}

.content h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
    color: #fff;

}

.description {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    max-width: 35rem;
    color: #e7e7e7;
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-get-started {
    text-decoration: none;
    border: 1px solid rgb(244, 101, 39);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
    color: #e7e7e7;
}

.btn-get-started:hover {
    background-color: #1a1a1a;
}

.btn-sign-in {
    text-decoration: none;
    background-color: rgb(244, 101, 39);
    color: #000;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #e7e7e7;
    transition: background-color 0.2s ease;
}

.btn-sign-in:hover {
    background-color: rgba(244, 101, 39, 0.42);
}


.image-circle-wrapper {
    position: relative;
    width: 27rem;
    height: 27rem;
    margin: 100px auto;
    aspect-ratio: 1 / 1;
    background: transparent;
    /* rotate: -25deg; */
}

.circle-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(244, 101, 39, 0.85);
    /* box-shadow: 0 0 800px 40px rgba(127, 66, 167, 0.29); */
    border-radius: 50%;
    z-index: 0;
    background: conic-gradient(from 0deg,
            #f46527,
            #7f42a7,
            #1a407c,
            #f46527);
    -webkit-mask:
        radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 calc(100% - 2px));
    mask:
        radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 calc(100% - 2px));
    animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.center-img {
    position: absolute;
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Image base style */
.circle-img {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    z-index: 2;
    background: transparent;
}

.connector-line {
    position: absolute;
    width: 2px;
    background-color: rgba(244, 101, 39, 0.85);
    z-index: 1;
    transform-origin: center;
}

/* Positioning around the circle */
.top {
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.right {
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
}

.bottom {
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.left {
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
}

.circle-img:hover {
    transform: scale(1.1);
    z-index: 3;
}

.line-top {
    top: 50%;
    left: 50%;
    height: 8rem;
    transform: translate(-50%, -100%) rotate(0deg);
}

.line-right {
    top: 50%;
    left: 50%;
    height: 15rem;
    transform: translate(0%, -50%) rotate(90deg);
}

.line-bottom {
    top: 50%;
    left: 50%;
    height: 8rem;
    transform: translate(-50%, 0%) rotate(180deg);
}

.line-left {
    top: 50%;
    left: 50%;
    height: 8rem;
    transform: translate(-100%, -50%) rotate(-90deg);
}

.swiper {
    width: 100%;
    box-shadow: none;
    /* margin-top: -80px; */
    /* height: 100vh; */
    margin-left: 6%;
    overflow: hidden;
}

/* .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
} */

.hero1 {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 70vh; */
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    animation: hero-animation 2s ease-in-out;
}

@keyframes hero-animation {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }

}

.hero-img {
    animation: fade-in 2s ease-in-out infinite;
    width: 70%;
}

@keyframes fade-in {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 20px; */
    margin-top: 20px;
    bottom: 10px;
    /* Adjust spacing */
}

.swiper-button-next,
.swiper-button-prev {
    color: #f46527;
    /* Customize color */
    font-size: 20px;
    width: 30px;
    height: 30px;
}

.swiper-pagination {
    position: static;
    padding-top: -80px;
    /* Prevent it from floating by default */
}

.container-content {
    padding: 3rem 0;
    /* margin-top: -80px; */
    background-color: #e7e7e7;
}

.container-content h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 2rem 0;
    color: #1a1a1a;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
}

.desc {
    font-size: 1rem;
    letter-spacing: 0.05em;
    /* max-width: 35rem; */
    color: #1a1a1a;
    text-align: center;
}

.content1 {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px auto;
    text-align: center;
}

.stat-box {
    font-family: sans-serif;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f46527;
}

.content2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5rem 0rem;
    background-color: #fff;
    height: 50rem;

}

.info-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* For mobile responsiveness */
    align-items: stretch;
}


.info-cont {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 40px;
    box-sizing: border-box;
    /* gap: 1rem; */
}

.info-cont h3 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 1rem 0;
    color: #f46527;
    line-height: 1.2;
}

.info-cont.image-side {
    padding: 0;
}

.info-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.info-box {
    padding: 2rem;
    margin: 0 2rem;
    color: #1a1a1a;

}

.desc1 {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    max-width: 45rem;
    font-weight: 300;
    color: #1a1a1a;
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
}

.content3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -1rem 0rem;
    background-color: #09b750;
    height: 30rem;
    width: 100%;
    padding: 0 5rem;
}

.icon-card {
    position: relative;
    background: #ffffff;
    padding: 40px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
    max-width: 400px;
    height: 80%;
    /* height: 2rem; */
    margin: 60px auto;
}
/*------------------------------------------------------------------------------*/
.icon-card:hover {
    transform: translateY(-10px);
    transition: 0.3s ease;
    border: 1px solid #f16b1c;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.icon-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 1rem 0;
    color: #fd3737;
    line-height: 1.2;
}

.icon-card p {
    font-size: 1rem;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-weight: 300;
}

.icon {
    position: absolute;
    top: -40px;
    padding: 15px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

.icon-card.top-center .icon {
    left: 50%;
    transform: translateX(-50%);
}

.icon-card.top-left .icon {
    left: 20px;
}

.icon-card.top-right .icon {
    right: 20px;
}

.content4 {
    margin: 18rem 0rem 0;
    background-color: #fff;
    /* height: 25rem; */
    text-align: start;
    padding: 0 5rem;
}
.content5{
    margin: 0rem 0rem 0;
    background-color: #fff;
    /* height: 22rem; */
    text-align: start;
    padding: 0 6rem;
    /* position: relative; */
}
.cont-align{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0rem 0;
}
.section-heading {
  /* font-size: 2rem; */
  font-weight: bold;
  color: #000033; /* Dark navy */
  margin-bottom: 0.5rem;
}
.section-hover-underline {
  position: relative;
  /* display: inline-block; */
  /* font-size: 2rem; */
  /* font-weight: bold; */
  color: #fff; /* Dark navy */
  cursor: pointer;
}


.section-hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px; /* space below text */
  height: 4px;
  width: 100%;
  background-color: #fd3737;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.section-hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.section-hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: right; /* Makes it slide out to left */
}
/*animation effect */
.animate {
            opacity: 0;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .animate.show {
            opacity: 1;
        }
        
        /* Different animation types */
        .slide-up {
            transform: translateY(50px);
        }
        
        .slide-up.show {
            transform: translateY(0);
           
        }
        
        .slide-left {
            transform: translateX(-5px);
            
        }
        
        .slide-left.show {
            transform: translateX(0);
             
        }
        
        .slide-right {
            transform: translateX(5px);
            
        }
        
        .slide-right.show {
            transform: translateX(0);
        }
        
        .zoom-in {
            transform: scale(0.95);
        }
        
        .zoom-in.show {
            transform: scale(1);
        }
        
        .fade-in {
            font: optional;
            /* No transform needed for simple fade */
        }
.section-underline {
  display: flex;
  height: 4px;
  width: 120px; /* Adjust width as needed */
  background: linear-gradient(to right, #000033 30%, #ddd 30%);
}

.cont-align h1{
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 1rem 0;
    color: #f46527;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
}
.content5 .swiper{
  width: 100%;
  height: 250px;
  padding-top: 0px;
}
.content5 .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 40px; */
    height: 100px;
    /* padding-top: 10px; */
    margin-top: 0;
}
.content5 .swiper-slide img {
    max-width: 70%;
    height: 100px;
    object-fit: contain;
    padding: 10px;
}
.cont4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 5px auto;
    padding: 2rem 3rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.square-cont {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.content5 .swiper-pagination{
    position: absolute;
    bottom: 10px;
    left: 50%;
    /* margin: -3rem 0; */
    transform: translate(-50%, -100%);
    z-index: 10;
}
.content5 .swiper-pagination-bullet-active{
    background-color: #f46527;
    width: 10px;
    height: 10px;
}
.content5 .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    border: 1px solid green;
}

.square-cont h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 1rem 0;
    text-align: center;
    color: #fd3737;
    /* line-height: 1.2; */
    /* text-shadow: 0 0 10px rgba(128, 128, 128, 0.418); */
}

.square {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
    background-color: #eef2f7;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.square-cont:hover .square {
    background-color: #f16b1c;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;


}

.square-cont:hover .square {
    background-color: #f16b1c;
}

.square-cont:hover {
    border: 1px solid #f16b1c;
}

.square-row[data-row] {
    display: none;
  }

  .row-toggle-btn {
    margin: 10px 9rem;
    padding: 10px 20px;
    background: #f46527;
    color: white;
    border: none;
    /* border-radius: 8px; */
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .square-row {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .square-row.show {
    display: flex;
  }
  .content5 .content5-left h3 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #f16b1c;
    line-height: 1.2;
    padding: 3rem 0rem;
    margin: 0 3rem;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
  }
  .content6{
    margin: 3rem 0rem;
    height: 20rem;
    text-align: start;
    padding: 0 6rem;
    position: relative;
  }
    .content6 .swiper{
        width: 100%;
        height: 250px;
        padding-top: 0px;
    }
    .content6 .swiper-slide{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .content6 .swiper-slide img{
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #f16b1c;
    }
    .content6 .swiper-slide h3{
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        color: #fd3737;
        line-height: 1.2;
        /* padding: 2rem 0rem; */
        margin: 0 3rem;
        text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
    }
    .content6 .swiper-slide h4{
        color:#fd3737;
        font-size: 12px;
    }
    .content6 .swiper-slide p{
        font-size: 14px;
        color: #2a2a2a;
        letter-spacing: 0.05em;
        text-align: center;
        max-width: 60rem; 
        line-height: 1.5;
        margin-top: 0.5rem;
        font-weight: 300;
    }

    .contBack{
        margin: 3rem 0rem;
        height: 28rem;
        text-align: start;
        padding: 0 6rem;
        position: relative;
        background: linear-gradient(rgba(26, 26, 26, 0.153), rgba(26, 26, 26, 0.17)),
        url('images/pexels-pixabay-39584.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    }
    .bg-div{
        width: 100%;
        height: 100%;
        background-color: #ffffff;
    }
    .content7{
        margin: -17rem 0rem;
        height: 27rem;
        width: 90%;
        text-align: start;
        padding: 0.5rem 6rem;
        position: relative;
        background-color: #ffffff;
    }
    
    .tab-buttons{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 0rem;
        gap: 20px;
        margin-bottom: 10px;
        position: relative;
         /* border-bottom: 2px solid #eee; */
    }
    .tab-underline {
    position: absolute;
    bottom: 26px;
    height: 3px;
    background-color: #FFA629;
    transition: left 0.3s ease, width 0.3s ease;
}

    .tab-btn {
        padding: 10px 20px;
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        font-weight: 300;
         transition: color 0.3s ease;
         position: relative;

      }
        .tab-btn:hover {
    color: #000033;
    }
      .tab-btn.active {
        /* background-color: #f46527; */
         color: #000033;
      }
      
      .item-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 2 columns for responsiveness */
        gap: 5px;
      }
      
      .tab-item {
        background-color: #eee;
        padding: 20px;
        text-align: center;
        border-radius: 8px;
        width: 200px;


      }
      .tab-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
      }
      .tab-item img:hover {
        transform: scale(1.05);
      }
      .tab-item h4{
        font-size: 1.2rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        color: #f16b1c;
        line-height: 1.2;
        /* margin: 0 3rem; */
        text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
      }

      .content8{
        margin: 15rem 0rem;
        height: 25rem;
        width: 100%;
        margin-bottom: 0;
        text-align: start;
        padding: 0.5rem 6rem;
        position: relative;
       
        /* background-color: #ffffff; */
      }
      .content8 .content8-left{
        display: flex;
        gap: 20px;
        padding: 40px;
      }
      .content8-left1{
        flex: 1;
      }
      .content8-left1 img {
        width: 100%;
        max-width: 900px; /* Optional: control image size */
        border-radius: 12px; /* Optional: make it look smoother */
        margin: 0 auto; /* center the image */
        display: block;
        padding: 10px; /* adds spacing inside the image box */
      }
      .content8-left1 h3{
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        color: #f16b1c;
        line-height: 1.2;
        padding: 1rem 0rem;
        /* margin: 0 3rem; */
        text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
      }
      .contact-cont{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 1rem;
        /* margin: 5px auto;
        padding: 2rem 3rem;
        flex-wrap: wrap;
        transition: all 0.3s ease; */
      }
      .contact-cont .desc11{
        font-size: 1.2rem;
        font-weight: 300;
        color: #1a1a1a;
        letter-spacing: 0.05em;
        line-height: 1.5;
        margin-top: 0.5rem;
      }

      .social-icons{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        margin: 5px auto;
        /* margin: 1rem 1rem; */
      }
      .footer-cont{
        margin: 13rem 0rem;
        height: 26rem;
        width: 100%;
        background-color: #09b750;
        margin-bottom: 0;
        text-align: start;
        padding: 0.5rem 7rem;
        position: relative;
      }
      .footer-cont h3{
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 1px;
        color: #ffffff;
        text-align: center;
        line-height: 1.2;
        padding: 1rem 0rem;
        margin: 0 3rem;
        text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
      }
      .footer-cont1{
        display: flex;
        /* justify-content: center; */
        align-items: center;
        gap: 1rem;
        margin: 5px auto;
        padding: 2rem 0rem;
        /* flex-wrap: wrap; */
        transition: all 0.3s ease;
      }
      .footer-cont1-left{
        background-color: #ffffff;
        padding: 1rem 1rem;
      }
      .footer-cont1-left1{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
       border-bottom: 1px solid #ccc;
       color: #1a1a1a;
      }
      .footer-cont1-left2 p{
        font-size: 1rem;
        font-weight: 300;
        color: #1a1a1a;
        letter-spacing: 0.005em;
        line-height: 1.5;
        margin-top: 0.5rem;
      }
      .footer-cont2-left{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin: 0rem 8rem;
        padding: 0rem 0rem;
        flex-wrap: wrap;
        transition: all 0.3s ease;
      }
      .main-footer{
        margin: 1rem 0rem;
        height: 25rem;
        width: 100%;
        /* background-color: #01003d; */
        margin-bottom: 0;
        text-align: start;
        padding: 0rem 5rem;
        position: relative;
    
      }
      .main-footCont{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin: 0px auto;
        padding: 0.5rem 0rem;
        flex-wrap: wrap;
        transition: all 0.3s ease;
      }
      .main-footCont1-left{
        display: flex;
        text-align: center;
        gap: 1rem;
        margin: 5px auto;
        justify-content: start;
        border-bottom: 1px solid #ccc;
        width: 100%;
        padding-top: 4px;
        color: #ffffff;
      }
     .downFoot .footer {
          padding: 4rem 2rem;
          margin-top: 0rem;
          margin-top: 0rem;
      }

 @media (max-width: 768px){

   
    .conteniner{
        padding: 0rem 0;
        margin: 0
    }
    header {
       display: none;
    }
    .square-row{
        flex-direction: column;
        height: auto;
        margin-top: 30rem;
    }
    .item-grid{
       
        display: grid;
        grid-template-columns: repeat(2, 2fr); /* 2 columns for responsiveness */
        gap: 5px;
        padding: 0;
    }
    .content1 {
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.stats-section {
    margin: 50px auto;
    flex-direction:column;
}
.stats-section .cont h3{
    font-size:1.2rem;
}

.stat-box {
    font-family: sans-serif;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #f46527;
}


.info-wrapper {
    flex-direction:column;
}


.info-cont {
    flex-direction: column; 
    flex: 1;
    padding: 0px;
    box-sizing: border-box;
    /* gap: 1rem; */
}

.info-cont h3 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 1rem 0;
    color: #f46527;
    line-height: 1.2;
}

.info-cont.image-side {
    padding: 0;
}

.info-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.info-box {
    /* width: 50rem; */
     height: 20rem; 
    padding: 2rem;
    margin: 0 2rem;
    color: #1a1a1a;

}

.desc1 {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    max-width: 45rem;
    font-weight: 300;
    color: #1a1a1a;
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
}

.content3 {
    margin: 0rem 0rem;
    height: 130rem;
    padding: 0 0rem;
    flex-direction:column;
}
.content2.info-wrapper {
   flex-direction:column;
    margin: 0rem 0rem;
    height: 50rem;

}

.icon-card {
    position: relative;
    background: #ffffff;
    padding: 40px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    height: 80%;
    margin: 60px auto;
}
    .content7{
        margin: 0;
        width: 100%;
    }
    .content8-left{
        flex-direction: column;
    }
    .footer-cont1{
        flex-direction: column;
    }
   .buttons1{
    flex-direction: column;
   }
 }