/*
    Theme Name: MWD
    Author:  MWD
    Author URL: https://movewith.digital/
    Description: ---- 2023.
    Document   : Framework
    Created on :  NOV 29 2025, 12.00 AM
*/

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 100%;
  color: var(--textcolor);
  background: var(--bg-color);
  font-family: var(--font-one);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
}

::placeholder {
  color: var(--secondry-color);
  font-family: var(--font-one);
  font-weight: 500;
}

.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-family: var(--font-one);
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

h1,
h2,
h3,
h4,
h5,
h6,
button {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-one);
}

p {
  margin: 0;
  line-height: 1.3;
  font-size: 1.5em;
  color: var(--textbasecolortwo);
  font-weight: 300;
  font-family: var(--font-one);
}

h1 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  line-height: 1;
  font-size: 4em;
  font-weight: 600;
  font-family: var(--font-one);
}

h2 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  font-size: 3.3em;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-one);
}

h3 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  font-size: 1.7em;
  line-height: 1.1;
  font-weight: 600;
  font-family: var(--font-one);
}

h4 {
  margin: 0;
  padding: 0;
  font-size: var(--font-25);
  color: var(--text-brand-color-two);
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--font-one);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
  content: " ";
  display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
  clear: both;
}
.container {
  width: 90%;
  max-width: 1700px;
  margin: 0 auto;
}
.medium-container {
    width: 80%;
  max-width: 1270px;
  margin: 0 auto;
}
.small-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.outer {
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  background: var(--bg-color);
  overflow: hidden;
}
.inner-outer {
    margin: 200px 0 0 0;
}
:root {
  --font-one: "Inria Sans", sans-serif;
  --btnradius: 100px;
  --sm-radius: 20px;
  --lg-radius: 50px;
  --maincolor: #ffffff;
  --bg-color: #F8E9E1;
  --brand-one: #E74691;
  --brand-two: #825DDF;
  --black: #000000;
  --dark-blue: #1C2235;
  --light-black: #1E1E1E;
  --textbasecolortwo: #353131;
}

.flex {
  display: flex;
}
.w-100 {
  width: 100%;
}
.menu-close {
  display: none;
}
.banner {
  position: relative;
  background: url(../../assets/img/banner.jpg) no-repeat center center/cover;
  display: flex;
    align-items: flex-start;
    justify-content: center;
  border-top-left-radius: var(--lg-radius);
   border-top-right-radius: var(--lg-radius);
  overflow: hidden;
    flex-direction: column;
  padding: 250px 0 100px 0;
}
.banner::after {
  content: '';
  position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
border-top-left-radius: var(--lg-radius);
border-top-right-radius: var(--lg-radius);
}
.fill-btn.blue-btn {
  background: var(--brand-two);
}
.fill-btn {
  display: inline-block;
  padding: 15px 40px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--btnradius);
  color: var(--maincolor);
 background:  var(--brand-one);
text-align: center;

  transition: 0.3s ease;
  border: 1px solid var(--text-brand);
}
.fill-btn:hover {
  background-position: right center;
  transform: translateY(-2px);     /* ✅ Optional lift effect */;
  transition: 0.3s ease;
}
.outline-btn {
  display: inline-block;
  padding: 15px 40px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--btnradius);
  color: var(--maincolor);
 background:  transparent;
 border: 1px solid var(--maincolor);
  transition: 0.3s ease;
}
.outline-btn:hover {
  background-position: right center;
  transform: translateY(-2px);     /* ✅ Optional lift effect */;
  transition: 0.3s ease;
}
.banner-bottom {
  width: 90%;
    border-top: 1px solid #fff;
    margin: 100px auto 0;
    padding: 50px 0 0;
}
.right-end {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner p {
  color: var(--maincolor);
  opacity: 0.8!important;
  font-size: var(--font-25);
  font-weight: var(--font-regular);
  max-width: 645px;
  padding: 20px 0;
}
.banner-text {

 padding: 0 0 0 0;
    z-index: 2;
    position: relative;
   width: 90%;
    margin: 0 auto;
}
.banner-text h1 {
  margin: 0 0 40px 0;
  max-width: 1000px;
  text-shadow: 0 0 17px #0000005c;
}
.w-100 {
  width: 100%;
}
.bottom-banner {
padding: 100px 0 100px 0;
  border-bottom-left-radius: var(--lg-radius);
   border-bottom-right-radius: var(--lg-radius);
}
.blue-pink-shade {
background: linear-gradient(100.22deg, #526CDF 8.96%, #E74691 109.67%);
}
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-container {
  position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 100px;
    flex-wrap: wrap;
}



.stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.stat-icon {
  color: #fff;
  line-height: 0;
}

.stat-box h3 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.stat-box p {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  padding: 0 0 0 0;
}
.play-container{
 display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}
.banner-top {
  width: 100%;
}
.play-left{
  width: 40%;
}
.play-right{
  width: 60%;
}
.play-right p {
  color: var(--maincolor);
  font-size: 1.8em;
}
.services-section {

  padding: 40px 0;
  text-align:center;
}
.dark-blue h2 {
color: var(--dark-blue);
}


.dark-blue p {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0 0 0;
 
}

.services-container {
display: grid;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0 0 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.services-container.two-grid {
   grid-template-columns: 1fr 1fr;
   margin: 0 0 0 0;
}
/* card */
.service-card{
  position: relative;

    height: 480px;
  border-radius: var(--sm-radius);
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

/* image */
.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s;
}

/* gradient overlay */
.service-card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height: 250px;
  border-radius: var(--sm-radius);
}
.service-card:nth-child(1):after{

background: linear-gradient(360deg, #C7C548 0%, #0E6C89 62.5%, rgba(255, 255, 255, 0) 100%);

}
.service-card:nth-child(2):after{
background: linear-gradient(360deg, #6F51DC 0%, #0E6C89 50%, rgba(255, 255, 255, 0) 100%);
}
.service-card:nth-child(3):after{
background: linear-gradient(360deg, #40BD8B 0%, #0E6C89 50%, rgba(255, 255, 255, 0) 100%);
}
.service-card:nth-child(4):after{
background: linear-gradient(360deg, #0DA2D1 0%, #0E6C89 50%, rgba(255, 255, 255, 0) 100%);
}
.service-card:nth-child(5):after{
background: linear-gradient(360deg, #0DA2D1 0%, #0E6C89 50%, rgba(255, 255, 255, 0) 100%);

}
.service-card:nth-child(5) {
  grid-column: 1 / -1;
    justify-self: center;
}
/* content */
.service-content {
  position:absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index:2;
  padding: 25px;
  color: var(--maincolor);
  min-height: 220px;
}


.service-content p {
 font-size: 1.1em;
    margin: 10px 0;
    padding: 5px;
    color: var(--maincolor);
}

.arrow{
  display:inline-block;
  margin-top:10px;
  font-size:22px;
  transition:0.3s;
}

/* hover effects */
.service-card:hover{
  transform:translateY(-10px);
}

.service-card:hover img{
  transform:scale(1.1);
}

.service-card:hover .arrow{
  transform:translateX(8px);
}

/* button */
.service-btn{
  margin-top: 50px;
}


.featured-products {
    padding: 80px 150px;
background: linear-gradient(109.16deg, #8162CF 1.09%, #2842B7 99.25%);
border-radius: 50px;

border-radius: var(--lg-radius);

    border-radius: var(--lg-radius);
    color:#fff;
    text-align:center;
}


.featured-products h2{
    margin-bottom:10px;
}

.featured-products .subtitle{
    opacity: 0.6;
    margin: 0 auto;
    max-width: 900px;
    color: var(--maincolor);
}

.products{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:40px;
    margin: 50px 0 0 0;
}
.products a:hover {
    transform: translate(0px, -10px);
}
.product{
    display:flex;
    gap:15px;
    text-align:left;
    align-items: center;
}

.product img{
    height: 150px;
    border-radius: var(--sm-radius);
    object-fit: cover;
    width: 150px;
}

.product h4{
    margin:0;
    font-size:1.3em;
    color: var(--maincolor);
}

.product p{
  font-size: 1em;
    opacity: 0.85;
    max-width: 220px;
    color: var(--maincolor);
    margin: 10px 0 0 0;
}

.buttons{
   margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 20px;
}


.importane-sec  {
  position: relative;
}
.float-img.right-img-float {
    position: absolute;
    right: 0;
    bottom: -100px;
    width: 300px;
}
.right-img {
    position: absolute;
    top: -50px;
    left: 0;
}
.right-img img {
    max-width: 220px;
}
.products-section {
  margin: 0 0 50px 0;
}
.completed-projects{
    padding: 80px 0 0 0;
    text-align:center;
}

.completed-projects h2{
  color: var(--dark-blue);
    margin-bottom:5px;
}

.completed-projects .subtitle{
    color:#555;
    margin-bottom:40px;
}

.project-card{
   
   background: var(--maincolor);
    border-radius: var(--lg-radius);
    padding: 80px;
    display: flex;
    gap: 150px;
    align-items: center;
    margin: 50px 0 0 0;
}

.project-image img{
   width: 100%;
    max-width: 100%;
    border-radius: var(--sm-radius);
}
.project-image {
  width: 50%;
}
.project-content {
    text-align: left;
    width: 50%;
}

.project-content .logo{
    width: 200px;
    margin-bottom:15px;
}

.project-content p{
    color: var(--light-black);
    margin-bottom: 15px;
    max-width: 595px;
    line-height: 1.2;
    font-size: 1.5em;
}

.rating{
    color:#ffb400;
    margin-bottom:20px;
    font-size: 1.3em;
}

.rating span{
    color: var(--dark-blue);
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
}

.explore-service {
  position: relative;
}
.float-img{
  width:200px;
  animation: floatUpDown 2s ease-in-out infinite;
}
.left-float {
  position: absolute;
    z-index: 2;
    bottom: -220px;
}
.right-img {
  position: absolute;
    z-index: 2;
    bottom: -100px;
    right: 0;
}
.banner-sec {
  position: relative;
}
@keyframes floatUpDown{
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-20px);
  }
  100%{
    transform: translateY(0px);
  }
}
.wrap-outer {
    margin: 157px 0 0 0;
}
.explore-section {
  border-radius: var(--lg-radius);
  background: url(../../assets/img/full-width-image.jpg) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 500px 0 0 0;
}
.explore-section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
background: linear-gradient(82.05deg, #E74691 6.02%, rgba(231, 70, 145, 0) 87.98%);
top: 0;
left: 0;
overflow: hidden;
}
.explore-text {
  position: relative;
  z-index: 2;
  padding: 0 0 100px 130px;
}
.testimonial-section {
  padding: 100px 0;
  text-align: center;
}



.testimonial-slider {
  max-width: 700px;
  margin: auto;
}

.testimonial-item {
  padding: 10px 20px;
}



.stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial-item span {
  font-size: 1.1em;
    color: #000;
    font-weight: 500;
}

/* DOTS (exact style like screenshot) */
.slick-dots {
  margin-top: 25px;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #000;
  opacity: 0.3;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* IMPORTANT FIXES */
.slick-slide {
  height: auto !important;
}

.slick-track {
  display: flex !important;
}

.testimonial-item p {
  font-weight: 600;
  color: var(--light-black);
  max-width: 1300px;
  padding: 20px 0;
}
.testimonial-section .slick-dots li button:before {
 font-size: 50px;
}
.explore-text p {
  color: var(--maincolor);
  padding: 5px 0 15px 0;
}
.blog-section {
  padding: 100px 0;
  text-align: center;
}




.blog-wrapper {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  margin: 50px 0;
}

.blog-card {
  background: #fff;
  border-radius: var(--lg-radius);
  text-align: left;
  padding: 50px;
  position: relative;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img img {
  width: 100%;
  border-radius: var(--sm-radius);
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 20px 5px;
}

.blog-date {
  font-size: 1.2em;
  color: var(--dark-blue);
  font-weight: 500;
}

.blog-card h3 {
  color: var(--dark-blue);
    font-size: 1.4em;
    max-width: 300px;
    padding: 10px 0;

}

.blog-card p {
  font-size: 1.1em;
    padding: 0 0 50px 0;
    max-width: 450px;
    margin: inherit;
    font-weight: 400;
}


.read-btn {

    font-weight: 600;
    margin: 40px 0 0 0;
    position: absolute;
    bottom: -1px;
    left: 0px;
    background: #f8e9e1;
    padding: 20px 40px;
    border-top-right-radius: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.3em;
    color: #10309D;
    z-index: 2;
}
.read-btn::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    border-top-left-radius: 32px;
    box-shadow: -16px -16px 0 16px  #f8e9e1;
    transform: rotate(269deg);
}
.read-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: -32px;
    width: 32px;
    height: 32px;
    background: transparent;
    border-bottom-left-radius: 32px;
    box-shadow: -16px 16px 0 16px #f8e9e1;
}
a.read-btn img {
    max-width: 25px;
}
.blog-btn-wrap {
  margin-top: 30px;
}

.cta-wrap {
  padding: 60px 0 0 0;

}

.cta-container {
  text-align: center;
  padding: 100px 30px;
  border-radius: var(--lg-radius);
background: linear-gradient(100.22deg, #526CDF 8.96%, #E74691 109.67%);
  color: #fff;
}
.cta-buttons a.fill-btn.outline-btn {
  display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons a.fill-btn.outline-btn img {
 width: 15px;
    display: inline-block;
}
/* Text */
.cta-container p {
  max-width: 600px;
  margin: auto;
  opacity: 0.9;
  color: var(--maincolor);
  padding: 30px 0;
  font-size: 1.8em;
}

/* Buttons */
.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Primary Button */
.btn.primary {
  background: #fff;
  color: #E74691;
  font-weight: 600;
}

.btn.primary:hover {
  background: #f2f2f2;
}

/* Outline Button */
.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #d84c8b;
}

/* Divider */
.cta-divider {
  margin: 50px auto;
  height: 1px;
  background: rgba(255,255,255,0.3);
  width: 80%;
}

/* Bottom Info */
.cta-info {
  display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
  flex: 1;
  min-width: 200px;
}

.info-box span {
  font-size: 1.3em;
  display: block;

}

.info-box p {
 font-size: 1.2em;
    opacity: 0.8;
    padding: 8px 0;
}

.info-box h4 {
  font-size: 16px;
  font-weight: 600;
}
.site-footer {
  overflow: hidden;
  position: relative;
  transform: translateY(-45px);
}
.contact-us-page .cta-section strong {
  font-size: 2em;
    display: block;
    padding: 10px 0 0 0;
}
.contact-us-page .site-footer {
   transform: translateY(0);
}
.contact-us-page .footer-container {
  border-radius: var(--lg-radius);
  margin: 50px 0 45px 0;
} 
.footer-container {
  background-color: var(--maincolor);
  padding: 100px;
  border-bottom-left-radius: var(--lg-radius);
   border-bottom-right-radius: var(--lg-radius);
}

.footer-grid {
  display: grid;
  grid-template-columns: 140px 1fr 1.3fr 1.2fr 1.4fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 90px;
  height: auto;
  display: block;
}

.footer-col h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 3px;
}

.footer-col ul li a,
.footer-contact p,
.contact-block a {
 text-decoration: none;
    font-size: 1.1em;
    line-height: 1.7;
    color: #000;
    transition: 0.3s ease;
    font-weight: 500;
}

.footer-col ul li a:hover,
.contact-block a:hover {
  color: #8b5cf6;
}

.footer-contact p {
  margin: 0 0 26px;
  max-width: 300px;
}

.contact-block {
  margin-bottom: 22px;
}

.contact-block span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #6A6A6A;
  margin-bottom: 6px;
}

.contact-block a {
  font-weight: 700;
  color: #6A6A6A;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #7c7c7c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
 margin: 0;
    font-size: 1em;
    color: #000;
    font-weight: 500;
}
.footer-bottom p a {
    color: #000;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  color: #6b6b6b;
  font-size: 21px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #8b5cf6;
  transform: translateY(-2px);
}


.inspire-wrap {

  
    display: flex;
    align-items: center;
    gap: 100px;
}

.inspire-left-shape {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  
}

.inspire-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inspire-content {
  width: 50%;
}

.inspire-content h2 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f2940;
}

.inspire-content p {
  margin: 0 0 18px;
    line-height: 1.3;
    color: var(--light-black);
    font-weight: 300;
    font-size: 1.3em;
}

.inspire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-height: 46px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #6e63ff 0%, #9560db 100%);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.inspire-btn:hover {
  transform: translateY(-2px);
}
.bg-white {
  background-color: var(--maincolor);
    border-radius: var(--lg-radius);
    padding: 100px;
}
.black-countdown .stat-box h3 {
  color: var(--light-black);
}
.black-countdown .stat-box p {
  color: var(--light-black);
}
.black-countdown .stats-container {
 justify-content: center;
    align-items: center;
} 
.black-countdown {
  border-top: 1px solid #00000029;
    border-bottom: 1px solid #00000029;
    padding: 50px 0;
    margin: 50px 0 0 0;
}
.our-story-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding: 50px;
}

.our-story-content {
  flex: 1;

}

.our-story-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff4f93;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.our-story-content h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f2740;
  margin: 0 0 30px;
}

.our-story-content p {
 
  margin: 0 0 25px;
}
.buttons a {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}
.our-story-content p strong {
  font-weight: 700;
  color: #1f2740;
}

a.fill-btn.pink-btn {
    background-color: transparent;
    color: var(--brand-one);
    border: 1px solid var(--brand-one);
}
.products.our-products .product h4 {
    color: var(--dark-blue);
}
.our-story-image {
  flex: 1;
}

.our-story-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 40px;
  display: block;
}
.info-highlights-section {
  padding: 100px 0;
}

.info-highlights-heading {
  text-align: center;
  margin-bottom: 42px;
}




.info-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.info-highlights-card {
  border: 1.5px solid #6F51DC;
  border-radius: var(--sm-radius);
  padding: 30px;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.info-highlights-icon {
  
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.info-highlights-icon img {
 max-width: 60px;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 0 20px 0;
}

.info-highlights-card h3 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark-blue);
}

.info-highlights-card p {
  margin: 0;
    font-size: 1.1em;
    line-height: 1.65;
    max-width: 400px;
    padding: 10px 0 0 0;
    color: var(--dark-blue);
    font-weight: 500;
}

.info-highlights-action {
  text-align: center;
  margin-top: 34px;
}
.vision-and-mission .services-container.two-grid  .service-card {
  height: 650px;
}
.vision-and-mission .services-container.two-grid  .service-card::after {
height: 350px;
}
.vision-and-mission .services-container.two-grid .service-content {
  bottom: 30px;
}
.vision-and-mission .services-container.two-grid .service-content h3 {
  font-size: 2.5em;
}
.vision-and-mission .services-container.two-grid .service-content p {
  font-size: 1.5em;
    max-width: 550px;
    margin: 0 auto;
    width: 90%;
}
.border-top {
  border-top: 1px solid rgb(181 198 255 / 38%);

}
.top-line-page {
  padding: 0 0 100px 0;
}
.top-line-page h2 {
  padding: 20px 0 20px 0;
}
.top-line-page p {
  padding: 0 0 40px 0;
}
span.label-text {
  color: var(--brand-one);
  font-weight: 600;
  display: block;
  font-size: 1.8em;
  padding: 30px 0 0 0;
}
.top-line-page span.arrow img {
  width: inherit;
}
.top-line-page span.arrow {
  padding: 0;
    margin: 0;
}
.vision-and-mission.top-line-page .services-container.two-grid .service-content p {
padding: 20px 0;
}
.blue-outline {
  background-color: transparent;
color: #6F51DC;
border: 1px solid #6F51DC;
}
.border-top-pink {
  border-top: 1px solid #e746912e;
}
.border-bottom-pink {
  border-bottom: 1px solid #e746912e;
  padding: 0 0 50px 0;
}
.border-top-pink h2 {
  padding: 50px 0 0 0;
}
.p-0 {
  padding: 0 0 0 0!important;
}
.common-section {
  padding: 60px 0;
  background: #f3e8e1;
}

.common-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.common-service-card {
  display: flex;
    align-items: stretch;
    gap: 50px;
    background: var(--maincolor);
    border-top-left-radius: var(--lg-radius);
    border-top-right-radius: var(--lg-radius);
    padding: 50px;

}

.common-service-image {
 width: 48%;
    border-radius: var(--sm-radius);
    overflow: hidden;
    flex-shrink: 0;
    height: auto;
}
.common-quote-icon img {
    max-width: 90px;
}
.common-service-image img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--sm-radius);
    max-height: 850px;
}

.common-service-content {
  width: 52%;
  padding: 16px 12px 16px 0;
}

.common-service-divider {
  width: 100%;
  height: 1px;
  background: #d7d7d7;
  margin: 0 0 10px;
}

strong.common-service-subtitle {
   font-weight: 500;
    color: var(--dark-blue);
    font-size: 1.7em;
    line-height: 1.4;
    max-width: 700px;
    padding: 30px 0;
    margin: 0;
    display: block;
}
p.large-desc {
    font-size: 1.7em!important;
    font-weight: 300;
    line-height: 1.2;
}
.common-service-content p {
    color: var(--dark-blue);
    font-size: 1.3em;
    font-weight: 400;
        margin: 0;
        padding: 20px 0;
}
.common-service-content h2 {
    padding: 10px 0 0 0;
    max-width: 600px;
}
.common-service-heading {
  margin: 26px 0 16px;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 700;
  color: #20263a;
}

.common-service-list {
 
  margin-left: 20px;
}

.common-service-list li {
  margin-bottom: 3px;
   font-size: 1.2em;
    font-weight: 400;
  line-height: 1.8;
  color:  var(--dark-blue);
  list-style: disc;
}

.common-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.common-quote-box {
   background: #D9E8FF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom-left-radius: var(--lg-radius);
  border-bottom-right-radius: var(--lg-radius);
  padding: 50px;
  position: relative;
}


.common-quote-left {
  display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 800px;
}

.common-quote-icon {
  font-size: 72px;
  line-height: 1;
  color: #ef4c9a;
  font-weight: 700;
  flex-shrink: 0;
}

.common-quote-text {
  margin: 0;
    font-size: 1.7em;
    line-height: 1.3;
    color: var(--dark-blue);
    font-weight: 400;
}

.common-quote-right {
  flex-shrink: 0;
}
.common-quote-right .fill-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.common-gallery-section {
  padding: 50px 0 0 0;
  overflow: hidden;
}

.common-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.common-gallery-slider {
  margin: 0 -10px;
}

.common-gallery-item {
  padding: 0 10px;
  box-sizing: border-box;
}

.common-gallery-item img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  border-radius: var(--sm-radius);
}

.common-gallery-slider .slick-list {
  overflow: hidden;
}

.common-gallery-slider .slick-track {
  display: flex;
  align-items: center;
}

.common-gallery-slider .slick-slide {
  height: inherit;
}

.common-gallery-slider .slick-slide > div {
  height: 100%;
}
.our-products .product {
  background-color: var(--maincolor);
  padding: 30px;
  border-radius: var(--lg-radius);
  gap: 30px;
}
.our-products .product p {
  color: var(--light-black);
  padding: 0 0 0 0;
  font-weight: 500;
  opacity: 1;
}
a.line-hover-center {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--brand-one);
  font-weight: 800;
  margin: 15px 0 0 0;
}

a.line-hover-center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--brand-one);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

a.line-hover-center:hover::after {
  width: 100%;
}
.blog-detail .date {
  color: var(--light-black);
  display: block;
  font-weight: 600;
}
.blog-detail {
  padding: 20px 0;
}
.blog-detail-sec img {
  width: 100%;
  height: 400px;
  border-radius: var(--sm-radius);
  object-fit: cover;
}
.blog-detail {
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}
.blog-detail h2 {
  color: var(--dark-blue);
    font-size: 2.5em;
    padding: 20px 0 0 0;
}
.blog-detail h4 {
 font-size: 1.5em;
    font-weight: 400;
    padding: 20px 0;
}
.blog-detail p {
 font-size: 1.2em;
    font-weight: 500;
    color: var(--dark-blue);
}


.rq-quote-box {

  background: #fff;
  border-radius: var(--lg-radius);
  padding: 50px;
  box-sizing: border-box;
  margin: 50px auto 0;
}

.rq-quote-title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  color: #10309D;
  line-height: 1.4;
}

.rq-quote-form {
  width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

.rq-form-group {
  margin-bottom: 16px;
}

.rq-form-group label {
  display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 400;
    color: var(--light-black);
    line-height: 1.4;
}

.rq-form-group input,
.rq-form-group select,
.rq-form-group textarea {
width: 100%;
    height: 45px;
    border: 1px solid #d9d9d9;
    border-radius: 7px;
    background: #ffffff;
    padding: 0 14px;
    font-size: 13px;
    color: #222222;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin: 0 0 10px 0;
}

.rq-form-group input:focus,
.rq-form-group select:focus,
.rq-form-group textarea:focus {
  border-color: #1f45b7;
  box-shadow: 0 0 0 1px #1f45b7;
}

.rq-form-group textarea {
  height: 100px;
  resize: none;
  padding: 12px 14px;
}

.rq-select-wrap {
  position: relative;
}

.rq-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

.rq-select-wrap::after {
  content: "▼";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #10309D;
  pointer-events: none;
}

.rq-submit-btn {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    background: #1f45b7;
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.rq-submit-btn:hover {
  background: #17389a;
  transform: translateY(-1px);
}

.rq-btn-icon {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

   .page-loader {
      position: fixed;
      inset: 0;
      background: #f3e9e2;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .page-loader.hide {
      opacity: 0;
      visibility: hidden;
    }

    .loader-shape {
      position: relative;
      width: 80px;
      height: 80px; 
      animation: loaderRotate 3s linear infinite;
      transform-origin: center;
      will-change: transform;
      backface-visibility: hidden;
      transform: translateZ(0);
}

@keyframes loaderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
    

  

    .page-content {
      padding: 80px 20px;
      text-align: center;
    }
    #rq-quote-box {
  scroll-margin-top: 140px;
}
/************************************* Menu-start ****************************************/
/* Navbar Base */
.navbar {
  padding: 0 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 20px;
  z-index: 999;
  transition: all 0.35s ease;
}

.navbar.bgcolor {
  background: var(--bg-color);
  padding: 15px 0;
  margin-top: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.head-container {
  width: 90%;
  max-width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 20%;
    transition: all 0.35s ease;
}
.navbar .logo {
    transition: all 0.35s ease;
}
.navbar.bgcolor .logo img {
   transition: all 0.35s ease;
   max-width: 70px;
}
.logo img {
  max-width: 88px;
  display: block;
    transition: all 0.35s ease;
}

.right-end {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-btn {
  width: 20%;
  text-align: right;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  padding: 10px 0;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 10px;
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover {
  color: var(--brand-one);
}
.nav-links > li > a::after,
.dropdown-menu li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--text-brand);
  transition: width 0.35s ease;
}



.nav-links a:hover::after {
  width: 100%;
}

.menu-close {
  display: none;
}

.hamburger {
  display: none;
  font-size: 32px;
  color: var(--black);
  cursor: pointer;
  line-height: 1;
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Desktop dropdown */
.dropdown-menu {
 position: absolute;
    top: calc(100% + 3px);
    left: 0;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin: 0;
    list-style: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.32s ease;
    z-index: 99;
    overflow: hidden;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu li a {
  display: flex;
    justify-content: space-between;
    width: calc(100% - 30px);
    margin: 0 10px;
    padding: 12px 0;
    padding: 5px 0;
   font-size: 1.1em;
    font-weight: 600;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover > .dropdown-toggle .arrow {
  transform: rotate(45deg);
}

/* second tier desktop */
.sub-dropdown .sub-menu {
  top: 0;
  left: calc(100% + 12px);
  transform: translateY(10px);
}

.sub-dropdown:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* small hover motion */
.dropdown-menu li a:hover {
  padding-left: 8px;
  color: var(--brand-one);
}
.plus-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.35s ease;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.info-box a {
  color: var(--maincolor);
}
.plus-icon::before {
  width: 14px;
  height: 1.8px;
}

.plus-icon::after {
  width: 1.8px;
  height: 14px;
}
.dropdown-toggle-icon {
  display: inline-block;
  width: 9px;
  height: 6px;
  margin-top: 3px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.3s ease;
}
.blog-detail h2 {
  padding: 20px 0;
}
  .blog-detail p {
    padding: 10px 0;
  }


.dropdown-menu li a {
    color: var(--dark-blue);

}


.has-dropdown.active > .dropdown-toggle .dropdown-toggle-icon,
.has-dropdown:hover > .dropdown-toggle .dropdown-toggle-icon {
  transform: rotate(180deg);
}
/* MOBILE */
@media (max-width: 1024px) {
    .navbar {
    padding: 14px 20px;
    margin-top: 0;
  }

  .head-container {
    width: 90%;
    max-width: 100%;
  }

  .logo {
    width: auto;
  }

  .header-btn {
    display: block;
  }

  .right-end {
    margin-left: auto;
  }

  .hamburger {
    display: block;
    margin-left: 16px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #282e42;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 20px 30px;
    transition: left 0.45s ease;
    overflow-y: auto;
    z-index: 9999;
  }

  .nav-links.show {
    left: 0;
  }

  .menu-close {
   
    display: block;
    font-size: 3.5em;
    cursor: pointer;
  color: #fff;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10000;
  }

  .menu-close.show {
    opacity: 1;
    visibility: visible;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    width: 100%;
    margin: 0;
    padding: 16px 0;
    color: #fff;
    justify-content: space-between;
    font-size: 1.5rem;
  }

  .nav-links a::after {
    display: none;
  }

  .dropdown-menu,
  .sub-dropdown .sub-menu {
    position: static;
    min-width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease, visibility 0.35s ease;
  }

  .has-dropdown.active > .dropdown-menu,
  .sub-dropdown.active > .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu li a {
    width: 100%;
    margin: 0;
    padding: 12px 0 12px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.96rem;
  }

}

@media (max-width: 767px) {
  .logo img {
    max-width: 72px;
  }

  .hamburger {
    font-size: 40px;
  }
}
/************************************* Menu-end ****************************************/
/**************************** Mobile-responsive-start *********************************/
@media screen and (min-width: 200px) and (max-width: 683px) {
  body {
    font-size: 85%;
  }

  .container {
    width: 90%;
  }

  .flex {
    flex-wrap: wrap;
  }
   .navbar {
    padding: 0 0;
    margin: 20px 0 0 0;
  }
  .logo  {
    width: 100%;
  }
   .navbar .fill-btn {
   padding: 15px 20px;
        font-size: 12px;
  }
  .cta-container p {
    width: 90%;
  }
  .bottom-banner {
    padding: 50px 0;
  }
 .header-btn {
   margin: 0 20px;
        position: absolute;
        right: 135px;
  }
  .navbar.bgcolor {
    padding: 10px 0;
  }

  .small-container {
    width: 90%;
  }
  h1 {
    font-size: 2.8em;
    line-height: 1;
  }
  .banner {
   padding: 50px 20px 0;
  }
  .product img {
    height: 100px;
    width:100px;
   
  }
  .banner-text {
    margin: 0 0 0 0;
  }
   .play-container{
    flex-direction: column;
    gap: 10px;
  }

  .play-left,
  .play-right{
    width: 100%;
  }
  .products{
grid-template-columns:1fr;
}
.project-card{
flex-direction:column;
text-align:center;
padding: 30px;
gap: 10px;
}
.project-image {
  width: 100%;
}
h2 {
  font-size: 2.5em;
}

.project-content{
text-align:center;
width: 100%;
}
.completed-projects .subtitle {
  width: 90%;
}
 .blog-section {
    padding: 40px 0;
  }

  .blog-title {
    font-size: 22px;
  }

  .blog-subtitle {
    font-size: 13px;
  }

  .blog-wrapper {

    grid-template-columns: 1fr;
  }

  .blog-card {
    max-width: 100%;
    padding: 25px;
  }

  .blog-img img {
    height: 160px;
  }



  .cta-container {
    padding: 50px 0;
  }


  .cta-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer {
    border-radius: 0 0 22px 22px;
    transform: translateY(0);
  }

  .footer-top-line {
    height: 14px;
    border-radius: 0 0 16px 16px;
  }

  .footer-container {
    padding: 50px 30px;
    border-top-left-radius: var(--lg-radius);
    border-top-right-radius: var(--lg-radius);
    margin: 50px 0 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo img {
    max-width: 110px;
  }
.cta-buttons img {
   
    height: 30px;
}

  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 14px;
  }
a.footer-logo {

    width: 100%;
    display: flex;
    justify-content: center;
}
  .footer-col ul li {
    margin-bottom: 0;
  }

  .footer-col ul li a,
  .footer-contact p,
  .contact-block a {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-block span {
    font-size: 15px;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom p {
    font-size: 15px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    font-size: 18px;
  }
  .stats-section {
    padding: 0 0;
  }

  .stats-container {
   flex-direction: inherit;
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
  }


  .stat-box h3 {
    font-size: 24px;
  }

  .stat-box p {
    font-size: 13px;
  }

  .stat-icon {
    font-size: 13px;
  }
    .inspire-section {
    padding: 40px 15px;
  }
  span.stat-icon img {
    height: 20px;
}
.black-countdown .stats-container {
  padding: 20px 0;
}
  .inspire-wrap {
    padding: 0 0;
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 20px;
  }
.black-countdown {
  padding: 0 15px;
}
  .inspire-left-shape {
    width: 100%;
    height: 100%;
  }
.inspire-content {
    width: 100%;
}
  .inspire-content h2 {
    font-size: 28px;
  }

  .inspire-content p {
    font-size: 14px;
    line-height: 1.7;
  }
   .our-story-section {
    padding: 60px 0;
  }
section.services-section.dark-blue.vision-and-mission {
    padding: 0 0 0 0;
}
  .our-story-wrapper {
 flex-direction: column;
        gap: 35px;
        padding: 20px 0;
    }
.services-container.two-grid {
  grid-template-columns: 1fr;
}
.vision-and-mission .services-container.two-grid .service-card {
    height: 400px;
}
  .our-story-content {
    max-width: 100%;
  }

  .our-story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .our-story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .our-story-image {
    width: 100%;
    justify-content: center;
  }

  .our-story-image img {
    max-width: 100%;
    height: 380px;
    border-radius: 28px;
  }

  .story-btn {
    min-width: 210px;
    height: 52px;
    font-size: 15px;
  }
 .info-highlights-section {
    padding: 55px 0 50px;
  }

  .info-highlights-heading {
    margin-bottom: 30px;
  }

  .info-highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-highlights-card {
    min-height: auto;
    padding: 22px 16px;
  }

  .info-highlights-card h3 {
    font-size: 20px;
  }

  .info-highlights-card p {
    max-width: 100%;
    font-size: 14px;
  }

  .fill-btn {
    min-width: 162px;
    font-size: 1.1em;
  }
    .common-section {
    padding: 40px 0;
  }

  .common-container {
    padding: 0 12px;
  }

  .common-service-card {

    padding: 14px;
    gap: 18px;
    flex-wrap: wrap;
  }
.common-service-image {
  width: 100%;
}
.common-service-content {
    width: 100%;
    padding: 16px 0 16px 0;
}
strong.common-service-subtitle {
  padding: 10px 0;
}
span.label-text {
  padding: 0 0 0 0;
}
 
 .bg-white {
    padding: 30px;
  }
  .common-service-image img {
   min-height: 300px;
        height: inherit;
        max-height: 300px;
  }

  .common-service-label {
    font-size: 15px;
  }

  .common-service-title {
    font-size: 30px;
    margin-bottom: 0;
  }

  .common-service-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .common-service-divider {
    margin-bottom: 18px;
  }

     .common-service-content p {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 0;
        padding: 5px 0;
    }

  .common-service-heading {
    font-size: 24px;
    margin: 18px 0 12px;
  }

  .common-service-list li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
  }
    .common-quote-box {
    padding: 16px 16px 20px;
    gap: 16px;
    flex-wrap: wrap;
  }
.common-quote-icon img {
    max-width: 50px;
}
  .common-quote-left {
    gap: 12px;
    align-items: flex-start;
  }

  .common-quote-icon {
    font-size: 48px;
  }

  .common-quote-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .common-quote-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 13px;
  }

    .common-quote-right {
        width: 100%;
        justify-content: center;
        display: flex;
    }
    .common-gallery-item img {
    height: 150px;

  }
 
   .rq-quote-box {
    max-width: 100%;
    padding: 28px 20px 30px;
  }
.dropdown-menu li a {
  font-weight: 400;
}
  .rq-quote-title {
    font-size: 17px;
  }

  .rq-form-group input,
  .rq-form-group select,
  .rq-form-group textarea {
    font-size: 14px;
    margin: 0 0 0 0;
    height: 35px;
  }

  .rq-submit-btn {
    width: auto;
    min-width: 92px;
    justify-content: center;
  }
  .head-container {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }
    .right-end {
      align-items: flex-end;
    justify-content: flex-end;
    }
    .wrap-outer {
      margin: 130px 0 0 0;
    }
    .float-img.left-float img {
    max-width: 100px;
}
.banner-bottom {
   margin: 166px 0 50px 0;
    padding: 20px 0 0 0;
}
.services-container {
  grid-template-columns: 1fr;
}
.service-card {
  height: 350px;
}
.featured-products {
  padding: 30px;
}
.buttons {

    gap: 10px;
    flex-wrap: wrap;
    margin: 50px 0;
}
.testimonial-section {
  padding: 50px 0;
}
.explore-section {
  padding: 50px 0;
}
.explore-text {
  padding: 0 50px 100px 20px;
}
.float-img.right-img-float {
  display: none;
    bottom: -38px;
    width: 200px;
}
.medium-container {
  width: 90%;
}
.left-float {
    bottom: -120px;
    display: none;
}
.play-right p {
  font-size: 1.4em;
}
 .bg-white {
    padding: 30px 20px;
  }
  :root {
  --lg-radius: 20px;
  --sm-radius: 20px;
}
.service-content {
  min-height: inherit;
}
.product p {
  font-size: 1.1em;
}
.rating span {
  display: block;
}
.navbar.bgcolor {
  background: #f8e9e1e8;
}
}
/**************************** Mobile-responsive-end *********************************/
@media screen and (min-width: 684px) and (max-width: 1024px) {
   body {
    font-size: 85%;
  }

  .container {
    width: 90%;
  }
:root {
  --lg-radius: 20px;
}
  h1 {
    font-size: 3.5em;
  }
   .navbar {
    padding: 0 0;
    margin: 20px 0 0 0;
  }
  .logo  {
    width: 40%;
  }
   .navbar .fill-btn {
    padding: 7px 12px;
    font-size: 12px;
  }
 .header-btn {
    margin: 0 20px;
  }
.banner {
  padding: 100px 0;
}
  .products{
grid-template-columns:1fr 1fr;
}
.blog-title {
    font-size: 26px;
  }

  .blog-wrapper {
  grid-template-columns: 1fr;

  }

  .blog-card {
    max-width: 100%;
    padding: 30px;
  }
  .cta-container {
    padding: 40px 20px;
  }

  .cta-container h2 {
    font-size: 26px;
  }
  .bg-white {
    padding: 30px;
  }
.rq-form-group {
  margin-top: 0;
}
    .site-footer {
        border-radius: 0 0 22px 22px;
        transform: translateY(0);
    }
    .footer-container {
        padding: 50px 30px;
        border-top-left-radius: var(--lg-radius);
        border-top-right-radius: var(--lg-radius);
        margin: 50px 0 0 0;
    }

  .cta-info {
    align-items: center;
    text-align: center;
  }
    .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 10px;
  }
  .stats-container {
    justify-content: center;
    text-align: center;
    flex-wrap: nowrap;
    gap: 50px;
  }
  .service-content p {
    font-size: 1.5em;
  }
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
  .play-container {
    gap: 50px;
  }
  .bottom-banner {
    padding: 50px 0;
  }
.left-float {
  bottom: -100px;
}
.float-img {
  width: 150px;
}
  .stat-top {
    justify-content: center;
  }
   .inspire-wrap {
    gap: 20px;
  }

  .inspire-left-shape {
    width: 250px;
    height: 320px;
  }

  .inspire-content h2 {
    font-size: 34px;
  }
   .our-story-wrapper {
    gap: 40px;
    padding: 20px 0;
  }

  .our-story-content h2 {
    font-size: 44px;
  }

  .our-story-content p {
    font-size: 17px;
  }

  .our-story-image img {
    height: 460px;
  }
  .info-highlights-heading h2 {
    font-size: 34px;
  }

  .info-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .common-service-card {
    flex-direction: column;
    gap: 24px;
    padding: 18px;
  }

  .common-service-image,
  .common-service-content {
    width: 100%;
  }

  .common-service-image img {
    min-height: 320px;
    max-height: 400px;
  }

  .common-service-content {
    padding: 0;
  }
  section.common-quote-section.w-100 {
    margin: 0 0 50px 0;
}

  .common-service-title {
    font-size: 40px;
    max-width: 100%;
  }

  .common-service-subtitle {
    font-size: 22px;
    max-width: 100%;
  }
    .common-quote-box {
    padding: 18px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .common-quote-left {
    max-width: 100%;
  }

  .common-quote-text {
    font-size: 18px;
  }
   .common-gallery-section {
    padding: 18px 0;
  }

  .common-gallery-item img {
    height: 200px;
    border-radius: 18px;
  }
  .featured-products {
    padding: 40px;
  }
  .project-card {
    flex-wrap: wrap;
    padding: 40px;
    gap: 50px;
  }
  .project-image {
    width: 100%;
  }
  .project-content {
    width: 100%;
  }
  .explore-section {
    padding: 100px 0 0 0;
  }
  .explore-text {
    padding: 0 0 100px 50px;
  }
  .testimonial-item p {
    max-width: 900px;
  }
  .float-img.right-img-float {
    width: 200px;
  }
  .medium-container {
    width: 90%;
  }
  .bg-white {
    padding: 50px;
  }
  .services-section {
    padding: 0 0 0 0;
  }
  .vision-and-mission .services-container.two-grid .service-card {
    height: 450px;
}
.buttons {
  padding: 0 0 50px 0;
  margin-top: 50px;
}
.testimonial-section {
    padding: 100px 0 0 0;
    text-align: center;
}
}
/**************************** Tablet-responsive-end *********************************/
/**************************** other-screen-responsive-start *********************************/
@media screen and (min-width: 1024px) and (max-width: 1550px) {


  .container {
    margin: 0 auto;
    width: 90%;
  
  }
}
.contact-block a {
    display: block;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 999;
}



/* Pulsing animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/**************************** other-screen-responsive-end *********************************/