
@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Boldonse&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gidole&display=swap');


/******************* image start here *********************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
}

.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4); /* white with transparency */
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 50%;
  padding: 20px 40px;
 background: linear-gradient(to right, rgba(255, 221, 0, 0.6), rgba(255, 221, 0, 0));
  color: #000;
   z-index: 2; 
}

.overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}




.breadcrumb {
  font-size: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.breadcrumb span {
  color: #000;
}


@media(max-width:776px){
    
    .overlay{
        
        top: 25%;
        width:85%;
    }
    
    .overlay h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
    }
    
    

  
}


/**************** image end here *************************/











.slide-container {
    max-width: 1120px;
    width: 80%;
    margin: 0 auto 100px;
}

.slide-content {
    margin: 0 40px;
}

.swiper-pagination-bullet {
    background-color: orange ! important;  /* Set the color to orange */
}

/* Active Pagination Dot */
.swiper-pagination-bullet-active {
    background-color: darkorange ! important;  /* Change color for active dot if desired */
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

/* Client Image */
.client-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.stars {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

.client-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0d2b56;
  margin: 0;
}

/* Client Role */
.client-role {
  font-size: 0.9rem;
  color: #777;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    flex-direction: column;
  }
}

.swiper-pagination {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index:3;
}



@media (max-width: 768px) {
    .slide-container {
        width: 100%;
    }
    .slide-content {
        margin: 0;
    }
    .testimonial-card {
        width: 90%;
        margin: 0 auto;
    }
}



/* slider End */


.parentdiv {
    
    display: flex;
    justify-content: space-between; /* Space the items evenly */
    align-items: flex-start;
    flex-wrap: nowrap; 
    padding: 20px;
    background-color: black;
    overflow: hidden;  /* Hide anything that overflows */
}

.first {
    width: 250px;
    height: 300px;
    margin-left: 40px;
    margin-right: 20px;
    margin-top: 50px;
    position: relative;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Image styles */
.first img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the area */
    display: block;
}

/* Text styling */
.first p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 10px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    transition: transform 0.3s ease-in-out;
}

/* Media query for smaller screens */
@media(max-width: 776px) {
    
    .parentdiv {
        justify-content: center;  /* Center the items */
        align-items: center;      /* Vertically center the items */
        height: auto;            /* Make sure the height is full */
        flex-wrap: wrap;          /* Allow wrapping on small screens */
    }

    .first {
        width: 320px;
        height: 300px;
        margin-left: 0;           /* Remove left margin for smaller screens */
        margin-right: 0;          /* Remove right margin */
        margin-top: 20px;         /* Adjust margin for smaller screens */
    }
    
    .first img{
        
        width:100%;
        height:100%;
        
    }
}







.first:hover p {
    transform: translateY(-100%); /* Move the text up when hovered */
}

.first:hover img {
    
    opacity: 0.6; /* Slightly fade the image on hover (optional) */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);  
}


.overlay2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 107%;
     background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;  /* Position the overlay on top of the image */
}


/***********************************************************************************************/


.testimonial{
    
    margin-left:100px;
    font-size:30px;
    margin-top:50px;
    margin-bottom:40px;
}

@media(max-width:776px){
    
    .testimonial {
    text-align: center;  /* Centers the text horizontally */
    margin-left:20px;
}
}



.secondPreantdiv{
    
    width:70%;
    height:auto;
    margin-top:100px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:100px;
    display:flex;
    
    
}



@media(max-width:776px){
    
    .secondPreantdiv{
        
        flex-wrap:wrap;
        margin-top:40px;
    }
}

.text-div{
    
    width:350px;
    height:500px;
    
}

@media(max-width:776px){
    
    .text-div{
        
        height:auto;
    }
}

@media(max-width:820px){
    
    .text-div{
        
        height:auto;
    }
}


@media(max-width:912px){
    
    .text-div{
        
        height:auto;
    }
}

.text1{
 
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
  line-height:1.5;
  color:black;
}

.text2{
    
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
   color:black;
  margin-top:30px;
}



.text-para{
    
    font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
   color:black;
  margin-top:5px;
}

.text-para {
    position: relative;
    display: inline-block; 
    padding-bottom: 5px; 
}

.text-para::after {
    content: ''; 
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 2px; 
    background-color: orange;
    transform: scaleX(0); 
    transform-origin: bottom left; 
    transition: transform 0.3s ease-in-out; 
}

.text-para:hover::after {
    transform: scaleX(1);  
}


.text1, .text2, .text-para {
    transition: transform 0.3s ease; /* Smooth zoom-in transition */
}

/* Zoom effect on hover */
.text1:hover, .text2:hover, .text-para:hover {
    transform: scale(1.1); /* Scale up (zoom-in) */
}

.images-div{
    
    width:400px;
    height:400px;
    margin-left:100px;
    margin-top:100px;
    border-right: 1px solid orange;
    border-bottom:1px solid orange;
    
}

@media(max-width:776px){
   
   .images-div{
       
       margin-left:50px;
   } 
    
}

.images-div img{
    
    width:100%;
    height:100%;
    
   
}

.swiper-button-prev{
    
    color:orange;
}

.haeding{
    
    width:100%;
    height:auto;
    background-color:black;
    
}

.unlockyoursolution{
    
    margin-left:50px;
    padding-top:20px;
    margin-top:50px;
    
}

@media(max-width:776px){
    
    
    .haeding h1{
        
      
      text-align:center;
      font-size:20px;
      
    }
    
    .unlockyoursolution{
    
    margin-left:0;
    padding-top:20;
   
}
    
  
}


@media(max-width:360px){
    
    .images-div{
        
        margin-top:200px;
    }
}







/*************************************** Image about us *********************************/









/* footer start ***/
.footermain {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    padding: 30px 0;
}

.footer1 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f9f9f9;
}

.golotext,
.golotext1,
.golotext2 {
    width: 280px;
    margin-top: 50px;
    padding-bottom: 15px;
}

.golotext .logo1 img {
      max-height: 135px;
}

.golotext1 h4, .golotext2 h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.golotext1 ul, .golotext2 ul {
    list-style-type: none;
    padding-left: 0;
}

.golotext1 ul li, .golotext2 ul li {
    margin-top: 10px;
}

.golotext1 ul li a, .golotext2 ul li a {
    color: gray;
    text-decoration: none;
}

.golotext1 ul li a:hover, .golotext2 ul li a:hover {
    color: #007BFF; /* Hover color */
}

.socialmedia a {
    margin-right: 15px;
    font-size: 18px;
}

.socialmedia a:hover {
    color: #007BFF; /* Hover color for social icons */
}

@media (max-width: 776px) {
    .footer1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .golotext, .golotext1, .golotext2 {
        width: 100%;  /* Full width on smaller screens */
        margin: 10px 0;
    }

    .golotext .logo1 img {
           max-height: 135px;
        margin-bottom: 15px;
    }
}

@media (max-width: 450px) {
    .footer1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .golotext, .golotext1, .golotext2 {
        width: 100%;  /* Take full width for smaller screens */
        margin: 10px 0;
    }

    .golotext .logo1 img {
            max-height: 120px;
    }
}

/******** footer end ***********/



.image1 {
    transition: transform 0.3s ease-in-out;
}

.image1:hover {
    transform: scale(1.1);
}




















