.home_heading {
    margin-bottom: 2vw;
    margin-top: -1vw;
}

.stand_out {
    padding: 4.691vw 1.675vw 4.691vw 1.675vw;
}

.stand_heading {
    color: #01092D;
    text-align: center;
    font-family: var(--font);
    font-size: var(--heading);
    font-style: normal;
    font-weight: 700;
    line-height: var(--linehite);
    text-transform: capitalize;
}
.bg_img {
    width: 80%;
    height: auto;
    display: block;
}

/* industry grid styling */
@media screen and (max-width: 1100px){
    .industrygrid{
        grid-template-columns: auto auto !important;
    }
}
@media screen and (max-width: 650px){
    .industrygrid{
        grid-template-columns: auto !important;
    }
}
.industrygrid {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 25px;
    padding: 0px 1.675vw 0px 1.675vw;
}

.indgriddiv {
    position: relative;
    overflow: hidden;
    height: 450px;
    border-radius: 16px;
}

.main_image {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.indgriddiv:hover .main_image {
    transform: scale(1.2);
}

.ind_overlay1 {
    position: absolute;
    top: 5%;
    left: 5%;
    text-align: left;
    color: #fff;
}
.ind_overlay2{
    position: absolute;
    top: 60%;
    bottom: 5%;
    left: 5%;
    right: 5%;
    text-align: left;
    color: #fff;
}
.ind_logo {
    width: 100px;
    height: auto;
}

.ind_text {
    font-size: 14px;
    font-family: var(--font);
    text-transform: capitalize;
}

.ind_text_heading {
    font-size: 18px;
    font-weight: 1000;
    font-family: var(--font);
    margin: 20px 0px;
    text-transform: capitalize;
}

.ind_text_num {
    font-family: var(--font);
    font-size: 24px;
    text-transform: capitalize;
}

.indgriddiv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
    pointer-events: none;
}






  /* responsive book styling */

 @media screen and (max-width: 800px) {
    #book{
        margin-top: 30px !important;
    }
  }
@media screen and (max-width: 568px) {
    .home_heading{
        margin-bottom: 20px !important;
    }

    .book_content {
        width: 95% !important;
    }
   
    .mob_show{
        display: none !important;
    }
    .book_svg{
        width: 12px !important;
    }
}
@media screen and (max-width: 450px){
    .indgriddiv {
        position: relative;
        overflow: hidden;
        height: 350px !important;
        border-radius: 16px;
    }
    .ind_overlay2{
        top: 45% !important;
    }
}


/* Book styling */

.book {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6.702vw 1.675vw;
}

.book_content {
    background: #252525;
    width: 100%;
    height: 120px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
@media screen and (max-width: 1000px) {
    .book_content {
        height: 100px !important;
    }

    .demo {
        font-size: 16px !important;
    }

    .demo_btn {
        font-size: 16px !important;
        padding: 10px 15px !important;
    }
    .book_svg{
        width: 16px !important;
    }
}

@media screen and (max-width: 800px) {
    .book_content {
        height: 80px !important;
    }

    .demo {
        font-size: 14px !important;
        margin-right: 10px !important;
    }

    .demo_btn {
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
    .book_svg{
        width: 14px !important;
    }
}
@media screen and (max-width: 690px) {
    .mob_show{
        display: none !important;
    }
    .demo{
        margin-right: 20px !important;
    }
}
@media screen and (max-width: 568px) {
    .book {
        max-width: 100vw !important;
     
    }

    .book_content {
        height: 70px !important;
        width: 95% !important;
    }

    .demo {
        font-size: 14px !important;
        margin-right: 5px !important;
    }

    .demo_btn {
        font-size: 12px !important;
        padding: 7px 10px !important;
    }
    .book_svg{
        width: 12px !important;
    }
}

.demo {
    color: #FFF9F8;
    font-family: var(--font);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-right: 25px;
    text-transform: capitalize;
}

.demo_btn {
    border: none;
    border-radius: 6px;
    background: #FFDA31;
    display: flex;
    align-items: center;
    color: #252525;
    font-family: var(--font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    padding: 15px 20px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}


.demo_btn span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #252525, white);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.demo_btn span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to bottom, #252525, white);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.demo_btn span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #252525, white);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.demo_btn span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to top, #252525, white);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}


.book_svg{
    width: 18px;
}



/* ind_popup styling */



.css {
    position: absolute;
    top: 20%;
    right: 50%;
    width: 11%;
    height: auto;
    z-index: 5;
}

.react {
    position: absolute;
    bottom: 12%;
    right: 45%;
    width: 30%;
    height: auto;
    z-index: 5;
}

.html {
    position: absolute;
    bottom: -8%;
    right: 38%;
    width: 15%;
    height: auto;
    z-index: 5;
}

.laravel {
    position: absolute;
    top: 55%;
    right: -13%;
    width: 30%;
    height: auto;
    z-index: 5;
}

.javascript {
    position: absolute;
    bottom: -5%;
    right: 13%;
    width: 15%;
    height: auto;
    z-index: 5;
}

.node {
    position: absolute;
    top: 20%;
    right: 8%;
    width: 11%;
    height: auto;
    z-index: 5;
}

.wordpress {
    position: absolute;
    bottom: 15%;
    right: -2%;
    width: 10%;
    height: auto;
    z-index: 5;
}