* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
  font-weight: var(--font-medium);
  scroll-behavior: smooth;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

h1,h2,h3,h4 {
  font-family: 'Poppins', sans-serif;
}

a {color: #333;text-decoration: none;}

main {
  width: 100%;
  position: relative;
}

header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    background-color: transparent;
    padding-inline: 10px;
    z-index: 999;
    top: 0;
}

.sub_text{font-size: 17px; font-weight: 400}
.head-title { padding: 0px 0; letter-spacing: 0px; font-size: 1.70rem;}
.glob-lr { padding: 40px 107px;}
.content-text{font-size: 16px; font-weight: 400;line-height: 29px;}

/*background-image: linear-gradient(to right, #10528b, #001325);*/
header.scrolled {background-image: linear-gradient(to right, #2F80ED, #114779);}

header .logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100%;
  cursor: pointer;
}

.logo img {
  width: 90%;
}

.desktop-navbar {
  height: 100%;
}

.desktop-navbar > ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.desktop-navbar ul li {
  height: 100%;
  list-style: none;
  transition: all 0.3s ease;
}

.desktop-navbar ul li .dropdown {
  display: none;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  height: fit-content;
}

.community-link > .dropdown {
  left: 50% !important;
}

.desktop-navbar ul li:hover .dropdown {
  display: block;
  opacity: 1;
}

.desktop-navbar ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 100%;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 500;
}

.desktop-navbar ul li a i {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #fff;
}

.desktop-navbar ul li:hover a i {
  transform: rotate(180deg);
}

.desktop-navbar ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}

.desktop-navbar ul li a:hover::after {
  width: 100%;
}
.new-hero { background: url(http://skyveratech.com/frontend/banner/home-banner-new.png);
      background-repeat: no-repeat; background-position: top center; background-size: cover;    
      overflow: hidden;  width: 100%; top: 0; position: relative; height: 100vh; overflow: hidden;}

.new-hero img { pointer-events: none;}




.dropdown-container ul button i { position: absolute;
  top: -10px;
  right: -10px;
  transform: rotate(45deg);
}

.dropdown .dropdown-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 80px;
  background-image: linear-gradient(to bottom, #fff, #fff);
  padding: 24px;
  backdrop-filter: blur(20px);  
  border: 1px solid #063b6c;
  border-radius: 6px;
}

.dropdown .dropdown-container ul { padding: 0;}

.dropdown-container ul h4 {
  font-size: 15px;
  text-transform: uppercase;
  color: #0B2545;
  font-weight: 600;
}

.dropdown-container ul button {
  position: relative;
  background: #01528b;
  padding: 10px 20px;
  border: 1px solid var(--para-color);
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 14px;
  animation: glowPulse 2s infinite;
  cursor: pointer;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(1, 82, 139, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(1, 82, 139, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 82, 139, 0);
  }
}

@keyframes glowPulseCall {
  0% {
      box-shadow: 0 0 0px rgba(6, 59, 108, 0.6);
      transform: scale(1);
  }
  50% {
      box-shadow: 0 0 12px rgba(6, 59, 108, 0.9);
      transform: scale(1.05);
  }
  100% {
      box-shadow: 0 0 0px rgba(6, 59, 108, 0.6);
      transform: scale(1);
  }
}

.dropdown-container ul button i {
  position: absolute;
  top: -10px;
  right: -10px;
  transform: rotate(45deg);
}

.dropdown-container ul li a {
  width: max-content;
  /*justify-content: start;*/
  margin-block: 14px;
  font-size: 14px;
  color: #474849;
  /*font-weight: 500;*/
}

.dropdown-content {
  /* background: var(--bg-gradient); */
  background-image: linear-gradient(to bottom, #10528b, #001325);
  padding: 10px;
  position: absolute;
  top: 60px;
  right: 30px;
  z-index: 1;
  width: 160px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.dropdown-content a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 5px;
}

.dropdown-content a:hover {
  background: var(--primary-color);
}


/* Hero text container */
.hero-content {
    position: absolute;
    left: 60px;        /* distance from left edge, adjust as needed */
    top: 50%;          /* vertical center */
    transform: translateY(-50%); /* perfectly center vertically */
    color: #fff;       /* text color */
    max-width: 600px;  /* text container width */
}

/* Headings and paragraph */
.hero-content h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Buttons styling */
.hero-content button {
    padding: 12px 25px;
    font-size: 16px;
    margin-right: 15px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.hero-content button#hero-btn-first {
    background-color: #ff6f61; /* example primary color */
    color: #fff;
}

.hero-content button:last-child {
    background-color: #fff;
    color: #333;
}

.blogs-container {
  width: 400px;
}

.blogs-container h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #ececec;
  font-weight: var(--font-semibold);
}

.blogs-container img {
  width: 130px;
}

.blogs-container p {
  font-size: 14px;
  color: #fff;
}

.blogs-container a {
  width: fit-content;
  font-size: 14px;
}

.blogs-container .blogs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-block: 10px;
  cursor: pointer;
}

.nav-btn {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-right: 14px;
}

.nav-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: transparent;
  color: var(--white);
  font-size: var(--font-size5);
  border: none;
  border-radius: 5px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn button:nth-child(1) {
  background-image: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.5)
  );
  border: 1px solid #ececec;
}

.nav-btn button:nth-child(3) {
  background-color: #fff;
  color: #000;
}

.hamburger {
  display: none;
  color: #fff;
  font-size: 28px;
  padding-right: 127px;
}

.no-scroll {
  overflow: hidden;
}

.mobile-navbar {
  width: 100%;
  max-width: 500px;
  height: 100vh;
  min-height: 100vh;
  display: block;
  background: var(--bg-gradient);
  padding: 10px;
  position: absolute;
  right: 0;
  top: 59px;
  overflow: scroll;
  z-index: 999;
  transition: all 0.3s ease;
}

.mobile-navbar:not(.open) {
  display: none;
}

.mobile-nav {
  width: 100%;
}

.mobile-nav > button,
.sub-mobile-nav > button {
  width: 100%;
  height: 52px;
  text-align: left;
  font-size: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border: none;
  background: transparent;
}

.mobile-nav-body,
.sub-mobile-nav-body {
  width: 100%;
  padding: 0 15px;
  border: 1px solid rgba(127, 106, 106, 0.3);
  border-radius: 10px;
  background: rgba(127, 106, 106, 0.19);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
}

.sub-mobile-nav-body {
  background: transparent !important;
}

.mobile-nav-body ul > button {
  padding: 8px 12px;
  border: none;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 4px;
  margin-bottom: 12px;
}

.mobile-nav-body:not(.show) {
  display: none;
}

.sub-mobile-nav-body:not(.show) {
  display: none;
}

.mobile-nav ul {
  list-style: none;
  padding-left: 0;
}

.mobile-nav ul li {
  margin-block: 16px;
}

.mobile-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.arrow-icon::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  transition: transform 0.3s ease;
  color: #fff;
}

.arrow-icon.rotate-arrow::before {
  transform: rotate(180deg);
}

.fix-mobile-nav {
  width: 100%;
  min-height: 150px;
  visibility: hidden;
  opacity: 0;
}


/* Hero text container Inner Pages */
.hero-content-inner {
    position: absolute;
    left: 60px;        /* distance from left edge, adjust as needed */
    top: 55%;          /* vertical center */
    transform: translateY(-55%); /* perfectly center vertically */
    color: #fff;       /* text color */
    max-width: 700px;  /* text container width */
}

/* Headings and paragraph */
.hero-content-inner h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content-inner p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Buttons styling */
.hero-content-inner button {
    padding: 12px 25px;
    font-size: 16px;
    margin-right: 15px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.hero-content-inner button#hero-btn-first {
    background-color: #ff6f61; /* example primary color */
    color: #fff;
}

.hero-content-inner button:last-child {
    background-color: #fff;
    color: #333;
}
/* Hero text container Inner Pages END */

 /*About us Home Page*/
.about-section {position: relative; padding: 40px 110px;}
.auto-container { position: static;padding: 0px 15px; margin: 0 auto;}
.about-title{color:#164177;font-weight: 600;margin-bottom: 10px;font-size: 20px;}
.about-section h2{font-size: 1.75rem;font-weight: 500;}
.about-text{font-size: 16px; font-weight: 400;line-height: 27px;}
.about-btn {font-weight: 500;color:#164177;}

.btn-submit {background: #ff6f61; border: 1px solid #ff6f61; padding: 4px 7px; border-radius: 5px;color:#fff}

ul.servicelist { padding-left: 0; margin-left: 0;}
.servicelist li {
    list-style: none;
    position: relative;    
    padding-left: 30px;
    line-height: 27px;
}
.servicelist li:before {
    aspect-ratio: 1;
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(http://skyveratech.com/frontend/images/check.svg) no-repeat;
    background-size: 100%;
}

.image-box {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.image-box img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.35)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-box:hover::after { opacity: 1;}
 /*About us Home Page*/

/*Our Services*/
.sw-card{
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease;  
}
.sw-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6f61 15%, #9cc6ec 80%);
}

.sw-card:hover{
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.img_cardicon{
  width: 61px;
  margin-bottom: 25px;
}

.srtitle{
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 12px;
  text-align: center;
}

.srtitle a{
  color: #222;
  text-decoration: none;
}

.oservice .sw-card p{
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.oservice .col-lg-3,
.oservice .col-sm-6{
  display: flex;
}

.oservice .sw-card{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.oservice .sw-card p{
  margin-top: auto;text-align: left; padding-left:10px;
}

.oservice .col-lg-3:nth-child(n+5){
  margin-top: 30px;
}
.section-space {
    padding-top: 30px;
    padding-bottom: 100px;
}
/*Our Services*/

/**Latest Technologies**/
.tech_glob-lr {
    padding: 40px 60px;
}
.overflowHidden {
    width: 100%;
    padding: 0px 0 20px;
    display: flex;
    justify-content: center !important;
    align-items: center;
    text-align: center;
}
.tech-title {
    color:white !important;
    margin-bottom:40px;
    padding: 0px 0;
    padding-bottom: 0px;
    letter-spacing: 0px;
    font-size: 40px;
}
.itemTechnicalExpertise h4 {
    color: white !important;
    font-size: 16px;
    padding: 15px 0;
}
.itemTechnicalExpertise.tech img {
    width: 40%;
}

.itemTechnicalExpertise.tech h4 {
    color: white !important;
    font-size: 17px;
    padding: 5px 0;
    font-weight: 500;
}

/**Latest Technologies**/

/*Our Happy Clients*/
.video-slider-section {
    padding: 0px 0px 20px;
    background: #fff;
  }

  .video-slider-section .section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .video-slider-section .section-title h3 {
    font-size: 1.70rem;
    font-weight: 500;
    position: relative;
  }
 
  .slider-wrap {
    position: relative;
    /*max-width: 1200px;*/
    margin: 0 auto;
  }

  .swiper {
    padding: 20px 10px 50px;
  }

  .swiper-slide {
    /*display: flex;*/
    height: auto;
    justify-content: center;
  }

  .video-item-container {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 450px;
    height: 100%;
  }

  .video-item-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  }

  .video-item-container p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
  }

  .video-item-container h5 {
    margin-top: 15px;
    color: #222;
    font-weight: 600;
    font-size: 17px;
  }

  /* ===== Navigation Buttons ===== */
  .video-slider-section .swiper-button-next, 
  .video-slider-section .swiper-button-prev {
    color: #070707;
    background: #fff;
    border-radius: 50%;
    width: 25px; height: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  /* Inside arrow icon size control */
  .video-slider-section .swiper-button-next::after,
  .video-slider-section .swiper-button-prev::after {
    font-size: 14px;     
  }

  .video-slider-section .swiper-button-next:hover, 
  .video-slider-section .swiper-button-prev:hover {
    background: #6161db;
  }

  .video-pagination .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
  }

  .video-pagination .swiper-pagination-bullet-active {
    background: #8585ff;
  }
/*Our Happy Clients*/

/*Blog Section*/
/*.container.py-5 {
  max-width: 1200px;
}*/

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.blog-card .card-body {
  padding: 20px;
  text-align: left;
}

.blog-card .blog-meta {
  font-size: 13px;  
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-card .card-title {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/*.blog-card .card-title:hover {
  color: #6161db;
}*/
/*Blog Section*/

/**Industries We Serve**/
.industrial-box.card {
    width: 100%;
    display: block;
    height: 100%;
    cursor: pointer;
    background: #ececec;
}
.industrial-box.card:hover {
    /* -webkit-box-shadow: 0px 0px 37px 3px rgba(0,0,0,0.27); */
    -moz-box-shadow: 0px 0px 37px 3px rgba(0,0,0,0.27);
    /* box-shadow: 0px 0px 37px 3px rgba(0,0,0,0.27); */
    background: transparent;
    overflow: hidden;
    transition: all ease 1s;

}
.img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all ease 1s;
    /*padding: 10px;*/
}


.img-box:hover img.card-img-top.-main{
    display: none;
}

.img-box img.card-img-top.-main {
    width: 30%;
    border: solid 1px black;
    /*padding: 10px;*/
    border-radius: 0;
     transition: all ease 1s;
     display: none;
}

 .img-box img.card-img-top.-main:hover {
  transform: scale(0.5);
  transition: all ease 1s;
  width: 100%;
  border-radius: 50%;
  border: solid 1px black;

}
.img-box img.card-img-top.main-to {
    display: none;
    
}

.img-box img.card-img-top.main-to {
    width: 50%;
    transition: all ease 1s;
    overflow: hidden;
    /* border: solid 1px black; */
    padding: 16px;
    border-radius: 0;
    display: block;
}


.img-box img.card-img-top.main-to:hover {
    transform: scale(0.9);
    transition: all ease 1s;
    border: solid 1px black;
    border-radius: 50%;
    box-shadow: 0px 0px 13px 0px #03441e;
}


.img-box:hover img.card-img-top.main-to  {
    display: block;
   
}
.industrial-box .card-body {
    flex: none;
}

.industrial-box h5.card-title {
  font-size: 17px;
}

.industrial-box.card:hover h5.card-title {
  font-size: 17px;
  transition: all ease 1s;
}
/**Industries We Serve**/

/* ------------We Are Diffrent----------------- */
.offer-box{
  padding:20px;
}
.dif-box{
  border:1px solid #166687;
  border-radius:20px;
  height: 100%;
  padding:20px;
}
.dif-box h5{
  color:#423e3e;
  font-weight:500;
  font-size: 18px;
}
.different_text {
  font-size: 15px;
  font-weight: 400;
}
/* ------------We Are Diffrent ----------------- */




/* -------------------footer----------------------------- */
.tech_strip .footer_btn {  
margin-left:auto;
  margin-right:40px;     /* 🔥 right side margin */
  background:#ffffff;
  color:#ff6f61;
  border:1px solid #114779;
  padding:6px 16px;
  height:45px;
  line-height:24px;
  border-radius:8px;
  font-weight:600;
  letter-spacing:0.3px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);  
  cursor:pointer;
  transition: all 0.3s ease;
  }  
.tech_stamp_row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.glob_lr {
    padding-left: 2rem;
    padding-right: 1rem;
}
.tech_strip {
    padding: 1px;
    border-radius: 15px;
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, #f1f1f1, 50%, #05335d 100%);
}
.tech_stamp_row {
    display: flex;
    column-gap: 25px;
    background: linear-gradient(147deg, #2F80ED 15%, #05335d 85%);
    border-radius: 15px;
}
.tech_strip .stellar_stamp {
    background: #fff;
    padding: 1rem;
    border-radius: 14px 0 0 14px;
    padding-right: 2rem;
    display: flex;
    align-items: center;
}
.tech_strip .inovation_col {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.tech_strip .inovation_col .info_title {
    font-size: 18px;  
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    margin-bottom: 0;
}
.d-block {
    display: block !important;
}

.footer {
    color: #474849;
}

.footCompany{padding: 0px 52px}

.main-footer {
    /* background: #dfdfdf; */
    padding: 0;
}
.span-contact{
    font-size: 18px;
    font-weight: 500;
    margin-left:10px;
}
/* .quick-contact{
    margin-left:20px;
} */
.quick-contact p{
    margin-top:30px;
}
.devaashi-location span {
    margin-left: 5px;   
    font-weight: 600;
}

.footer ul {
    margin: 0;
    padding: 0
}
.ffooter {  
    font-size: 16px;
    font-weight: 400;
}

.footer ul li {
    list-style: none;
    font-size: 16px;
    color: #474849;
    padding: 3px 0px;
    font-weight: 400;
}

.social-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-media {
    display: flex;
    justify-content: center;
}
.social-img a {
    color: black;
    font-size: 16px;
    margin-right: 20px;
    text-decoration: none;
    margin-left: 7px;
}

.copyright {background: #1c313c;color: #fff;font-size: 14px;padding: 7px;text-align:center; }
/* -------------------footer END----------------------------- */


 .hero-inner-header{padding: 130px 0px 0px  80px;}
 .hero-inner-header h1{font-size: 40px;color:#fff} 



/*Mobile Responsive*/
@media screen and (max-width: 1024px) {
  .dropdown-container { gap: 64px; }
  .desktop-navbar,
  .nav-btn {
    display: none;
  }

   .hamburger {
    display: block;
  }
  .mobile-navbar.open {
    display: block;
    backdrop-filter: blur(15px);
  }

  .navbar {
    width: 100%;
  }

  .hero-body img {
    width: 150px;
  }
}

@media screen and (max-width: 991px) {
  .hamburger{padding: 21px!important;}

  .about-section { padding: 30px 40px; }

    .image-box img { height: 360px; }

    .text-center h2 {font-size: 1.5rem; }

     .head-title {
      font-size: 1.60rem;
      line-height: 32px;
      margin-bottom: 6px;
  } 

  .sub_text {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .content-text {font-size: 17px; font-weight: 400;line-height: 30px;}
  
   /*our services*/
  .section-space{
    padding-top: 27px;
    padding-bottom: 42px;
  }
  .section-space h2{ font-size: 27px;}

   


  .oservice .col-lg-3,
  .oservice .col-sm-6{
    display: block;
    margin-bottom: 20px;
  }
  .oservice .sw-card{
    height: auto;
    padding: 22px;
  }

  .img_cardicon{
    width: 52px;
    margin-bottom: 18px;
  } 
  .srtitle{
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .oservice .sw-card p{
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    padding-left: 0;
    margin-top: 0;
  }

  .oservice .col-lg-3:nth-child(n+5){
    margin-top: 0;
  }
  /*our services*/

   /*Latest Technologies*/
   .tech_glob-lr {
      padding: 30px 20px;
   }

  .tech-title {
    font-size: 30px;
    margin-bottom: 30px;
   }

  .itemTechnicalExpertise.tech img {
    width: 45%;
  }

  .itemTechnicalExpertise.tech h4 {
    font-size: 15px;
  }
   /*Latest Technologies*/


   .industrial-box.card {
      padding-bottom: 10px;
  }

  .industrial-box h5.card-title {
      font-size: 15px;
  }

  .img-box img.card-img-top.main-to {
      width: 55%;
      padding: 12px;
  }
 
  .offer-box {
      padding: 12px;
  }

  .dif-box {
      padding: 18px;
      border-radius: 16px;
  }

    /*Testiminial*/
   .video-item-container {
      padding: 25px 20px;
      max-width: 320px;
    }
    /*Testiminial*/

    /*Blog*/
    .blog-card img {
      height: 200px;
    }
    .blog-card .card-title {
      font-size: 16px;
    }
    /*Blog*/

  /*Footer*/
  .glob_lr{
    padding-left: 1rem!important;
    padding-right: 1rem!important;
  }

  .tech_stamp_row{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    row-gap: 12px;
  }

  .tech_strip .stellar_stamp{
    border-radius: 12px;
    padding-right: 1rem;
    justify-content: center;
  }

  .tech_strip .inovation_col{
    padding: 0;
    align-items: center;
  }

  .tech_strip .inovation_col .info_title{
    font-size: 16px;
    white-space: normal;
  }

  .tech_strip .footer_btn{
    margin: 5px auto 0;
    width: 100%;
    max-width: 260px;
    height: 44px;
  }

  .video-slider-section {    
    background: #fff;
  }

  /* ---------- FOOTER ---------- */
  .footCompany{
    padding: 0 15px!important;
    margin-bottom: 25px;
  }

  .fotlink{
    margin-bottom: 25px;
  }

  .footer ul li{
    font-size: 15px;
  }

  .span-contact{
    font-size: 16px;
  }

  /* ---------- SOCIAL ICONS ---------- */
  .social-media{
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-img a{
    font-size: 14px;
    margin-right: 10px;
  }

  /* ---------- COPYRIGHT ---------- */
  .copyright{
    font-size: 17px!important;
    padding: 4px!important;
    line-height: 1.4;
  }
}

/* ===== FORCE MOBILE RESPONSIVE FIX ===== */
@media (max-width: 768px) {

  /* Section padding fix */
  .about-section {
      padding: 20px 12px !important;
  }

  /* Center heading */
  .about-section .text-center {
      padding: 0 10px;
  }


  /* Force column stacking */
  .about-section .row {
      display: flex !important;
      flex-direction: column !important;
  }

  /* Image full width */
  .image-box {
      width: 100% !important;
      margin: 0 auto 20px !important;
      display: block !important;
  }

  .image-box img {
      width: 100% !important;
      height: 260px !important;
      object-fit: cover;
  }

  /* Text column fix */
  .content-column {
      padding: 0 !important;
  }

  .about-title {
      font-size: 18px;
      margin-top: 10px;
  }

  

  /* Service list spacing fix */
  ul.servicelist {
      margin-top: 10px;
  }

  .servicelist li {
      font-size: 16px!important;
      line-height: 30px!important;
      
  }

  .servicelist li::before {
      width: 16px;
      height: 16px;
      top: 5px;
  }

  .about-btn {
      display: inline-block;
     
  }
}


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

  /*Top header and Inner*/
  .hero-content {
    left: 20px;
    max-width: 90%;
    top: 39%;
  }
  .hero-content h1 {
      font-size: 28px;
  }
  .hero-content p {
      font-size: 16px;
  }

  .hero-content-inner {
      left: 20px;
      max-width: 90%;
  }
  .hero-content-inner h1 {
      font-size: 28px;
  }
  .hero-content-inner p {
      font-size: 16px;
  }  
  /*Top heade Innerr*/

  .about-section {
        padding: 25px 15px;
    }

    .text-center h2 {
        font-size: 1.30rem!important;
        line-height: 1.6;
    }

    .glob-lr {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }

    .row > [class*="col-"] {
      margin-bottom: 12px;
    }

    .industrial-box.card {
        height: auto !important;
        padding: 10px 5px;
    }
    .img-box {
      min-height: 80px;
    }
    .img-box img.card-img-top.-main {
      display: none !important;
    }

    .img-box img.card-img-top.main-to {
        display: block !important;
        width: 60% !important;
        padding: 10px;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
    } 

    .industrial-box h5.card-title {
      font-size: 14px;
      margin-top: 8px;
    }

    .image-box {
        margin: 0 auto 20px;
        display: block;
        width: 100%;
    }

    .image-box img {
        height: 280px;
    }

    /* Text alignment */
    .content-column {
        text-align: left;
    }

    .about-title {
        font-size: 18px;
    }

    .about-text {
        font-size: 17px!important;
        line-height: 29px!important;
    }

    /* Service list spacing */
    .servicelist li {
        padding-left: 28px;
        font-size: 15px;
    }

    .servicelist li:before {
        width: 18px;
        height: 18px;
        top: 6px;
    }


  /*Latest Technologies*/
  .tech_glob-lr {
      padding: 25px 15px;
  }

  .tech-title {
      font-size: 26px;
      margin-bottom: 25px;
  }

  .itemTechnicalExpertise {
      margin-bottom: 20px;
  }

  .itemTechnicalExpertise.tech img {
      width: 50%;
  }

  .itemTechnicalExpertise.tech h4 {
      font-size: 14px;
  }
  /*Latest Technologies*/ 

 /* .container-fluid.glob-lr {
      padding-left: 12px !important;
      padding-right: 12px !important;
  }*/
  

  /* Force one card per row */
  .offer-box {
      padding: 10px !important;
  }

  .dif-box {
      height: auto !important;
      padding: 16px;
      border-radius: 14px;
  }

  .dif-box h5 {
      font-size: 17px;
      margin-bottom: 6px;
  }

  .different_text {
      font-size: 14px;
      line-height: 22px;
  }

  .video-slider-section .section-title h3 {
    font-size: 30px;
  }
  .swiper {
    padding: 20px 0 40px;
  }

  .blog-card img {
    height: 180px;
  }

}
@media screen and (max-width: 575px) {
  .hamburger { display: block; } 

  .image-box img {
        height: 240px;
    }

   

   .img_cardicon{
    width: 48px;
  }

  .srtitle{
    font-size: 20px;
  }

  .oservice .sw-card{
    border-radius: 10px;
  } 

  /*Latest Technologies*/
  .tech-title {
    font-size: 27px;
    margin-bottom: 36px;
  }
  .technicalExpertise .itemTechnicalExpertise {
    width: 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .itemTechnicalExpertise.tech img {
    width: 50%;
  }
  .itemTechnicalExpertise.tech h4 {
    font-size: 12px;
  }
  /*Latest Technologies*/
}
@media screen and (max-width: 390px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
  }
}
/*Mobile Responsive*/