@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


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

/* ================= BUTTON ================= */
.explore-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 2px solid #990F0F;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: #fff;
}

/* Sliding background */
.explore-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #990F0F;
    transform: translateX(-100%);
    transition: transform 0.45s ease-in-out;
    z-index: 0;
}

.explore-btn:hover::before{
    transform: translateX(0);
}

/* Text */
.explore-btn .text{
    font-family: "Manrope", sans-serif;
    position: relative;
    z-index: 1;
    padding: 14px 22px;
    transition: color 0.45s ease-in-out;
}

/* Arrow box */
.explore-btn .icon{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 50px;
    background: #990F0F;
}

/* Arrow */
.explore-btn .icon svg{
    width: 18px;
    height: 18px;
    color: #fff;
    transition: transform 0.45s ease-in-out;
}

/* Hover text & arrow */
.explore-btn:hover .text{
    color: #fff;
}

.explore-btn:hover .icon svg{
    transform: rotate(45deg);
}

/* ===== ANIMATION SYSTEM ===== */

/* BASE */
.animate {
  opacity: 1;
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

/* ACTIVE */
.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* DIRECTIONS */
.fade-up {
  transform: translateY(60px);
}

.fade-down {
  transform: translateY(60px);
}

.fade-left {
  transform: translateX(60px);
}

.fade-right {
  transform: translateX(60px);
}

/* DELAY */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

/*--------------------------------------------------------------
Regular Content
--------------------------------------------------------------*/
.col_sm1 {
    width: 100%;
    margin: 0 auto;
}

.col_sm2 {
    width: 48%;
    float: left;
    margin: 1% 1%;
}

.col_sm2-img {
    width: 48%;
    float: left;
    margin: 1%;
}

.col_sm22 {
    width: 64%;
    float: left;
}

.col_sm222 {
    width: 36%;
    float: left;
}

.col_sm22_1 {
  width: 58%;
  float: left;
  margin: 1%;
}

.col_sm222_1 {
  width: 36%;
  float: left;
  margin: 1%;
}

.col_sm3 {
    width: 31.3%;
    float: left;
    margin: 1%;
}

.col_sm4 {
    width: 23%;
    margin: 1%;
    float: left;
}

.col_sm5 {
    width: 18%;
    margin: 1%;
    float: left;
}

.col_sm8 {
    width: 28%;
    margin: 1%;
    float: left;
}

.col_sm88 {
    width: 68%;
    margin: 1%;
    float: left;
}

.col_sm7 {
    width: 38%;
    margin: 1%;
    float: left;
}

.col_sm77 {
    width: 58%;
    margin: 1%;
    float: left;
}
.col_sm9 {
    width: 89%;
    margin: 1%;
    float: left;
}

.col_sm99 {
    width: 9%;
    margin: 1%;
    float: left;
}

.col_sm10 {
    width: 68%;
    float: left;
    margin: 1%;
}

.top {
    width: 80%;
    margin: 0 auto;
}

.top-ftr {
    width: 90%;
    margin: 0 auto;
}

.top2 {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clear{
	clear: both;
}

.pdg{
	padding: 80px 0 80px 0;
}

.pdg-1 {
    padding: 80px 0 140px 0;
}

.pdg2{
    padding: 80px 0 30px 0;
}

.pdg-ftr {
    padding: 40px 0 40px 0;
}

.pdg4{
	padding: 0 0 80px 0;
}

.img{
	width: 100%;
	margin: 1%;
}

.img1{
	width: 100%;
	margin: 0%;
}
.img-sec5{
	width: 100%;
	margin: 0%;
	height: 100vh;
}

.flex-abt {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.shine-effect {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 20px; /* match your image radius */
}

.shine-effect img {
    display: block;
    width: 100%;
    transition: 0.4s ease;
}

/* Shine layer */
.shine-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

/* Hover animation */
.shine-effect:hover::before {
    animation: shineMove 0.8s ease forwards;
}

@keyframes shineMove {
    100% {
        left: 150%;
    }
}




.team-bg{
    position: relative;
    background-image: url(../images/team-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Overlay */
.team-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}


.mar-btm{
   margin-bottom: 60px;
}




/*section one image*/

/* ===== ROTATING TEXT ===== */
.rotating-text1{
    position:absolute;
    width:100%;
    height:100%;
    animation:rotate 12s linear infinite;
}

@keyframes rotate{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

/* ===== CENTER WHITE CIRCLE ===== */
.center-circle1{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:2;
}

/* Arrow */
.center-circle1 span{
    font-size:24px;
    color:#990f0f;
    font-weight:bold;
    transition:0.3s;
}

.circle-txt1{
    font-family: "Manrope", sans-serif;
}

.awesome-btn1:hover .center-circle1 span{
    transform:translate(3px,-3px);
}

.awesome-btn1 {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #990f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    top: -76px;
    left: -87px;
}

.img-flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}


.sec1-flexx{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}


/*section one image*/




/*section 1*/

.img-shdow{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.img-shdow2{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
	
.section1-bg{
	background-image: url(../images/section1-bg.jpg);
	background-attachment: scroll;
	background-position: center;
	background-repeat: no-repeat;
	background-position: center;
}

.sec1_txt h5{
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.sec1_txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
    line-height: 120%;
}

.sec1_txt h2 span {
    font-weight: 700;
    color: #000;
}

.sec1_txt h3{
        font-family: "Manrope", sans-serif;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.sec22_txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 20px;
    color: #fff;
    line-height: 120%;
    margin-bottom: 20px;
}

.sec22_txt h2 span {
    font-weight: 700;
    color: #fff;
}

.our-strength-bg{
    background-image: url(../images/our-strength-bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}


.sec22_txt p {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 140%;
    text-align: left;
}


.sec23_txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 20px;
    color: #000;
    line-height: 120%;
}

.sec23_txt h3 {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.sec23_txt h2 span {
    font-weight: 700;
    color: #000;
}


.sec1_txt p {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 140%;
    text-align: justify;
}

.sec1_txt .bullet ul li{
    font-family: "Manrope", sans-serif;
    list-style: none;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    margin-left: 0px;
    margin-bottom: 20px;
    width: 48%;
}

.section{
    position:relative;
    max-width:1200px;
}

/* Small Top Image */
.small-img {
    width: 300px;
    height: 230px;
    border-radius: 45px;
    overflow: hidden;
}

.small-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Experience Text */
.exp-text {
    position: absolute;
    top: 45px;
    left: 330px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.exp-text h3{
	font-family: "Manrope", sans-serif;
    font-size:48px;
    font-weight:700;
color: #990f0f;
    line-height:1;
}

.exp-text p{
	font-family: "Manrope", sans-serif;
    font-size:18px;
    color:#333;
    font-weight: 500;
    line-height:1.4;
}

/* Large Image */
.large-img {
    width: 60%;
    position: relative;
    margin-top: -70px;
    right: -245px;
    border-radius: 50px;
    overflow: hidden;
}

.large-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 40px;
}


/* Responsive */
@media(max-width:992px){

    .exp-text{
        position:static;
        margin:30px 0;
    }

    .large-img{
        margin:30px 0 0 0;
        width:100%;
        height:500px;
    }

    .small-img{
        width:100%;
    }
}
/*section 1*/


/*section 2*/
.sex2-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
}

.sec2_txt h5{
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.sec2_txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
	text-align: left;
    margin-bottom: 20px;
    color: #fff;
    line-height: 120%;
    margin-bottom: 20px;
}

.sec2_txt h2 span {
    font-weight: 700;
    color: #fff;
}

.sec2_txt p{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 30px;
	line-height: 140%;
	text-align: left;
}

.section2-bg{
    position: relative;
    background-image: url(../images/section2-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Overlay */
.section2-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}
/*section 2*/

/*section 3*/
/* ================= WRAPPER ================= */
.services-wrapper{
    background:#fff;
    border-radius:50px;
    padding:40px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: -200px;
}

/* ================= GRID ================= */
.services{
    display:grid;
    grid-template-columns: repeat(2,1fr);
}

.services-1{
    display:grid;
    grid-template-columns: repeat(3,1fr);
}


/* ================= SERVICE BOX ================= */
.service-box{
    padding:20px 40px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:220px;
    position:relative;
    transition:0.3s ease;
}

/* Vertical Divider */
.service-box:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:10%;
    height:80%;
    width:1px;
    background:#dcdcdc;
}

.service-box-1{
    padding:20px 40px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:relative;
    transition:0.3s ease;
}

/* Vertical Divider */
.service-box-1:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:10%;
    height:80%;
    width:1px;
    background:#dcdcdc;
}

/* ================= ICON ================= */
.service-box i{
    font-size:36px;
    color:#990F0F;
    transition:0.3s;
}

/* ================= TITLE ================= */
.service-box h3{
	font-family: "Manrope", sans-serif;
    font-size:18px;
    font-weight:500;
    color:#2d2d2d;
    line-height:1.5;
}

.service-box-1 h3{
    font-family: "Manrope", sans-serif;
    text-align: center;
    font-size:18px;
    font-weight:500;
    color:#2d2d2d;
    line-height:1.5;
}

.service-box p{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 140%;
    text-align: left;
    margin-bottom: 10px;
}


.service-box img{
    width: 50px;
}

.service-icon{
    width: 60px;
    margin: 0 auto;
}


.pu-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}



/*=================image scroling marquee==================*/
/* SECTION */
.logo-marquee {
  overflow: hidden;
  padding: 20px 0;
}

/* TRACK */
.logo-track {
  display: flex;
  align-items: center;
  width: max-content;

  /* 🔥 SPEED CONTROL */
  animation: scroll 20s linear infinite;
}

/* LOGO ITEM */
.logo-mrq {
  flex: 0 0 auto;
  margin: 0 40px;
  border: 1px solid #c3c3c3;
}

/* LOGO IMAGE */
.logo-mrq img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT (ONLY SCALE, NO FADE) */
.logo-mrq img:hover {
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-mrq {
    margin: 0 20px;
  }

  .logo-mrq img {
    height: 40px;
  }
}

/* ================= BUTTON ================= */
.arrow-btn {
    width: 68px;
    height: 38px;
    background: #e2e2e2;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;   /* removes underline */
}

.arrow-btn i {
    font-size: 16px;
    color: #333;
    transition: 0.3s;
}

/* Hover Effect */
.arrow-btn:hover {
    background: #333;
}

.arrow-btn:hover i {
    color: #fff;
}

/* ================= HOVER EFFECT ================= */
.service-box:hover{
    transform:translateY(-6px);
}

.service-box:hover .arrow-btn{
    background:#990F0F;
}

.service-box:hover .arrow-btn i{
    color:#fff;
}

.service-box:hover i{
    transform:scale(1.1);
}

.bullet ul{
    display: flex;
    flex-wrap: wrap;
    margin-top: 2%;
}

.sticky-image{
  position: sticky;
  top: 120px; /* adjust based on header height */
}


/* ================= RESPONSIVE ================= */
@media(max-width:1100px){
    .services{
        grid-template-columns: repeat(2,1fr);
        gap:40px;
    }

    .service-box::after{
        display:none !important;
    }
}

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

    .services-wrapper{
        padding:50px 30px;
    }
}
/*section 3*/


/*section 4*/

.sex4-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.img-radious{
	border-radius: 40px;
}

.sec4_txt h3{
	font-family: "Manrope", sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: #990F0F;
	letter-spacing: 2px;
}

.sec4_txt h6{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #000;
	letter-spacing: 2px;
}

.sec4_txt h5{
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.sec4_txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
	text-align: left;
    margin-bottom: 20px;
    color: #000;
    line-height: 120%;
    margin-bottom: 20px;
}

.sec4_txt h2 span {
    font-weight: 700;
    color: #000;
}

.sec4_txt p{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #81848a;
	margin-bottom: 50px;
	line-height: 140%;
	text-align: left;
}

.sec4-mrg-tp{
	margin-top: 30px;
}

.img-brd{
    border-radius: 8px ;
}
/*section 4*/


/*section 5*/

.img-res{
    display: block;
}

.sec5_txt h3{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.sec5_txt h6{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #dbdbdb;
    text-align: left;
}

.sec5_txt h5{
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.sec5_txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
	text-align: left;
    margin-bottom: 20px;
    color: #fff;
    line-height: 120%;
    margin-bottom: 20px;
}

.sec5_txt h2 span {
    font-weight: 700;
    color: #fff;
}

.sec5_txt p{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 50px;
	line-height: 140%;
	text-align: left;
}

.sec5-bg{
	background-color: #000;
	height: 100vh;
	padding: 140px 100px;
}

.sec-flex{
    display: flex;
    flex-wrap: wrap;
}

.sec5-box{
	border: 1px solid #515151;
    padding: 25px;
    border-radius: 30px;
}

.sec5-box2{
	border: 1px solid #515151;
    padding: 25px;
    border-radius: 30px;
    background-color: #393939;
}

.sec5-icon{
	width: 40px;
	margin-bottom: 10px;
}

/*circle animation*/
/* ===== OUTER CIRCLE ===== */
/*.awesome-btn {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #990f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    top: -328px;
    left: 785px;
}*/

.awesome-btn {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #990f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
    top: -292px;
    left: 1054px;
}
/* Hover effect */
.awesome-btn:hover{
    transform:scale(1.08);
}

/* ===== ROTATING TEXT ===== */
.rotating-text{
    position:absolute;
    width:100%;
    height:100%;
    animation:rotate 12s linear infinite;
}

@keyframes rotate{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

/* ===== CENTER WHITE CIRCLE ===== */
.center-circle{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:2;
}

/* Arrow */
.center-circle span{
    font-size:24px;
    color:#990f0f;
    font-weight:bold;
    transition:0.3s;
}

.circle-txt{
	font-family: "Manrope", sans-serif;
}

.awesome-btn:hover .center-circle span{
    transform:translate(3px,-3px);
}
/*section 5*/

/*section 6*/
.sex6-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sec6_txt h5{
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #000;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.sec6_txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
	text-align: left;
    margin-bottom: 20px;
    color: #000;
    line-height: 120%;
    margin-bottom: 20px;
}

.sec6_txt h2 span {
    font-weight: 700;
    color: #000;
}

.sec6_txt h3{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.sec6_txt h4 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 700;
	text-align: left;
    color: #fff;
    line-height: 120%;
}

.sec6_txt h6{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 140%;
	text-align: left;
}


.sec6_txt2 h3{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #000;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.sec6_txt2 h4 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 700;
	text-align: left;
    color: #000;
    line-height: 120%;
}

.sec6_txt2 h6{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	line-height: 140%;
	text-align: left;
}

.sec6_txt p{
	font-family: "Manrope", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	margin-bottom: 30px;
	line-height: 140%;
	text-align: left;
}

.sex6-box{
	background: #990f0f;
    padding: 25px 20px;
    border-radius: 40px;
}

.sex6-box2{
	/*background: #990f0f;*/
	border: 1px solid #434343;
    padding: 25px 20px;
    border-radius: 40px;
}

/* Hover Effect */
.sex6-box2:hover {
    background: #990f0f;
    border-color: #990f0f;
    transition: background 0.4s ease, border-color 0.4s ease;

}


.sec6_txt2:hover h3,
.sec6_txt2:hover h4,
.sec6_txt2:hover h6 {
    color: #fff;
}

.sec4-mar{
	margin-bottom: 20px;
}
/*section 6*/



/* ===== MAIN WRAPPER ===== */
.rotating-badge{
    position:relative;
    width: 150px;
    height: 150px;
    border-radius:50%;
    background:#990f0f;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    float: right;
}

/* ===== ROTATING TEXT ===== */
.badge-text{
    position:absolute;
    width:100%;
    height:100%;
    animation:spin 12s linear infinite;
}

@keyframes spin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

/* ===== CENTER BUTTON ===== */
.badge-center{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

/* Outer ring */
.badge-center::before{
    content:"";
    position:absolute;
    width:95px;
    height:95px;
    border:2px solid #ffffff;
    border-radius:50%;
}

/* Arrow */
.badge-arrow{
    font-family: "Manrope", sans-serif;
    font-size:24px;
    color:#990f0f;
    font-weight:bold;
    transition:0.3s ease;
}

/* Hover effect */
.rotating-badge:hover .badge-arrow{
    transform:translate(3px,-3px);
}

.bullet-ftr ul li{
	font-family: "Manrope", sans-serif;
	list-style: disc;
	font-size: 18px;
	color: #fff;
	margin-left: 40px;
	margin-bottom: 10px;
}

.bullet-ftr ul li a{
	text-decoration: none;
	color: #fff;
}

.ftr-pdg{
	padding: 45px 0px;
}


/*footer*/

.footer-logo{
    width: 100px;
}
.link2{
    text-decoration: none;
}
/* Remove default list style */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.footer ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
}

/* Custom Disc Dot */
.footer ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;   /* Change to your brand color */
    font-size: 18px;
}


.padding-left{
    padding-left: 50px;
}

/* Footer Links */
.footer ul li a {
    text-decoration: none;
    color: #dcdcdc;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover Animation */
.footer ul li a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.swiper {
    padding: 40px 0;
}

.swiper-slide {
    height: auto !important;
    overflow: visible !important; 
}

.product {
    position: relative;
    margin-top: 6%;
    background-color: #ffffff;

    padding: 20px 20px 20px 20px;
    z-index: 2;

    background-image: url(../images/pattern.png);
}

/* Background layer */
.product:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #0A0A0A;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;

    /* Start hidden at bottom */
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.8s ease-in-out;
}

/* Hover Effect */
.product:hover:before {
    transform: scaleY(1);
}

.product .img-box{
    overflow: hidden;
}

.product .img-box img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}


.product:hover .img-box img {
    transform: scale(1.1);   /* Adjust zoom level here */
}


.product h2{
font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.product:hover h2{
    color: #fff;
}

.product:hover .explore-btn::before{
    transform: translateX(0);
}

.product:hover .explore-btn .text{
    color: #fff;
}

.product:hover .explore-btn .icon svg{
    transform: rotate(45deg);
}

.swiper-button-next:after, .swiper-button-prev:after {
    color: #990f0f !important;
}


.swiper-pagination-bullet-active {
    background-color: #990f0f !important;
}


.bg_clr3{
    background: #000;
}

.bg_clr33{
    background: #990f0f;
}

.ftr p{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    text-align: left;
}

.ftr h3{
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.ftr li a{
        font-family: "Manrope", sans-serif;
font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    text-align: left;
    text-decoration: none;
}

.ftr a{
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    text-align: left;
    text-decoration: none;
}

.ftr_right{
    
    float: right;
}

.ftr_btn p{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    text-align: left;
}

.ftr_btn a{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 140%;
    text-align: left;
}

/*innder page*/
/*banner*/
.img-banner{
    width: 100%;
}

.banner {
  position: relative;
  width: 100%;
  margin-top: -18px;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: #fff;*/
  opacity: 0;
  z-index: 1;
}

.breadcrumb-wrapper {
  position: absolute;
  z-index: 2;
  color: #000;
  text-align: center;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  /* ✅ proper horizontal centering */
}

.breadcrumb-wrapper a {
  color: #000;
  font-family: "Open Sans", sans-serif;
  padding: 10px;
  font-size: 20px;
  line-height: 140%;
  text-decoration: none;
}

.breadcrumb-wrapper span {
  position: relative;
  display: inline-block;
  margin: 0 8px;
  color: #000;
  font-family: "Open Sans", sans-serif;
  padding: 10px;
  font-size: 20px;
  line-height: 140%;
}

.breadcrumb-wrapper span:first-child {
  padding-right: 15px;
  /* space for dot */
}

.breadcrumb-wrapper span:first-child:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  /* green dot */
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
}
/*banner*/
/*inner page*/


/*product range page*/

.brd-brand{
    border: 1px solid #c3c3c3;
    border-radius: 20px;
}

.prod-glob-txt h2 {
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
    line-height: 140%;
    margin-bottom: 20px;
    text-align: left;
}

.prod-glob-txt h2 span {
    font-weight: 700;
    font-size: 38px;
    color: #000;
}

.prod-glob-txt h3 {
    font-family: "Manrope", sans-serif;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.prod-glob-txt h4 {
    font-family: "Manrope", sans-serif;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    margin: 1%;
}

.prod-glob-txt p {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
    line-height: 140%;
    text-align: justify;
}


.prod-glob-txt h6{
        font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #990f0f;
    margin-bottom: 0px;
    line-height: 140%;
}


.brd-btm{
    border-bottom: 1px solid #c3c3c3;
    margin: 10px 0;
}

.prod-img{
    border-radius: 20px;
    /*box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;*/
    border: 1px solid #dbdbdb;
}


/* Global Bullet Style */
.bullet-global {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.bullet-global li {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.6;
}

.row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /*gap: 15px;*/
}

.col_sm6_1 {
    flex: 0 0 18%;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    color: #000;
}



.col_sm7_1 {
    flex: 0 0 14.2857%;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    color: #000;
}

.col_sm8_1 {
    flex: 0 0 12.5%;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 110%;
    color: #000;
}

.icons{
    width: 50px;
    margin: 0 auto;
}

.prod-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*product rage page end*/


.icon-1 {
    width: 50px;
    margin: 0 auto;
}

.ind-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}


.wel-img-mrg {
  margin-top: 48px;
}

/*form*/
.ml {
  margin-left: 26px;
}

.left-cont h2 {
    font-family: "Manrope", sans-serif;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
    line-height: 120%;
    margin-bottom: 20px;
        text-align: center;
}

.left-cont h2 span {
    font-weight: 700;
    color: #000;
}

.left-cont p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #000;
  text-align: center;
}

.cont-info h3 {
  font-size: 25px;
font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 120%;
  color: #111;
  text-align: left;
  margin-bottom: 15px;
}

.bdr {
  border-top: 1px solid #dedede;
  display: block;
  position: relative;
}

.hd-ofc a {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 140%;
    color: #111;
    text-align: center;
}

.hd-ofc h5 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 18px;
    /* margin-bottom: 15px; */
    line-height: 140%;
    color: #111;
    text-align: left;
}


.hd-ofc p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #000;
    text-align: left;
}

.hd-ofc-1  {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #000;
    text-align: center;
}

.hd-ofc-1 a {
    color: #000;
    text-decoration: none;
}

.flex {
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.gap {
  display: flex;
  gap: 40px;
}

.col_sm11 {
  width: 8%;
  float: left;
  margin: 4% 0% 4%;
}

.col_sm111 {
  width: 68%;
  float: left;
  margin: 0% 5% 0%;
}

.icon_1 {
  background-color: #f5f5f5;
  height: 67px;
  width: 67px;
  line-height: 67px;
  border-radius: 50%;
}

.icon_1 i {
  font-size: 20px;
}

.icon_1 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
}

.welcome1 p {
      font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #000;
    text-align: center;
}

/*form css end*/
.pst-rl{
    position: relative;
}
.p-logo{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.7);}
    to {transform: scale(1);}
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

body.no-scroll {
    overflow: hidden;
}


@media only screen and (max-width : 1700px){

.awesome-btn {
    left: 920px;
    top: -343px;
}

}

@media only screen and (max-width : 1614px){

    .sec5-bg {
        padding: 50px 100px;
    }



}

@media only screen and (max-width : 1600px){

    .awesome-btn {
    left: 853px;
    top: -343px;
}


    .sec5-bg {
    padding: 42px 100px;
}


.left-cont h2 {
    font-size: 38px;
}

}



@media only screen and (max-width : 1500px){
    .awesome-btn {
    left: 576px;
}

.service-box img {
    width: 40px;
}

}


@media only screen and (max-width:1480px){

        .awesome-btn {
        left: 765px;
        top: -510px;
    }

    .left-cont h2 {
        font-size: 33px;
    }

    .awesome-btn {
        top: -306px;
        left: 773px;
    }

    .sec5-bg {
        padding: 90px 100px;
    }

    .flex-abt {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .prod-glob-txt h2 {
        font-size: 22px;
    }

}

@media only screen and (max-width:1460px){

    .left-cont h2 {
        font-size: 34px;
        text-align: left;
    }

    
}



@media only screen and (max-width:1400px){


    .awesome-btn {
        left: 723px;
    }

     .left-cont h2 {
        font-size: 33px;
    }

        .sec5-bg {
        padding: 10px 15px;
    }

    .sec5_txt h2 {
    margin-bottom: 5px;
}

.awesome-btn {
        width: 90px;
        height: 90px;
    }

    .center-circle {
        width: 40px;
        height: 40px;
    }

    .awesome-btn {
        top: -242px;
        left: 745px;
    }


}

@media only screen and (max-width:1366px){

    .sec1_txt h2 {
    font-size: 36px;
}

.sec2_txt h2 {
    font-size: 36px;
}

.sec5_txt h2 {
    font-size: 36px;
}

.sec5_txt h3 {
    font-size: 16px;
}

.sec5_txt h6 {
    font-size: 16px;
}

.awesome-btn {
        width: 100px;
        height: 100px;
    }

.center-circle {
    width: 50px;
    height: 50px;
}


.sec4_txt h2 {
    font-size: 36px;
}

    .sec5-bg {
        padding: 40px 40px;
    }

    .left-cont h2 {
        font-size: 30px;
        text-align: center;
    }

    .awesome-btn {
        left: 780px;
        top: -250px;
    }


    .sec23_txt h3 {
    font-size: 16px;
}

.sec22_txt h2 {
    font-size: 36px;
}

.sec23_txt h2 {
    font-size: 36px;
}

.sec2_txt p {
    font-size: 16px;
}

.sec22_txt p {
    font-size: 16px;
}

.sec1_txt p {
    font-size: 16px;
}

.prod-glob-txt h2 {
    font-size: 24px;
}

.prod-glob-txt h2 span {
    font-size: 28px;
}

.prod-glob-txt p {
    font-size: 16px;
}

.prod-glob-txt h3 {
    font-size: 18px;
}

.prod-glob-txt h6 {
    font-size: 16px;
}

.bullet-global li {
    font-size: 16px;
}

.prod-glob-txt h4 {
    font-size: 18px;
}

.col_sm7_1 {
    font-size: 14px;
    font-weight: 500;
}

.tx-logo a span {
    font-size: 26px;
}

.tx-logo img {
    width: 70px;
}

.col_sm8_1 {
    font-size: 14px;
    font-weight: 500;

}

.hd-ofc p {
    min-height: 116px;
}

}




@media only screen and ( max-width:1260px){

    .left-cont h2 {
        font-size: 29px;
    }


}


@media only screen and ( max-width:1200px){

    .flex-abt {
        flex-direction: column;
    }

    .sticky-image {
    position: unset;
}


    .col_sm5 {
    width: 31%;
}

    .col_sm2 {
    width: 98%;

    }

    .services {
    grid-template-columns: repeat(2, 1fr);
}

.col_sm22 {
    width: 100%;
}
.sec5-bg {
    height: fit-content;
}

.awesome-btn {
display: none;
}

.sex6-flex {
    flex-wrap: wrap;
}

.col_sm4 {
    width: 48%;
}


    .ftr_right {
    float: left;
}

.img-res{
    display: none;
}

}


@media only screen and (max-width : 1000px){
        .tx-logo a span {
        font-size: 18px;
    }

.breadcrumb-wrapper {
    display: none;
}

.col_sm11 {
    width: 0%;
}

.icon_1 {
    display: none !important;
}

.gap {
    gap: 0px;
}

.col_sm111 {
    width: 98%;
}

    .large-img {
        margin: 0px 0 0 0;
        right: 0;
    }

}


@media only screen and (max-width : 960px){

    .awesome-btn1 {
    display: none;
}


    .sec1-flexx {
        flex-direction: column-reverse;
    }


    .col_sm222_1 {
        width: 98%;
    }

    .col_sm22_1 {
        width: 98%;
    }

    .flex-abt {
        flex-direction: column;
    }

    .col_sm7 {
        width: 98%;
    }

    .col_sm77 {
        width: 98%;
    }

    .services-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .service-box-1:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: none;
    }

    .col_sm3 {
        width: 98%;
        float: left;
        margin: 1%;
    }

    .gap {
        margin-bottom: 30px;
    }

    .mar-btm {
        margin-bottom: 10px;
    }

}

@media only screen and (max-width : 900px){

    .pdg {
    padding: 40px 0 40px 0;
}

.breadcrumb-wrapper {
    top: 77%;
}

.services-wrapper {
    margin-top: -143px;
}

.col_sm4 {
        width: 98%;
    }

    .padding-left {
    padding-left: 0px;
}

      .services {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .service-box img {
        width: 60px;
    }

   .col_sm5 {
    width: 48%;
}

.flex-abt {
        flex-direction: column-reverse;
    }

    .prod-flex {
    flex-direction: column;
}

.row {
    gap: 15px;
    flex-wrap: wrap;
}

.col_sm7_1 {
    flex: 0 0 24.2857%;
}

.flex {
    flex-direction: column;
}

.wel-img-mrg {
    margin-top: 0px;
}

}


@media only screen and (max-width : 800px){
    .services {
        grid-template-columns: repeat(1, 1fr);
    }

        .service-box img {
        width: 18%;
    }

        .col_sm4 {
        width: 98%;
    }

    .sex2-flex {
    flex-wrap: wrap;
}

.padding-left {
    padding-left: 0px;
}

.sec1_txt h5 {
    margin-top: 20px;
}

.shine-effect {
    width: 100%;
}

.col_sm7 {
    width: 98%;
}

.col_sm77 {
    width: 98%;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.col_sm8_1 {
    margin-bottom: 25px;
}

.prod-flex {
    flex-direction: column;
}

.col_sm7_1 {
    margin-bottom: 25px;
}

.prod-glob-txt p {
    text-align: left;
}

.breadcrumb-wrapper {
    display: none;
}

.col_sm222_1 {
    width: 98%;
}

.col_sm22_1 {
    width: 98%;
}

.left-cont h2 {
    text-align: left;
}

.flex {
    flex-direction: column;
}

.ml {
    margin-left: 0px;
}

}

@media only screen and  (max-width : 600px){

    .sec1_txt h2 {
    font-size: 30px;
}

.sec1_txt p {
    text-align: left;
}

.sec4_txt h2 {
    font-size: 30px;
}

.sec5_txt h2 {
    font-size: 30px;
}


    .sec1_txt .bullet ul li {
    width: 98%;
}

    .sec5-bg {
        padding: 42px 42px;
    }

    .explore-btn .icon {
    width: 30px;
    height: 30px;
}

.explore-btn .text {
    padding: 0px 16px;
}

.explore-btn {
    font-size: 14px;
}

}

@media only screen and (max-width : 500px){
    .sec1_txt .bullet ul li {
    width: 98%;
}
}

@media only screen and (max-width : 400px){
        .sec5-bg {
        padding: 40px;
    }

    .img-sec5 {
    height: 50vh;
    object-fit: cover;
}

.service-box {
    padding: 0;
}

    .service-box img {
        width: 40%;
    }
}