* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 25px;
} 

h1 h2 h3 h4 h5 h6 p{
  color: #000;
}
h1 h2 h3{
  font-family: "Philosopher", sans-serif;
}
.fixed-width{
  width: 100%;
}


.widthRestrain{
  max-width: 1660px;
  margin: auto;
}


.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 1px 2px #ccc;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s;
  flex-wrap: wrap;
}

.logo {
  width: 150px;
  height: 50px;
}

.navlogo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #252B33;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s;
  display: block;
}

.nav-links a:hover {
  color: red;
}

/* Dropdown */
.mega-menu {
position: absolute;
top: 100%;
left: 100%;
transform: translateX(-50%);
width: 800px;
background: #fff;
display: flex;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
padding: 20px;
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.4s ease;
border-radius: 10px;
}

.dropdown:hover .mega-menu {
opacity: 1;
visibility: visible;
}

.left-panel {
width: 25%;
background: linear-gradient(to right, #f43b47, #453a94);
color: white;
padding: 20px;
border-radius: 10px;
}

.left-panel h3 {
margin: 0 0 10px;
font-size: 22px;
}

.btn-view {
display: inline-block;
margin-top: 10px;
background: white;
color: #d2242a;
padding: 10px 16px;
border-radius: 25px;
font-weight: bold;
text-decoration: none;
text-align: center;
}

.right-panel {
width: 75%;
display: flex;
flex-wrap: wrap;
padding-left: 20px;
}

.right-panel ul {
columns: 2;
width: 100%;
list-style: none;
padding: 0;
}

.right-panel li {
margin-bottom: 12px;
}

.right-panel a {
display: flex;
align-items: center;
color: #252B33;
font-weight: 500;
text-decoration: none;
transition: 0.3s;
}
.right-panel li a{
    color: #252B33;
}
.right-panel a:hover {
color: #d2242a;
}

.menu-icon {
margin-right: 10px;
width: 25px;
}

/* Mobile view*/
@media (max-width: 1200px) {
.dropdown .mega-menu {
  position: fixed;
  top: 0;
  left: -100%; 
  right: auto;
  transform: none;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  background: #fff;
  padding: 30px 20px;
  overflow-y: auto;
  transition: left 0.4s ease;
  opacity: 1;
  visibility: visible;
  z-index: 2000;
  border-radius: 0;
}

.mega-menu.show {
  left: 0; 
}
.left-panel {
  display: none;
}
.left-panel,
.right-panel {
  width: 100%;
  padding: 10px 0;
}

.right-panel ul {
  columns: 1;
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
}

/* Customer Support */
.support {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-label {
  background-color: #d2242a;
  color: white;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.phone {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #252B33;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: 20px;
}

/* Mobile Styles */
@media (max-width: 1200px) {

  .menu-toggle {
    display: block;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 60px;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid rgb(143, 143, 143);
  }

  .nav-links.show {
    right: 0;
  }

  .support {
    display: none;
    padding: 25px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    width: 100%;
  }

  .nav-links.show ~ .support {
    display: flex;
  }
}

@media (max-width: 500px) {
  .navbar {
    padding: 15px 15px;
  }
}




/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
  color: #252B33;
  display: none;
}

.nav-links.show .close-btn {
  display: block;
}








.about-section {
  padding: 25px 20px;
  background-image: url('../images/advoize-hero.png');
  background-size: cover;
  background-position: center;
  
}
.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
  
}

/* Text Content */
.text-content {
  flex: 1;
  max-width: 620px;
 
}

.text-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0;
    font-family: "Philosopher", sans-serif;
  }
  .text-content h2{
    padding: 8px 0px;
    font-weight: 500;
  } 



  /* bannernavchangestart */

  .breadcrumb {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  color: #555;
  padding: 10px 0;

}

.breadcrumb ol {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
   font-size: 1rem;
    color: #333;
}

.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  color: #000000;
}

.breadcrumb a {
  text-decoration: none;
  color: #090a0a;
  font-weight: 500;
  transition: color 0.3s ease;
}
.breadcrumb span {
  color: #cc0000;
  font-weight: 600;
}


/* bannernavchangeend */



  

/* Image Content */
.image-content {
  flex: 1;
  max-width: 600px;
  text-align: center;
}

.image-content img {
  width: 100%;
  height: auto;
}

/* Optional float animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive Text */
@media (max-width: 1440px) {
.container {
  max-width: 92%;
}
}
@media (max-width: 768px) {
  .text-content h2 {
    font-size: 28px;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    text-align: center;
  }
}
@media screen and  (max-width:768px){
   .text-content {
  flex: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
 
}
}



@media screen and  (max-width:600px){
.icon {
    margin-top: 15px;
}

}


.footer {
  background: #1e1e1e;
  color: white;
  padding: 40px 60px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  gap: 30px;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #444;
  font-size: 16px;
}

.footer-left {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-left img{
  width: 150px;
  margin-bottom: 0px;
}

.footer-left p {
  line-height: 1.6;
  width: 295px;
}

.subscribe {
  display: flex;
  margin: 30px 0;
  max-width: 300px;
}

.subscribe input {
  padding: 10px 12px 10px 15px;
  flex: 1;
  border: none;
  background-color: #fff;
}

.subscribe button {
  background: red;
  color: white;
  border: none;
  padding: 8px 9px;
  margin-left: -70px;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}
.jop a{
  text-decoration: none;
  color: #ffffff;
}
.social{
  margin-top: 15px;
}
.social a {
  display: inline-block;
  margin-right: 10px;
  color: white;
  font-size: 18px;
}

.footer-links {
  flex: 1 1 180px;
}

.footer-links h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.footer-links ul li::before {
  content: "";
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  margin-left: 15px;
}

.footer-map {
  flex: 1 1 250px;
}

.footer-map h4 {
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.footer-bottom {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 20px;
  padding-top: 20px;
  background-color: #1d1d1d;
  color: #fff;
  font-size: 14px;
}

.footer-col {
  flex: 1 1 200px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 300px;
  line-height: 1.5;
}






.footerAddress{
  flex: none;
  width: 250px; 
}
.footerEmail{
  flex: none;
  width: 210px;
}
.footerMobile{
  flex: none;
  width: 160px;
}
.footerCopyright{
  flex: none;
  width: 210px;
}


@media screen and (max-width:700px) {
  .footer-bottom{
    flex-direction: column;
  }
}

@media screen and (min-width:1153px) {
  .footerCopyright{

    width: 200px;
  
}
  
}



.footer-col i {
  color: red;
  font-size: 18px;
  margin-top: 5px;
}
.footer-col a{
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: left;
  }

  .subscribe {
    flex-direction: column;
  }

  .subscribe input,
  .subscribe button {
    width: 100%;
    margin: 5px 0;
  }

  .footer-links,
  .footer-map {
    margin-top: 20px;
  }
}



@media(max-width:425px) {
 
.footer {
  padding: 80px 25px;
}     
}

@media (max-width:320px) {
  
 .footer {
    padding: 80px 0px;
}
}





.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}



@media screen and (max-width:1200px) {
.mega-close{
  font-size: 30px;
  font-weight: 600;
}
.homesevicescontainer{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.homesevicescontainer a{
  font-size: 14px;
  border-bottom: none;
}
.newcontact a{
  border-bottom: none;
  color: white;

}
.newcontact i{
  margin-left: 15px;
}
.newcontact {
  height: 40px;
  background-color: #d41414;
  display: flex;
  align-items: center; 
  padding: 10px 5px; 
  border-radius: 15px;
  margin: auto;
  color: white;
}

}

@media screen and (min-width:1200px) {
.mega-close{
  display: none;
}
.homesevicescontainer{
  display: none;
}
.newcontact{
  display: none;
}

}







/* home page  */


body{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
h1 h2 h3{
  font-family: "Philosopher", sans-serif;
}
.active a{
  color: red;
}
.fixed{
  max-width: 1660px;
  margin: auto;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    width: 87%;
    margin: auto;
  }
  
  .hero h5 {
    color: #D2242A;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Philosopher", sans-serif;
  }
  
  .hero h1 {
    font-size: 76px;
    font-weight: bolder;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Philosopher", sans-serif;
  }
  
  .hero p {
    line-height: 1.7;
    color: #252B33;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .btn {
    width: 165px;
    position: relative;
    padding: 12px 28px;
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid #e02424;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
  }
  
  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #D2242A;
    z-index: -1;
    transition: all 0.5s ease;
  }
  
  .btn:hover::before {
    left: 0;
  }
  
  .btn.white {
    background-color: #fff;
    color: #D2242A;
  }
  
  .btn.white:hover {
    color: #fff;
  }
  
  .btn.red:hover {
    color: #D2242A;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 950px;
    height: auto;
    object-fit: contain;
  }


  .scroll {
    width: 100%;
    height: 80px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1),
                0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .scrolling {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .scroll-list {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scroll-left 20s linear infinite;
  }
  
  .names {
    font-size: 20px;
    font-weight: 500;
    color: #534D4D;
    white-space: nowrap;
  }
  .names a{
    text-decoration: none;
    color: #534D4D;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

  .who-we-are{
    width: 95%;
    margin: auto
  }
.who-content{
    margin-top: 50px;
}
  .content-heading{
    width: 210px;
    height: 40px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0A0A3;
    border-radius: 20px;
    font-size: 20px;
  }
  .content-para{
    width: 780px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
  }
  .elements{
    max-width: 950px;  
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .element-list{
    width:300px ;
    margin: auto;
  }
   .bg-icon{
    width: 235px;  
    height: auto;                   
    background-image: url('../images/all-icons\ copy.png');
    background-repeat: no-repeat;
   }
   .half-circle{
   background-position: -351px -355px;
   }
  .element-content {
    width: 100%;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }
 
  .icon {
    width: 45px;             
    height: 45px;             
    background-image: url('../images/all-icons.png');
    background-repeat: no-repeat;
    display: inline-block;
  }
  .icon-right {
    background-position: -18px -395px;
  }
  
  .icon-man {
    background-position: -18px -272px;
  }
  
  .icon-icon3 {
    background-position: -18px -446px;
  }
  .icon-icon4 {
    background-position: -18px -395px;
  }
  .element-content h6{
    margin-top: 10px;
    color: #555555;
    font-size: 16px;
  }
  .element-content h3{
    color: #353535;
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
  }



  


  .our-services{
    width: 100%;
    background-image: url('../images/our-services-bg.png');
    background-size: contain;
    background-repeat: no-repeat; 
  }
  .service-container{
    width: 100%;
    margin: auto;
    margin-top: 30px;
    padding-top: 50px;
  }
  .service-container h3{
    text-align: center;
    color: #D2242A;
    margin-top: 15px;
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
  }
  .service-container p{
    width: 500px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
  }
  .services-types{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: center;
    gap: 30px;
  }
  .types{
    width: 400px;
    height: 310px;
    background-color: #fff;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1),-2px -2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 20px; 
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    cursor: pointer;
  }
  .types::before{
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FAC5C1;
    z-index: -1;
    transition: all 0.5s ease;
  }
  .types:hover::before {
    top: 0;
  }
  .type-icon {
    width: 80px;             
    height: 80px;             
    background-image: url('../images/all-icons.png');
    background-repeat: no-repeat;
    display: inline-block;
    display: flex;
    margin: auto;
    margin-top: 32px;
  }
  .type-icon1 {
    background-position: -123px -17px;
  }
  .type-icon2{
    background-position:-123px -107px;
  }
  .type-icon3 {
    background-position: -123px -204px;
  }
  .type-icon4 {
    background-position: -123px -301px;
  }
  .type-icon5 {
    background-position: -123px -403px;
  }
  .type-icon6 {
    background-position: -123px -502px;
  }
  .type-icon7 {
    background-position: -123px -607px;
  }
  .type-icon8 {
    background-position: -123px -707px;
  }
  .type-icon9 {
    background-position: -123px -818px;
  }

  .types h3{
    color: #252B33;
    font-family: "Philosopher", sans-serif;
  }
  .types p{
    color: black;
    width: 300px;
  }
  .types p{
    margin-top: 20px;
  }
  .types a{
    color: rgb(243, 8, 8);
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    text-decoration: none;
  }
 



  .choose-section {
    padding: 60px 20px;
    margin: auto;
  }
  
  .section-heading {
    background-color: #fcdcdc;
    width: 210px;
    height: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0 auto 40px;
    max-width: 700px;
    text-align: center;
  }
  
  .stats-box {
    display: flex;
    justify-content: center;
    gap: 200px;
    background: #fff;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .stat-icon {
    width: 50px;             
    height: 50px;             
    background-image: url('../images/all-icons.png');
    background-repeat: no-repeat;
    display: inline-block;
  }
  .stat-icon1 {
    background-position: -18px -331px;
  }
  .stat-icon2 {
    background-position:-18px -394px;
  }

.number-label{
  display: flex;
    justify-content: space-around;
    gap: 20px;
}
  .stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #c40000;
  }
  
  .stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-top: 5px;
    
  }
  
  .explore-button-wrapper {
    margin-top: 20px;
    text-align: center;
  }
  
  .explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f28c8c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  
  .explore-btn:hover {
    background-color: #e26565;
  }
  
  .btn-arrow {
    margin-left: 8px;
    font-size: 18px;
  }
  
  @media (max-width: 768px) {
    .stats-box {
      align-items: center;
      gap: 165px;
      padding: 30px 10px;
    }
  
    .section-description {
      font-size: 15px;
      padding: 0 10px;
    }
  
    .explore-btn {
      padding: 10px 20px;
      font-size: 15px;
    }
  
    .btn-arrow {
      font-size: 16px;
    }
  }


  @media (max-width: 525px) {
  .stats-box {
    flex-direction: column;
    gap: 30px;
   
  }

  }

  .projects-section {
    padding: 60px 20px;
    text-align: center;
    background-image: url('../images/teams-bg.png');
    background-size: cover;
  }
  
  .section-header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
  }
  .section-header .tag {
    display: inline-block;
    background-color: #fcdcdc;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
  }
  
  .section-header .title {
    font-size: 28px;
    font-weight: 700;
    color: #d60000;
    margin-bottom: 10px;
    font-family: "Philosopher", sans-serif;
  }
  
  .section-header .desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .view-all-btn {
    width: 165px;
    position: relative;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    background-color: #d6d6d6;
    color: #000;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
  }
  .view-all-btn:hover {
    background: #d60000;
    color: #fff;
  }
  
  .project-grid {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-inline: auto;
  }
  
  .project-card {
    width: 350px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  
  .project-card.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .project-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #fa40339a;
    display: flex;      
    align-items: flex-end;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .project-card:hover .overlay {
    transform: translateY(0%);
  }
  
  .overlay-content {
    padding: 20px;
    color: #fff;
    text-align: left;
    width: 100%;
  }
  
  .overlay-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Philosopher", sans-serif;
  }
  
  .overlay-content p {
    font-size: 14px;
    line-height: 1.4;
  }
  



  



  .about-form-section {
    padding: 60px 20px;
    text-align: center;
  }
 
  .about-form-section h2 {
    color: #C10808;
    font-size: 32px;
    margin-bottom: 10px;
    font-family: "Philosopher", sans-serif;
  }
 
  .about-form-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
    font-size: 16px;
  }
 
  .about-form {
    max-width: 1200px;
    margin: 0 auto;
  }
 
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
  }
 
  .form-row input,
  .form-row select,
  .full-width {
    flex: 1;
    padding: 14px 18px;
    font-size: 18px;
    background-color: #fff;
    color: #524A4A;
    border: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1),-1px 0px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
 
  .full-width {
    width: 100%;
    margin-bottom: 20px;
  }
 
  .about-form button {
    background-color: #c10000;
    text-align: right;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
 
  .about-form button:hover {
    background-color: #a00000;
  }
 
  /* Responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 25px;
      margin-bottom: 25px;
    }
  }
 






  .mailing-list {
    background-color: #fafafa;
    padding: 60px 20px;
    text-align: center;
  }
  
  .mailing-list .mailing-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .mailing-list h2 {
    font-size: 24px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 15px;
    font-family: "Philosopher", sans-serif;
  }
  
  .mailing-list p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .email-form {
    display: flex;
    justify-content: space-between;
    background: #1d1a1c;
    border-radius: 40px;
    border: 2px solid #3c2342;
    overflow: hidden;
  }
  
  .email-form input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 40px 0 0 40px;
    background: transparent;
    color: #fff;
    outline: none;
  }
  
  .email-form input::placeholder {
    color: #ccc;
  }
  
  .email-form button {
    padding: 0 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .email-form button:hover {
    background: #c40000;
    color: #fff;
  }
  
  @media (max-width: 600px) {
    .email-form {
      flex-direction: column;
      padding: 10px;
      border-radius: 20px;
    }
  
    .email-form input {
      border-radius: 20px;
      margin-bottom: 10px;
    }
  
    .email-form button {
      border-radius: 20px;
      width: 100%;
      padding: 15px;
    }
  }






  /* responsive */

  @media (max-width: 1550px) {
    .project-card {
      width: 320px;
  }
  
  }

@media (max-width:1440px) {
  .types {
    width: 360px;
  }
  .hero{
    width: 95%;
  }
}

@media (max-width: 1200px) {
  .element-list {
    width: 250px;
}
    .types {
      width: 300px;
      
  } 
  .types img {
    width: 80px;
}
.types h3 {

  font-size: 18px;
  margin-top: 15px;
}
.types p {
  color: black;
  width: 274px;
}
  }



  @media (max-width: 1024px) {
    .element-list {
      width: 218px;
      margin-top: 20px;
  }
  .hero h1 {
    font-size: 50px;

  }
  
  }


 /* Responsive */
 @media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding:40px;
    width: 95%;
  }
  .hero-buttons {
    justify-content: center;
  }

}

@media (max-width: 600px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding:20px;
    width: 95%;
  }
  .hero p{
    font-size: 14px;
  }
}


  @media (max-width: 900px) {
    .hero h1 {
        font-size: 38px;
    }
}

  @media(max-width:800px) {
    .content-para {
      width: 100%;
      padding: 20px;
      margin: auto;
      text-align: center;
      margin-top: 20px;
    }
  }

  @media(max-width:768px) {
    .types {
      width: 292px;
  }
 
 .projects-section {
   padding: 60px 0px;
  }

  .element-content {
    margin-top: 10px;
}

  }

  @media(max-width:600px) {
    .content-para {
      text-align: left;
    }
  }



  @media(max-width:425px) {

  .service-container h3 {
    font-size: 18px;
  }
  .service-container p {
    width: 290px;
  }
  .types p {
    width: 274px;
  }
  .section-header {
    text-align: center;
}
.service-container {
  padding-top: 25px;
}
        
  }
  @media screen and (min-width:425px) and (max-width:700px) {
    .service-container p {
      width: 100%;
    }
  }


  @media (max-width:375px) {
    .projects-section {
      padding: 60px 0px;
  }
  .services-types {
    width: 90%;
}
  }

  @media (max-width:320px) {
    .section-header .title {
      font-size: 25px;
  }
  .service-container p {
    width: 259px;
}
.project-card {
  width: 280px;
}
  }

/* home page end */




/* about page */


body{
  font-family: 'Poppins', sans-serif;
}
.active a{
  color: red;
}
  .about-us {
    padding: 60px 20px;
  }
  
  .about-container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80%;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .about-left-content2{
    flex: 1;
    min-width: 300px;
  }
  .about-container2 .line2 {
  width: 100px;
  height: 5px;
  color: #0a0a0a;
  } 
 
  
  .about-left-content2 h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Philosopher", sans-serif;
  }
  
  .about-left-content2 p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #050505;
  }
  
  .btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #d72626;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
  }
  
  .about-right-content {
    flex: 1;
    /* min-width: 300px; */
    display: flex;
    justify-content: center;
    position: relative;
  }
  

  .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .about-circle-text {
    position: absolute;
    bottom: 0px;
    left: 150px;
    background-color: #d67070;
    color: white;
    padding: 30px 20px;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .about-circle-text h3 {
    font-size: 32px;
    margin-bottom: 5px;
  }
  
  .about-circle-text p {
    font-size: 14px;
    line-height: 1.2;
  }
  
  .about-vertical-text {
    position: absolute;
    right: 15px;
    top: 84%;
    transform: rotate(90deg) translateY(-50%);
    font-size: 17px;
    color: #000;
    font-weight: 500;
    letter-spacing: 2px;
  }
  






  .choose-container3 {
    max-width: 1400px;
    margin: auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .choose-text-section {
    flex: 1 1 500px;
    max-width: 600px;
  }

  .choose-text-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Philosopher", sans-serif;
  }

  .choose-text-section p {
    margin-bottom: 2rem;
    color: #0c0c0c;
  }

  
  .icons-group { background-image: url(../images/all-icons.png); background-repeat: no-repeat; background-size: auto;}





  .icon-circle{
      background-position: -18px -73px;
  }
  .icon-pen {  background-position: -18px -13px;}
  .icon-square{
    background-position: -18px -133px;
  }
  .icon-mid { width: 45px; height: 45px; }

  .float-l { float: left; }
  .float-r { float: right;}
  .wid-90 {
     width: 90%;
     padding-left: 15px; 
  }

  .ver-mid {  display: inline-block; vertical-align: middle;}

  .features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .feature {
    display: inline-block;
    align-items: flex-start;
  }
  .feature h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .feature p {
    margin: 0.25rem 0 0;
    color: #050505;
  }

  .cta-button {
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: #d22;
    color: #fff;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
  }

  .cta-button:hover {
    background-color: #b00;
  }

  .choose-image-section {
    position: relative;
    flex: 1 1 400px;
    max-width: 650px;
    margin-top: 2rem;
  }

  .choose-image-section img {
    width: 100%;
    border-radius: 12px;
  }  
  @media (max-width: 768px) {
    .choose-container3 {
      flex-direction: column;
    }

    .choose-image-section {
      margin-top: 2rem;
    }

    .choose-text-section h2 {
      font-size: 2rem;
      font-family: "Philosopher", sans-serif;
    }
  }






  .process-section {
    text-align: center;
    padding: 4rem 1rem;
   background-image: url('../images/about4.png'); /* Optional background */
    background-size: cover;
    background-position: center;
  }

  .process-section h5 {
    color: #e53935;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 22px;
  }

  .process-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
    font-family: "Philosopher", sans-serif;
  }

  .process-section p {
    color: #555;
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
    line-height: 1.6;
  }

  .timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 0;
  }

  .step {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    position: relative;
    text-align: center;
    z-index: 1;
  }

  .circle {
    width: 50px;
    height: 50px;
    background-color: #f67280;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 16px;
  }

  .step:nth-child(2) .circle {
    background-color: #86e3ce;
  }

  .step:nth-child(3) .circle {
    background-color: #aaa;
  }

  .step:nth-child(4) .circle {
    background-color: #f8b195;
  }

  .step h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .step p {
    margin-top: 0.5rem;
    color: #444;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .timeline {
      flex-direction: column;
      gap: 10px;
    }

    .timeline::before {
      display: none;
    }
    .step {
    padding: 10px;
   }
  }



 .Conversation-container5 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 83%;
  margin: auto;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.Conversation-left {
  flex: 1 1 500px;
}

.Conversation-text {
  margin-bottom: 30px;
}

.Conversation-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0d1f14;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Philosopher", sans-serif;
}

.Conversation-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 500px;
}

.Conversation-right {
  flex: 1 1 900px;
  display: flex;
  gap: 30px;
}

.Conversation-image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Conversation-image-column img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.Conversation-right img {
  width: 100%;
  max-width: 700px;
}
@media (max-width: 1200px) {
  .Conversation-right {
    flex: 1 1 600px;
  }
  .image-column img {
    max-width: 300px;
  }
  .Conversation-right img {
    max-width: 500px;
  }
}
@media (max-width:950px){
  .Conversation-right {
    flex: 1 1 450px;
  }
  .image-column img {
    max-width: 200px;
  }
  .Conversation-right img {
    max-width: 450px;
  }
}
@media (max-width:850px){
  .Conversation-right {
    flex: 1 1 400px;
  }
  .Conversation-image-column img {
    max-width: 200px;
  }
  .Conversation-right img {
    max-width: 375px;
  }
}
@media (max-width: 700px) {
  .Conversation-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .Conversation-image-column {
    flex: 1 1 33.33%;
  }
  .Conversation-image-column img {
    max-width: 100%;
  }
  .Conversation-right img {
    max-width: 100%;
  }
}


  @media (max-width: 1550px) {
    .project-card {
      width: 320px;
  }
  
  }
  @media (max-width:1440px) {
    .about-circle-text {
      left: 90px;
    }
   
  }


  @media (max-width: 1024px) {
    .about-container2 {
      flex-direction: column;
      text-align: center;
    }
    .about-left-content2 {
      flex: 1;
      min-width: 300px;
      text-align: left;
  }
    .about-vertical-text {
      display: none;
    }
  
    .about-image-wrapper {
      margin: auto;
    }
  
    .left-content h2 {
      font-size: 28px;
    }
  
    .btn {
      font-size: 14px;
      padding: 10px 20px;
    }
    .choose-container3 {
      flex-direction: column;
      text-align: center;
      text-align: left;
  }
  }
  @media (max-width:768px) {
    .about-section {
      padding: 40px 20px;
      margin-top: 0px;
  }
  }

  @media (max-width:600px) {
    .text-content h3 {
      font-size: 40px;
  }
.text-content h2 {
    font-size: 18px;
}
    .about-circle-text {
      left: 38px;
    }
   
  }
  @media (max-width:500px) {
    .about-circle-text {
      left: 0px;
      width: 140px;
      height: 140px;
     
  }
  }

  @media (max-width:425px) {
    .wid-90 {
      width: 85%;
      padding-left: 15px;
  }
  .about-container2 {
    max-width: 90%;
}
.choose-container3 {
  padding: 10px;
}
.process-section {
  padding: 10px 1rem;
}
.about-section {
  margin-top: 10px;
}
.about-us {
  padding: 20px 20px;
}
.choose-text-section {
  padding: 15px;
}
  }

  @media (max-width:375px) {
    
    .about-left-content2 h2 {
      font-size: 29px;
  }

  .about-us {
    padding: 20px 2px;
}
.wid-90 {
  width: 80%;
  padding-left: 15px;
}
  }


@media (max-width:320px) {
  .projects-section {
    padding: 60px 2px;
    text-align: center;
}
.project-card {
  width: 280px;
}
.about-container2 {
  max-width: 95%;
}
.section-header {
  padding: 16px;
}
.choose-container3 {
  padding: 0px;
}

}  



/* about page end */




/* service page */

body{
    font-family: 'Poppins', sans-serif;
  }
  .active a{
    color: red;
  }
    .service-main{
      margin-top: 50px;
    } 
    .service-butn{
      display: flex;
      justify-content: center;
      text-align: center;
      margin-top: 20px;
      margin-bottom: 40px;
    }

    .service-butn h2{
      padding:5px 30px;
      background-color: rgb(255, 255, 255);
      color: #080808;
      border-top-right-radius: 20px;
      border-bottom-left-radius: 20px;
      font-size: 25px;
      cursor: pointer;
      transition: 0.3s;
      font-family: "Philosopher", sans-serif;
  }

    .services-section {
        display: flex;
        justify-content: space-around;
        padding: 0px 5%;
        flex-wrap: wrap;
        gap: 40px;
        background: url('') repeat;
      }
    
      .services-left {
        flex: 1 1 300px;
        max-width: 600px;
      }
    
      .services-dropdown {
        background: #f8dede;
        padding: 15px 20px;
        font-weight: bold;
        margin-bottom: 10px;
        border: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        font-size: 16px;
      }
    
      .services-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
    
      .services-list li {
        background: #fff;
        border: 1px solid #eee;
        padding: 15px 20px;
        font-size: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-bottom: 10px;
      }
    
      .services-list li:hover,
      .services-list li.active {
        background: #f7d4d4;
      }
    
      .services-right { 
        flex: 1 1 400px;
        max-width: 600px;
        text-align: center;
      }
    
      .services-right img {
        max-width: 100%;
        height: auto;
      }
    
      .services-right p {
        text-align: left;
        line-height: 1.7;
        margin: 15px 0;
        font-size: 15px;
      }
    
      .read-more-btn {
        background: #f75c5c;
        color: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        border: none;
        font-size: 14px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: background 0.3s ease;
      }
    
      .read-more-btn:hover {
        background: #e04444;
      }
    
      .arrow {
        transition: transform 0.3s ease;
      }
    
      .read-more-btn:hover .arrow {
        transform: translateX(4px);
      }
    
      @media (max-width: 1024px) {
        .services-section {
          flex-direction: column;
          text-align: center;
        }
    
        .services-left, .services-right {
          max-width: 100%;
        }
    
        .services-right p {
          text-align: center;
        }
      }






      


  .mailing-list {
    background-color: #fafafa;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
  }
  
  .mailing-list .mailing-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .mailing-list h2 {
    font-size: 24px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 15px;
    font-family: "Philosopher", sans-serif;
  }
  
  .mailing-list p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .mailing-email-form {
    display: flex;
    justify-content: space-between;
    background: #1d1a1c;
    border-radius: 40px;
    border: 2px solid #3c2342;
    overflow: hidden;
  }
  
  .mailing-email-form input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 40px 0 0 40px;
    background: transparent;
    color: #fff;
    outline: none;
  }
  
  .mailing-email-form input::placeholder {
    color: #ccc;
  }
  
  .mailing-email-form button {
    padding: 0 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .mailing-email-form button:hover {
    background: #c40000;
    color: #fff;
  }




  @media (max-width:768px) {
    .about-section {
      padding: 40px 20px;
      margin-top: 0px;
  }
  }
  
  @media (max-width: 600px) {
    .mailing-email-form {
      flex-direction: column;
      padding: 10px;
      border-radius: 20px;
    }
  
    .mailing-email-form input {
      border-radius: 20px;
      margin-bottom: 10px;
    }
  
    .mailing-email-form button {
      border-radius: 20px;
      width: 100%;
      padding: 15px;
    }
    .about-section {
      margin-top: 10px;
  }
  }

/* service-page-end */


/* service-inner-pages */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


  body{
    font-family: 'Poppins', sans-serif;
  }
  .active a{
    color: red;
  }
  .active2 {
    color: red;
  }

    .inner-services-section {
        display: flex;
        align-items: center;
        justify-content: space-around;
        max-width: 80%;
        margin: auto;
        padding: 4rem 1rem;
        gap: 2rem;
        flex-wrap: wrap;
      }
      
      .inner-services-text {
        flex: 1;
        max-width: 620px;
      }
      
      .inner-services-text h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #2e2f3e;
        position: relative;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        font-family: "Philosopher", sans-serif;
      }
      
      
      .inner-services-text p {
        margin-bottom: 1rem;
        color: #444;
      }
      
      .inner-image-content {
        flex: 1;
        text-align: center;
        max-width: 600px;
      }
      
      .inner-image-content img {
        max-width: 100%;
        height: auto;
      }
      
      /* Responsive */
      @media (max-width: 900px) {
        .inner-services-section {
          flex-direction: column;
          text-align: left;
        }
      
        .inner-services-text h2 {
          font-size: 1.6rem;
        }
      
        .inner-services-text h2 span {
          margin: 0 auto 0.5rem auto;
          margin-right: 3px;
        }
      
        .inner-services-text {
            max-width: 100%;
            text-align: left;
        }
      }




      .main-title{
        margin-top: 10px;
        margin-bottom: 20px;
      }
      .main-title h1{
        text-align: center;
        background-color: #EAE9E9;
        color: #D2242A;
        padding: 40px 0;
        font-size:36px;
        font-weight: 700;
        margin-bottom: 2rem;
        text-transform: uppercase;
        font-family: "Philosopher", sans-serif;
      }
      

      .innerSub-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        margin-bottom: 60px;
      }
      .innerSub-services-intro {
        text-align: left;
        margin-bottom: 2rem;
      }
      
      .innerSub-services-intro h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c1c1c;
        margin-bottom: 1rem;
        text-transform: uppercase;
        position: relative;
        font-family: "Philosopher", sans-serif;
      } 
      .innerSub-services-intro p {
        font-size: 1rem;
        color: #555;
        max-width: 1000px;
        margin-top: 10px;
      }
      
      .innerSub-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
      }
      .innerSub-service-box h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #1c1c1c;
        border-bottom:1px solid #505050;
        padding-bottom: 1rem;
        font-family: "Philosopher", sans-serif;
      }
      
      .innerSub-service-box ul {
        list-style: disc;
        margin-left: 1.2rem;
        color: #444;
      }
      
      .innerSub-service-box ul li {
        margin-bottom: 0.5rem;
      }
      
      /* Responsive */
      @media (max-width: 768px) {
        .main-title {
          font-size: 1.4rem;
        }
      
        .innerSub-services-intro h2 {
          font-size: 1.3rem;
        }
      }







/* digital and web last section */



.innerSub2-text{
  text-align: left;
 max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.innerSub2-text h1 {
  color: #000000;
  font-size: 28px;
  margin-bottom: 10px;
  font-family: "Philosopher", sans-serif;
}
.innerSub2-text .innerSub2-subtitle {
  max-width: 1200px;
  text-align: left;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 30px;
  padding-left: 20px
}

.innerSub2-grid-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
  padding: 20px;

}

.innerSub2-card {
  background: #fff;
  border: 1px solid #fc3434;
  padding: 25px 20px;
  text-align: center;
}

.card-icon {
  width: 80px;             
  height: 80px;             
  background-image: url('../images/all-icons.png');
  background-repeat: no-repeat;
  display: inline-block;
}
.card-icon1 {
  background-position: -264px -16px;
}
.card-icon2 {
  background-position: -264px -114px;
}
.card-icon3 {
  background-position: -264px -204px;
}
.card-icon4 {
  background-position: -264px -311px;
}
.card-icon5 {
  background-position: -264px -417px;
}
.card-icon6 {
  background-position: -264px -536px;
}
.card-icon7 {
  background-position: -264px -644px;
}
.card-icon8 {
  background-position: -264px -741px;
}
.card-icon9 {
  background-position: -264px -838px;
}

/* web icons */

.web-icon {
  width: 80px;             
  height: 80px;             
  background-image: url('../images/all-icons.png');
  background-repeat: no-repeat;
  display: inline-block;
}
.web-icon1 {
  background-position: -264px -938px;
}
.web-icon2 {
  background-position: -122px -909px;
}
.web-icon3 {
  background-position: -122px -1001px;
}
.web-icon4 {
  background-position: -413px -18px;
}
.web-icon5 {
  background-position: -412px -125px;
}
.web-icon6 {
  background-position: -413px -239px;
}



.innerSub2-card h3 {
  color: #000000;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  font-family: "Philosopher", sans-serif;
}

.innerSub2-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 600px) {

  .innerSub2-card {
    padding: 20px 15px;
  }
}




.innerSub2-section4{
  width: 90%;
  margin: auto;
}
.innerSub2-elements{
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 30px;
  
}
.innerSub2-element-list{
  width:235px ;
  position: relative;
  margin: auto;
}
.innerSub2-element-list img{
  width: 235px;
}
.innerSub2-element-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.innerSub2-element-content h6{
  margin-top: 10px;
  color: #2b2a2a;
  font-size: 18px;
}






@media (max-width:1200px) {

  .inner-services-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 95%;
    margin: auto;
    padding: 4rem 0rem;
    margin: auto;
    gap: 2rem;
    flex-wrap: wrap;
}

}
@media (max-width:768px) {
  .about-section {
    padding: 40px 20px;
    margin-top: 0px;
}
.inner-services-section {
 
  padding: 0rem 0rem;
 
}
}



@media (max-width:600px) {
  .text-content h1 {
    font-size: 40px;
}
.text-content h2 {
  font-size: 18px;
}
  .circle-text {
    left: 38px;
  }
 
}

@media (max-width:500px) {
  .inner-services-text {
    max-width: 100%;
    text-align: left;
    padding: 10px;
}
.about-section {
  margin-top: 10px;
}
}

@media (max-width:375px) {
  .inner-services-text h1 {
    font-size: 2rem;
}
.inner-services-text h2 span {
  margin: 0 auto 0.5rem auto;
display: none;
}
.innerSub-services-intro h2 span {
  height: 32px;
}
}

@media (max-width:320px) {
  .innerSub2-grid-container {
    padding: 10px;
}
 
}






.line{
  border-left:solid #cc0000;
  border-width: 4px;
  display: inline-block;
  padding-left: 10px;
}

/* service inner pages end */




/* blog */


body{
    font-family: 'Poppins', sans-serif;
  }
  .active a{
    color: red;
  }
.blog-main{
    padding:40px;
}
  .blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 80%;
    margin: auto;
  }
  
  .blog-card-image {
    overflow: hidden;
  }
  
  .blog-card-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
  }
  
  .blog-card:hover .card-image img {
    transform: scale(1.05);
  }
  
  .blog-card h3 {
    font-size: 1rem;
    font-weight: 500;
    padding: 16px;
    margin: 0;
  }
  
  .blog-card a {
    color: #e91e1e;
    text-decoration: none;
    padding: 0 16px 16px;
    display: inline-block;
    font-weight: 500;
  }
  
  .blog-card a:hover {
    text-decoration: underline;
  }
  
  /* Responsive adjustments */

  @media (max-width: 1024px) {
    .blog-card-grid {
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  @media (max-width: 600px) {
    .blog-card-grid {
      grid-template-columns: 1fr; 
    }
  }
  
  @media (max-width: 425px) {
    .blog-card-grid {
      max-width: 95%;
    }
  }


  
  

  .mailing-list {
    background-color: #fafafa;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
  }
  
  .mailing-list .mailing-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .mailing-list h2 {
    font-size: 24px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 15px;
    font-family: "Philosopher", sans-serif;
  }
  
  .mailing-list p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .mailing-email-form {
    display: flex;
    justify-content: space-between;
    background: #1d1a1c;
    border-radius: 40px;
    border: 2px solid #3c2342;
    overflow: hidden;
  }
  
  .mailing-email-form input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 40px 0 0 40px;
    background: transparent;
    color: #fff;
    outline: none;
  }
  
  .mailing-email-form input::placeholder {
    color: #ccc;
  }
  
  .mailing-email-form button {
    padding: 0 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .mailing-email-form button:hover {
    background: #c40000;
    color: #fff;
  }

  
  @media (max-width: 600px) {
    .mailing-email-form {
      flex-direction: column;
      padding: 10px;
      border-radius: 20px;
    }
  
    .mailing-email-form input {
      border-radius: 20px;
      margin-bottom: 10px;
    }
  
    .mailing-email-form button {
      border-radius: 20px;
      width: 100%;
      padding: 15px;
    }

  }


  @media (max-width: 425px) {
    .text-content h2 {
        font-size: 18px;
    }
}



/* blog-page-end */




/* plans-page */

body{
    font-family: 'Poppins', sans-serif;
  }
  .active a{
    color: red;
  }
    .plan-text{
        text-align: center;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .plan-butn{
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .plan-butn h2{
        padding:5px 30px;
        background-color: rgb(255, 255, 255);
        color: #080808;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        font-size: 25px;
        cursor: pointer;
        transition: 0.3s;
        font-family: "Philosopher", sans-serif;
    }

    .plan-text h2{
       color: #000000;
       font-size: 24px;
       font-weight: 500px;    
       margin-bottom: 10px;
    }

    .plan-text p{
      color: #000;
      font-size: 16px;
    }



    .plans{
        width: 70%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
      }
      .plan-img{
        width: 315px;
        height: auto;
      }

      .contact{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        font-family: 'Poppins', sans-serif;
      }
      .contact-btn {
        position: relative;
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        color: rgb(0, 0, 0);
        background: white;
        border: none;
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: color 0.3s ease;
        text-align: center;
        margin: auto;
      }
  
      .contact-btn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 120px;
        height: 100%;
        background-color: #D2242A; /* Red */
        border-radius: 50px;
        transform: translateX(-58%);
        transition: transform 0.4s ease;
        z-index: 0;
      }
  
      .contact-btn:hover::before {
        transform: translateX(0);
       
      }
      .contact-btn a{
        text-decoration: none;
        color: #000;

      }
       .contact-btn a {
        position: relative;
        z-index: 1;
      } 
      .contact-btn a:hover{
        color: white;
      }




     
  

  .mailing-list {
    background-color: #fafafa;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
  }
  
  .mailing-list .mailing-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .mailing-list h2 {
    font-size: 24px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 15px;
    font-family: "Philosopher", sans-serif;
  }
  
  .mailing-list p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .mailing-email-form {
    display: flex;
    justify-content: space-between;
    background: #1d1a1c;
    border-radius: 40px;
    border: 2px solid #3c2342;
    overflow: hidden;
  }
  
  .mailing-email-form input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 40px 0 0 40px;
    background: transparent;
    color: #fff;
    outline: none;
  }
  
  .mailing-email-form input::placeholder {
    color: #ccc;
  }
  
  .mailing-email-form button {
    padding: 0 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .mailing-email-form button:hover {
    background: #c40000;
    color: #fff;
  }

  
  @media (max-width: 600px) {
    .mailing-email-form {
      flex-direction: column;
      padding: 10px;
      border-radius: 20px;
    }
  
    .mailing-email-form input {
      border-radius: 20px;
      margin-bottom: 10px;
    }
  
    .mailing-email-form button {
      border-radius: 20px;
      width: 100%;
      padding: 15px;
    }

  }


@media (max-width:950px) {
  .plans {
    width: 90%;
}
  
}
@media (max-width:768px) {
  .about-section {
    padding: 40px 20px;
    margin-top: 0px;
}

}

  @media (max-width:600px) {
    .text-content h1 {
      font-size: 40px;
  }
.text-content h2 {
    font-size: 18px;
}
    .circle-text {
      left: 38px;
    }
   
  }


/* plans-page-end */


/* profile-page */

body{
    font-family: 'Poppins', sans-serif;
  }
  .active a{
    color: red;
  }

 .project-text {
  width: 100%;
  text-align: center;
 } 

 .project-text h2 {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 20px;
    font-family: "Philosopher", sans-serif;
  }

.project-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.project-filter-tabs button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  position: relative;
}

.project-filter-tabs button.active {
  font-weight: 400;
  color: red;
}

.project-filter-tabs button.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: red;
}

.project-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80%;
  margin: auto;
  gap: 20px;
  padding: 0 20px 40px;
}

.project-card {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}
.project-card.hidden {
  display: none;
}
.project-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-info {
  display: none;
}
.video-logo{
  position: absolute;
  font-size: 50px;
  color: white;
  z-index: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
}

.modal iframe {
  width: 100%;
  height: 450px;
}

.modal .close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}



  .mailing-list {
    background-color: #fafafa;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
  }
  
  .mailing-list .mailing-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .mailing-list h2 {
    font-size: 24px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 15px;
    font-family: "Philosopher", sans-serif;
  }
  
  .mailing-list p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .mailing-email-form {
    display: flex;
    justify-content: space-between;
    background: #1d1a1c;
    border-radius: 40px;
    border: 2px solid #3c2342;
    overflow: hidden;
  }
  
  .mailing-email-form input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 40px 0 0 40px;
    background: transparent;
    color: #fff;
    outline: none;
  }
  
  .mailing-email-form input::placeholder {
    color: #ccc;
  }
  
  .mailing-email-form button {
    padding: 0 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .mailing-email-form button:hover {
    background: #c40000;
    color: #fff;
  }

  
  @media (max-width: 600px) {
    .mailing-email-form {
      flex-direction: column;
      padding: 10px;
      border-radius: 20px;
    }
  
    .mailing-email-form input {
      border-radius: 20px;
      margin-bottom: 10px;
    }
  
    .mailing-email-form button {
      border-radius: 20px;
      width: 100%;
      padding: 15px;
    }

  }




@media (max-width:1440px) {
  .project-gallery{
    max-width: 96%;
}
}




  @media (max-width:768px) {
    .about-section {
      padding: 40px 20px;
      margin-top: 0px;
  }
  }



  @media (max-width:600px) {
    .text-content h1 {
      font-size: 40px;
  }
    .text-content h2 {
    font-size: 18px;
  }
    .circle-text {
      left: 38px;
  }
   
  }


@media (max-width:425px) {
  .project-filter-buttons button {
    margin: 0 10px;
    padding: 8px 10px;
  }
  
 
.about-section {
  margin-top: 10px;
}
}


/* profile-page-end */



/* contact-page */

body{
    font-family: 'Poppins', sans-serif;
  }
  .active a{
    color: red;
  }
   .contact-container2 {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 80%;
        margin:80px auto;
        padding: 20px 40px;
      }
  
      .contact-left, .contact-right {
        flex: 1 1 600px;
      }
  
      .contact-left h2,
      .contact-right h2 {
        font-size: 32px;
        margin-bottom: 30px;
        font-family: "Philosopher", sans-serif;
      }
  
      .contact-left p {
        margin-bottom: 20px;
        max-width: 500px;
      }
  
      .contact-email-box2 {
        width: 350px;
        display: flex;
        align-items: center;
        background: #ffffff;
        padding: 25px 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 25px;
      }
  
      .contact-email-box2 i{
        color: #cc0000;
        font-size: 20px;
        margin-right: 15px;
      }
  
      .contact-form-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
  
      .contact-form-group {
        flex: 1 1 45%;
        display: flex;
        flex-direction: column;
      }
  
      .contact-form-group.full {
        flex: 1 1 100%;
      }
      
      select {
       border: none;
       border-bottom: 1px solid #00000033;
       background: transparent;
       outline: none;
       padding: 12px 0;
       font-size: 14px;
     }
  
      input, textarea {
        padding: 10px;
        margin-top: 5px;
        border: none;
        border-bottom: 1px solid #ccc;
        outline: none;
        resize: none;
        font-size: 16px;
        background-color: transparent;
      }
  
      .contact-send-button {
        background-color: #d32f2f;
        color: white;
        border: none;
        padding: 12px 25px;
        margin-top: 40px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s ease;
      }
  
      .contact-send-button:hover {
        background-color: #a82323;
      }
  

      .contact-bottom-bar {
        background: #fafafa;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 35px 5%;
        flex-wrap: wrap;
        font-size: 16px;
        gap: 30px;
      }
  
      .contact-bottom-bar div {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 10px;
      }
  
      .contact-bottom-bar div i {
        color: #cc0000;
        font-size: 25px;
      }
      .contact-bottom-bar span{
        display: inline-block;
        height: 65px;
        width: 4px;
        background-color: #D9D9D9;
        vertical-align: middle;
      }
    
      .mail a{
        text-decoration: none;
        color: #000000;
      }
      .map{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
        margin-bottom: 60px;
       }
       .map-text-img h2{
         text-align: center;
         margin-bottom: 40px;
         font-family: "Philosopher", sans-serif;
       }
       .map-text-img{
        display: flex;
        flex-direction: column;
        width: 100%;
      }
      .mapimage{
        width: 90%;
        margin: auto;
      } 
      
     .mapimage{
       width: 100%;
      }


@media (max-width: 1125px) {

  .contact-bottom-bar {
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 0%;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 30px;
  }

}



      @media (max-width: 768px) {
        .contact-container2 {
          margin: 0px auto;
      }
          .about-section {
            padding: 40px 20px;
            margin-top: 0px;
        }
        
      .text-content h2 {
        font-size: 28px;
      }
    
      .container {
        flex-direction: column;
        text-align: center;
      }
    
      .text-content {
        text-align: center;
      }
  
        .contact-form-group {
          flex: 1 1 100%;
        }
  
        .contact-bottom-bar {
          flex-direction: column;
          text-align: center;
          padding: 35px 1%;
          gap: 10px;
        }
        .contact-bottom-bar span{
          height: 30px;
          width: 4px;
           transform: rotate(90deg);
        }
      }

      @media (max-width:600px) {
        .text-content h1 {
          font-size: 40px;
      }
    .text-content h2 {
        font-size: 17px;
    }
        .circle-text {
          left: 38px;
        }
       
      }


      @media (max-width: 425px) {
        .contact-email-box2 {
          width: 330px;
      
      }
        .contact-container2 {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          max-width: 90%;
          margin: 0px auto;
          padding: 20px 1px;
      }
      }
      @media (max-width: 375px) {
        .contact-email-box2 {
          width: 320px;
      
      }
      
    }
      @media (max-width: 320px) {

        .contact-container2 {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          max-width: 90%;
          margin: 0px auto;
          padding: 20px 0px;
      }
      .contact-email-box2 {
        width: 280px;
    
    }
      }


/* contact-page-end */




/* inner blog */


.inner-blog-container {
  max-width: 960px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px;
}

.back a{
  text-decoration: none;
  font-weight: 400;
  color: red;
  padding-bottom: 20px;
  font-weight: 600;
} 
.inner-blog-text{
  padding-top: 20px;
}
.inner-blog-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1c1c1c;
}

.inner-blog-meta {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
  margin-bottom: 40px;
}

.inner-blog-meta .highlight {
  color: red;
}
.inner-blog-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  padding-bottom: 30px;
}
.inner-blog-heading{
  color: red;
  padding-top: 10px;
  padding-bottom: 15px;
  font-weight: 500;
}
/* Responsive Typography */
@media (max-width: 768px) {
  .inner-blog-title {
    font-size: 1.6rem;
  }

  .inner-blog-meta {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .inner-blog-title {
    font-size: 1.3rem;
  }
}
    

/* inner blog end */




/* faq-container */

    .faq-main{
      display: flex;
      justify-content: space-between;
      max-width: 1400px;
      margin: 40px auto;
      position: relative;
      padding: 30px;
    }
   
    .faq-sidebar {
      position: sticky;
      top: 0;
      height: max-content;
      background: #fff;
      z-index: 10;
    }

    .faq-sidebar ul {
     list-style: none;
     padding-left: 0;
    }

    .faq-sidebar li {
      padding: 10px;
      margin-bottom: 5px;
      cursor: pointer;
      border-left: 3px solid transparent;
      font-weight: 500;
      transition: all 0.3s;
    }

    .faq-sidebar li:hover,
    .faq-sidebar li.active {
      color: #e3342f;
      border-left: 3px solid #e3342f;
    }

    .faq-container {
      max-width: 1000px;
      padding: 0 20px;
      margin: auto;
      margin-bottom: 40px;
    }

   .faq-container h2 {
      text-align: center;
      color: #e90d0d;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .accordion-item {
      background-color: #f1f1f1;
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
    }

    .accordion-header {
      padding: 15px 20px;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.3s;
    }
    .accordion-header h4{
      font-size: 16px;
      font-weight: 500;
    }
    .accordion-header:hover {
      background-color: #e0e0e0;
    }

    .accordion-header::after {
      content: '+';
      margin-right: 10px;
      font-size: 18px;
    }

    .accordion-header.active::after {
      content: '-';
    }

    .arrow {
      transition: transform 0.3s ease;
      font-size: 16px;
    }

    .accordion-header.active .arrow {
      transform: rotate(90deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background-color: white;
      color: #333;
      transition: max-height 0.3s ease;
      padding: 0 20px;
    }

    .accordion-content p {
      margin: 15px 0;
    }

      @media (max-width: 800px) {
      .faq-sidebar{
        display: none;
      }
    }

    @media (max-width: 600px) {
      .accordion-header {
        font-size: 16px;
      }
      .faq-sidebar{
        display: none;
      }
    }

    /* faq-container-end */

  .social-media{
    margin:auto;
  }
   .social-media-heading  {
    text-align: center;
   }

   .social-media-heading h2 {
      font-size: 24px;
      color: #333;
      margin-bottom: 40px;
      background: #f8d5d5;
      display: inline-block;
      padding: 10px 30px;
      border-radius: 30px;
      font-weight: 600;
      text-align: center;
    }

    .social-media-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .social-media-card {
      position: relative;
      width: 280px;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      transition: transform 0.3s ease;
      border-top-right-radius:25px ;
      border-bottom-left-radius: 25px;
    }

    .social-media-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .social-media-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.534);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s ease;
    }

    .social-media-card:hover .social-media-overlay {
      opacity: 1;
    }
    .social-media-overlay i {
      font-size: 25px;
      color: rgb(255, 255, 255);
      transition: transform 0.3s ease;
    }
     .social-media-card a {
      text-decoration: none;
     }
    .social-media-overlay i:hover {
      transform: scale(1.1);
    }
   

  .servicesAnchor{
    color: #c40000;
   
  }


.service-main::before {
  content: '';
  display: block;
  /* height: 100px; */

  visibility: hidden;

}


/* .btn-view{
  display: none;
} */

.workshop-box a{
  display: none;
}


.right-panel ul li a.active {
  color: red;

}

.mailAnchor{
  color: black;
  text-decoration: none;
}



@media screen and (min-width:400px) and (max-width:768px) {
  .contact-bottom-bar{
 
 
  align-items: start;
  width: 350px;
  background: none;
  margin: auto;
}
.contact-bottom-bar span{
  margin: auto;
}
  .phone{
    width: 298px;
  }
}


@media screen and (max-width:400px) {
  .contact-bottom-bar{
  
  align-items: start;
  width: 320px;

  background: none;
  margin: auto;
}
.contact-bottom-bar span{
  margin: auto;
}
.contact-bottom-bar div{
  text-align: left;
}
  .phone{
    
    width: 298px;
  }
}






/* terms-policies-page */


.terms-policies{
  max-width: 960px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px;
}

.terms-policies-heading h1{
  text-align: center;
  color: #090a0a;
  font-weight: 600;
  padding-top: 10px;
}
.terms-policies-content{
  margin-top: 50px;
}
.terms-policies-content h2{
  font-size: 32px;
  font-weight: 600;
  color: #161515;
}
.terms-policies-content p{
  padding-top: 10px;
  padding-bottom: 10px;
}
.terms-policies-content h3{
  font-size: 28px;
  font-weight: 600;
  color: #161515;
}
.terms-policies-content h4{
  font-size: 25px;
  font-weight: 600;
  color: #161515;
}
.terms-policies-content h5{
  font-size: 30px;
  font-weight: 600;
  color: #161515;
}
/* terms-policies-page-end */