/*
Theme Name: Custom Suman
Theme URI: https://yourdomain.com/
Author: Inovashi
Description: Custom theme for web development company website.
Version: 1.0
Tags: bootstrap, gsap, animation, business
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow: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&display=swap');
:root{
    --filter-light:brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(295deg) brightness(104%) contrast(101%);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.section-title{
    font-weight: 700;
    font-size: clamp(1.2rem ,5vw, 2rem);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1;
}
.section-title span{
    font-size: 1.5rem;
    font-weight: 300;
    opacity: .8;
    margin-bottom: 25px;
}
section{
    margin: 80px 0;
    padding: 0 12px;
}
a{
    text-decoration: none;
    /* color: inherit; */
}

.home {
  max-width: 100%;
  height: clamp(530px, 50vw, 50vh);
  position: relative;
/*   overflow: hidden; */
}

/* ✅ Responsive background image setup */
.home .bg {
  height: 100%;
  width: 100%;
  position: relative;
}

.home .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section4 .bg img {
	object-fit: contain !important;
}

/* Default — Desktop first */
.desktop-bg {
  display: block;
}

.mobile-bg {
  display: none;
}

/* Mobile switch */
@media (max-width: 768px) {
  .desktop-bg {
    display: none;
  }

  .mobile-bg {
    display: block;
  }
}

/* ✅ Text content overlay */
.home .home-text-content {
  position: absolute;
  top: 50%;
  right: 0;
/*   width: 45%; */
  color: white;
  transform: translateY(-50%);
  z-index: 2; /* Make sure it stays above images */
  padding-right: 2%;
}

.home .home-text-content > p {
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  margin-bottom: 25px;
  font-weight: 500;
  max-width: 700px;
}

.home .home-text-content .value-group {
  display: flex;
  margin-bottom: 45px;
  gap: 70px;
}

.home .home-text-content .value-group .no {
  font-size: clamp(2rem, 5vw, 5.5rem);
  line-height: 1;
}

.home .home-text-content .value-group p {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  text-transform: uppercase;
}

.home .home-text-content .home-locations {
  display: flex;
  flex-wrap: wrap;
}

.home .home-text-content .home-locations p {
  text-transform: capitalize;
  font-weight: 700;
}

.home .home-text-content .home-locations p::after {
  content: "\2022";
  padding: 0 15px;
}

.home .home-text-content .home-locations p:last-child::after {
  content: "";
}

/* ✅ Responsive text positioning */
@media (max-width: 768px) {
  .home .home-text-content {
    width: 90%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 5%;
	top: 37%;
  }

  .home .home-text-content .value-group {
    justify-content: center;
    gap: 40px;
  }

  .home .home-text-content .home-locations {
    justify-content: center;
  }
}


.section2{
    max-width: 1400px;    
    margin: 80px auto;
}
.section2 .heading{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
}
.section2 p{
    max-width: 80%;
    margin: 0 auto;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 8px;
    opacity: .9;
}

.section3{
    max-width: 1400px;    
    margin: 80px auto;    
    overflow: hidden;
}
.section3 img{
    height: 100px;
    display: block;
/*     border: 1px solid gray; */
	object-fit: contain;
}
.section-images{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px;
}
.section-images img{
/*     object-fit: contain; */
    height: 100px;
    display: block;    
}
.section4{
    position: relative;
    height: 600px;
    padding: 0;
}
.section4 .bg{
    height: 100%;
}
.section4 .section-title,
.section4 .img-group{
    position: absolute;
}
.section4 .section-title{
    top: 35px;
    color: white;
    right: 50%;
    transform: translateX(50%);
}
.section4 .img-group{
    position: absolute;
    top: 23%;
    width: 83%;    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    right: 44.5%;
    transform: translateX(50%);
}
.section4 .img-group img{
    height: 300px;
    object-fit: contain;
}

.section5,
.section6,
.section7{
    max-width: 1400px;    
    margin: 80px auto;
}

.section6 .all_cards{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}
.section6 .all_cards .card{
    height: 250px;
    background-image: url('https://ziel.network/wp-content/uploads/2025/11/what-you-get-background-image.png');
    background-size: cover;
    border-radius: 25px;
    background-repeat: no-repeat;
    color: white;
    padding: 25px;
    font-size: 1rem;
    text-align: center;
}
.section6 .all_cards .card img{
    display: block;
    height: 100px;
    font-weight: 600;
	filter: brightness(0) invert(1);
	margin-bottom: 20px;
	object-fit: contain;
}

.section7 img{
    display: block;
    height: 500px;
}

.btn-primary{
    background-image: url('/wp-content/uploads/2025/11/what-you-get-background-image-1.png');
    background-size: cover;
    background-position: center center;
    width: fit-content;
    padding:18px 25px;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
/*     text-transform: capitalize; */
    margin: 25px auto;
}
@media (width < 1000px){
    .section6 .all_cards{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}
@media (width < 800px) {
    .home .home-text-content{
        width: 100%;
        padding: 0 15px;
    }
    .home .home-text-content .value-group{
        display: flex;
        margin-bottom: 45px;
        gap: 30px;
    }
    
    section{
        margin: 50px auto !important;
    }
    .section2 .heading{        
        font-size: 1.5rem;        
    }
    .section2 p{
        max-width: 100%;        
        font-size: 1.1rem;
    }
    .section4{
        position: relative;
/*         height: 500px; */
        padding: 0;
    }
    .section4 .img-group{
        top: 25%;
        grid-template-columns: repeat(2, 1fr);        
    }
    .section4 .img-group img{
        height: 150px;
        object-fit: contain;
        margin-bottom: 25px;
    }
    .section-images{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .section6 .all_cards{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .section6 .all_cards .card{
        height: 250px;
    }
    .section6 .all_cards .card img{
        display: block;
        height: 100px;
        font-weight: 600;
		margin-bottom: 25px;
		object-fit: contain;
    }
    .section7 img{
        display: block;
        height: 400px;
    }
}

nav{
    background: white;
    position: sticky;
    top: 0;
    height: 80px;

    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;    

    transition: all .3s ease-in-out;
}
.navigation{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}
.navigation img{
    display: block;
    height: 60px;
}
.navigation a{
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    opacity: .8;
}
.navigation .menu-items{
    display: flex;
    gap: 25px;
}
.hamburger-menu{
    height: 60px;
    width: 40px;

    display: none;
    cursor: pointer;
}
.hamburger-menu img{
    object-fit: contain;
}
@media (width < 1000px){
    .menu-items{
        position: fixed;
        height: 100vh;
        background: white;
        top: 0;    
        right: -100%;    
        width: 100%;
        z-index: 99;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        display: none;
    }
    .menu-items.open{
        right: 0;
    }
    .hamburger-menu{
        display: block;     
        z-index: 99;   
    }

}
@media (width < 800px) {
	.image-box p {
		font-size: 15px !important;
	}
}


footer{
    height: 450px;
    position: relative;
    overflow: hidden;
    color: white;
}

footer a {
	color: white !important;
}
footer img{
    object-fit: cover;
    object-position: center center;

}
.footer{
    height: 400px;
    position: absolute;        
    top: 60%;    
    left: 50%;    
    transform: translate(-50%, -50%);
    max-width: 1600px;
    width: 100%;
    padding: 0 15px;    
}
footer .logo img {
	width: 300px !important;
    height: 300px !important;
    object-fit: contain;
	filter: brightness(0) invert(1);
/* 	margin-right: 50px; */

}
.footer-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr auto auto;
    gap: 80px;
    justify-content: space-between;
}

.footer .info p{
    font-size: 1.6rem;
    margin-bottom: 4px;
}
.footer .social-group{
    display: flex;
    gap: 12px;
}
.footer h6{
    font-size: 1.2rem;
    margin-top: 35px;
    margin-bottom: 12px;
}
.footer .social-group img{
    object-fit: contain;
    height: 45px;
    filter: var(--filter-light);
}
.footer .quick-menu{
    display: flex;
    flex-direction: column;
}
.footer .quick-menu a{
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

@media (width < 1000px){
    footer{
        height: 620px;
    }
    
    .footer-content{
        width: 100%;
        display: grid;
        grid-template-columns: 1.5fr .5fr;
        gap: 25px;
    }
    .footer .quick-menu a{
        font-size: 1.5rem;
    }
    .footer .info p{
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
}
@media (width < 800px) {
    footer{
        height: 550px;
    }
    .footer{
        height: 820px; 
    }
    .footer-content{        
        display: grid;
        grid-template-columns: 1fr;        
    }
    .footer .quick-menu a{
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    .footer .info p{
        font-size: 1rem;
        margin-bottom: 4px;
    }
	footer .logo img {
		width: 100%;
		height: 100%;
	}
	.section7 .swiper-wrapper {
		height: 300px !important;
	}
}

.navigation ul{
    list-style-type:none !important;
}

a {
	color: black;
}

.section7{
	max-width: 800px;
}
.section7 .swiper-wrapper {
	height: 500px;
}
.swiper-wrapper video {
	height: 100%;
	width: 100%;
}

.project-card .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px; /* optional */
}

.project-card {
	margin-top: 50px;
}

.on_hover_img,
.on_hover{
	transition: all .2s ease-in-out;
}
.on_hover_img img,
.on_hover img{
	transition: all .2s ease-in-out;
}

.on_hover:hover{
	scale:1.05;
}
.on_hover_img:hover{
	scale:1.1;
}
.on_hover:hover img{
	transform: translateY(-3px) rotate(5deg)
}





.how-we-operate {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9; /* optional */
}

.section-title.light {
    font-size: 28px;
    font-weight: 600;
    color: white !important;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.img-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.image-box {
    text-align: center;
    max-width: 135px;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-box h4 {
    margin-top: -40px;
    margin-bottom: 8px;
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
}

.image-box p {
    margin: 0;
    font-size: 1.5rem;
    color: white;
    line-height: 1.5;
    text-align: center;
}


@media (max-width: 768px) {
	.section4 .img-group img {
		height: 65px !important;
	}
	
	.img-group h4 {
	margin-top: -23px !important;
    margin-bottom: 0 !important;
    font-size: 15px !important;
	}

}


/* Default — Desktop first */
.desktop-bg {
  display: block;
  width: 100%;
/*   height: auto; */
}

.mobile-bg {
  display: none;
}

/* Mobile — adjust breakpoint as needed */
@media (max-width: 768px) {
  .desktop-bg {
    display: none;
  }

  .mobile-bg {
    display: block;
    width: 100%;
/*     height: auto; */
  }
}


.heading, .section-title {
	color: rgb(32,32,32) !important;
}


.hideInDesktop {
    display: none;
}

@media (max-width: 768px) {
    .hideInDesktop {
        display: block;
    }
	.footer-content .logo img {
		margin-bottom: -120px;
	} 
}



