* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header Section */
.top-header {
    display: flex;
    background-color: whitesmoke;
}
.top-header1 {
    padding: 5px 0 4px 0px;
    font-size: large;
    color: black;
}
.top-header1 p span {
    color: blue;
}
.top-header2 {
    padding: 5px 10px 4px 0;
    font-size: large;
    border-left: 5px solid white;
}

/* Head Section */
.header {
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: white;
}
.head {
    display: flex;
    margin: 12px;
    text-align: center;
    align-items: center;
}
.head img {
    width: 50px;
    height: 50px;
    margin: 0 30px;
}
.head h1 {
    color: red;
    font-family: "ROG LyonsType Regular", sans-serif;
    font-size: 25px;
}

.head p {
    color: blue;
    font-size: 13px;
    font-family: sans-serif;
    text-align: center;
}


@media (max-width: 1024px) {
    .header {
        grid-template-columns: repeat(2,1fr);
        height: 85px;
        text-align: center;
        align-items: center;
    }
    .head {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .head img {
        width: 45px;
        height: 45px;
        margin: 0 20px 0 40px;
    }
    .head h1 {
        font-size: 21px;
        margin: 8px 0 0 0;
        text-align: center;
        line-height: 1.2;
        white-space: normal;
        word-break: keep-all;
    }
    .head p {
        font-size: 12px;
        margin-top: 5px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .header {
        grid-template-columns: repeat(2,1fr);
        height: auto;
        text-align: center;
        align-items: center;
    }

    .head {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .head img {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    .head h1 {
        font-size: 22px;
        margin: 8px 0 0 0;
        text-align: center;
        line-height: 1.2;
        white-space: normal;
        word-break: keep-all;
    }
    .head p {
        font-size: 9px;
        margin-top: 5px;
        text-align: center;
        white-space: normal;
    }
}


/* NAVIGATION BAR */
.navigation-bar {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    align-items: center;
    position: relative;
}
.nav-bar {
    text-transform: capitalize;
    padding-right: 50px;
}
.nav-bar a {
    color: black;
    text-decoration: none;
    margin-left: 12px;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 7px;
    border-bottom: 2px solid black;
}
.nav-bar a.clicked {
    background-color: orange;
}
.nav-bar a:hover {
    background-color: orange;
}
.menu-toggle {
    font-size: 25px;
    color: black;
    display: none;
    cursor: pointer;
}

@media(max-width:1024px) {
    .navigation-bar{
        justify-content: flex-end;
        padding-right: 20px;
    }
    .nav-bar{
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-right: 20px;
    }
}

@media(max-width:768px) {
    .navigation-bar {
        flex-direction: row;
        justify-content: flex-end;
    }
    .nav-bar {
        display: none;
        flex-direction: column;
        background-color: white;
        position: fixed;
        top: 110px;
        right: 0;
        width: 95%;
        height: 750px;
        z-index: 9999;
        align-items: flex-start; 
        padding-left: 20px; 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    }
    .nav-bar a {
        display: block;
        font-size: 22px;
        padding: 10px 60px 10px 60px;
        background-color: none;
        color: black;
        margin-top: 12px;
        justify-content: flex-start;
        padding: 5px 700px 5px 15px;
        border-radius: 0;
        border-bottom: 2px solid black;

    }
    .menu-toggle {
        display: inline-block;
        margin: 0 10px;
        padding: 0 5px 3px 10px;
    }
    .nav-bar.active {
        display: flex;
    }
}


/* Top Image */
@media screen and (max-width:1024px) {
    .top-head img {
        width: 100%;
        height: 450px;
    }
}

@media screen and (max-width:768px) {
    .top-head img {
        width: 100%;
        height: auto;
        /* margin-top: 20px; */
    }
}


/* Home Top Tag Line */
.top-space-bar{
    margin: 25px 70px;
    text-align: center;
}
.top-space-bar h2 {
    font-size: 35px;
    color: #333;
    padding-bottom: 10px; 
}

.top-space-bar p {
    font-size: 19px;
    line-height: 1.6;
}

@media(max-width:1024px) {
    .top-space-bar h2{
        font-size: 40px;
    }
    .top-space-bar p{
        font-size: 22px;
    }
}

@media(max-width:768px) {
    .top-space-bar h2{
        font-size: 35px;
    }
    .top-space-bar p{
        font-size: 16px;
    }
}


/* Start Video- Card */
.videos {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 100%;
}
@media screen and (max-width:1024px) {
    .videos{
        grid-template-columns: repeat(4,1fr);
    }
    .video-card{
        width: 100%;
        height: 200px;
    }
}

@media screen and (max-width:768px) {
    .videos{
        grid-template-columns: repeat(2,1fr);
    }
    .video-card{
        width: 100%;
        height: 200px;
    }
}


/* Head Description */
.addition {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 20px;
}

.addy {
    margin: 70px 20px;
    line-height: 40px;
}

.addy p {
    font-size: 22px;
}

.addy-image img {
    padding-left: 0;
    padding-top: 20px;
    width: 70%;
    height: 300px;
    animation: zoomMove 5s infinite alternate linear;
}

@keyframes zoomMove {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@media (max-width:1024px) {
    .addition {
        grid-template-columns: repeat(2, 1fr);
    }
    .addy {
        margin: 20px 0 0 50px;
         line-height: 35px;
    }
    .addy p {
        font-size: 21px;
    }
    .addy-image img {
        width: 250px;
        padding-left: 0;
        margin-left: 100px;
    }
}
@media (max-width:768px) {
    .addition {
        grid-template-columns: repeat(1, 1fr);
    }
    .addy {
        margin: 20px;
        line-height: 30px;
    }
    .addy p {
        font-size: 16px;
        padding-left: 20px;
    }
    .addy-image img {
        margin-left: 0;
        width: 90%;
        display: block;
        margin: 0 auto;
        padding-top: 10px;
    }
}




/* Descriptions */
.top-class {
    position: relative;
}

.main {
    padding: 100px 20px;
    font-size: 24px;
    position: absolute;
}

.main-image img {
    width: 100%;
    height: 450px;
}

@media(max-width:1024px) {
    .main {
        float: left;
        padding: 80px 0 0 120px ;
        font-size: 20px;
    }
    .main-image img {
        width: 100%;
        height: 350px;
    }
}
@media(max-width:768px) {
    .main {
        position: relative;
       padding: 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        top: auto;
        left: auto;
    }
    .main-image img {
        width: 100%;
        height: 250px;
    }
}


/* Service / Product Highlights */
.special {
    background-color: lightgray;
}

#our {
    padding: 15px 0 10px 30px;
    color: blue;
    text-decoration: underline;
}

.highlight {
    display: flex;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    padding: 0 20px 0 20px;
}

.product {
    background-color: white;
    margin: 15px 0 30px 0;
    padding: 12px 0 12px 15px;
}

@media(max-width:1024px) {
    #our {
        text-align: center;
        font-size: 26px;
    }
    .highlight {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }
    .product {
        align-items: center;
        font-size: 13px;
        margin: 0px 0 10px;
        padding: 10px 0 10px 6px;
    }
}
@media(max-width:768px) {
    #our {
        text-align: center;
        font-size: 20px;
    }

    .highlight {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .product {
        align-items: center;
        font-size: 16px;
        margin: 0px 0 10px;
        padding: 10px 0 10px 10px;
    }
}
@media(max-width:480px) {
    .highlight {
        grid-template-columns: 1fr;
    }
}

/* Tagline */
.tag-line {
    width: 95%;
    text-align: center;
}

.line1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 50px 10px 20px 10px
}

.tag p {
    font-size: 16px;
}

@media(max-width:1024px) {
    .line1 {
        grid-template-columns: repeat(2, 1fr);
    }
    .tag {
        padding-bottom: 0px;
    }
    .tag h2 {
        font-size: 24px;
    }
    .tag p {
        font-size: 18px;
    }
}
@media(max-width:768px) {
    .line1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .tag {
        padding-bottom: 0px;
    }
    .tag h2 {
        font-size: 24px;
    }
    .tag p {
        font-size: 16px;
    }
}


/* man-service */
.man-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.man img {
    width: 500px;
    height: auto;
    padding-left: 30px;
    margin: 20px auto;
    border-radius: 50%;
}

.text-to h3 {
    padding: 100px 150px 0 180px;
    font-size: 40px;
}

.text-to span {
    color: orangered;
}

.text-to em {
    font-style: normal;
    color: blue;
}


@media(max-width:1024px) {
    .man-text {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .man img {
        width: 80%;
        height: 200px;
        margin: 30px 0 20px 35px;
    }
    .text-to h3 {
        font-size: 40px;
        padding: 70px 20px 0 50px;
    }
}
@media(max-width:768px) {
    .man-text {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    .man img {
        width: 85%;
        height: 140px;
        margin: 30px 0 20px 25px;
    }
    .text-to h3 {
        font-size: 25px;
        padding: 30px 0 0 50px;
    }
}


/* Footer-Section*/
.base-bottom-image img {
    width: 100%;
    height: 150px;
}
.footer-end {
    display: flex;
    flex-direction: row;
    margin: 20px 50px 20px 60px;
    gap: 50px;
}

.footer-end h3 {
    font-size: 25px;
    line-height: 50px;
    padding-bottom: 15px;
}

.footer-end p {
    font-size: 19px;
    line-height: 26px;
}

.foot-1 p {
    line-height: 30px;
}

.footer-1 {
    width: 60%;
    margin: 20px 30px 20px 50px;
}

.footer-2 {
    display: flex;
    flex-direction: row;
    margin: 20px 30px 20px 20px;
}
.foot-1 {
    width: 100%;
    margin-right: 40px;
}

.footer-end a:hover {
    color: black;
}

/* Laptop View */
@media(max-width:1024px) {
   .footer-end {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 20px 20px 0px 40px;
        gap: 0;
    }
    .footer-1{
        width: 95%;
        margin: 20px 0 0 10px;
    }
    .footer-1 p{
        font-size: 22px;
    }
    .footer-2{
        margin: 20px 50px 20px 50px;
    }
    .foot-1{
        margin-right: 20px;
    }
    .foot-1 a{
        font-size: 20px;
    }
    .foot-2 p{
        font-size: 20px;
    }
}

/* Mobile View */
@media(max-width:768px) {
    .base-bottom-image img {
     height: 130px;
    }
    .footer-end {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 20px 20px 0px 20px;
        gap: 0;
    }
    .footer-end h3{
        font-size: 23px;
        padding-bottom: 0px;
    }

    .footer-1 {
        width: 90%;
         margin: 20px 30px 30px 40px;
    }

    .footer-1 p {
        font-size: 18px;
    }
    .footer-2{
        width: 90%;
        display: flex;
        flex-direction: row;
        margin: 0px 0px 20px 50px;
        gap: 0;
    }
    .foot-1 a{
        font-size: 16px;
        line-height: 17px;
    }

    .foot-2 p{
        font-size: 18px;
    }
}
.bottom {
    display: flex;
    padding: 18px 0 18px 0;
    background-color: red;
    color: white;
    font-size: 18px;
    justify-content: center;
    gap: 100px;
}

@media(max-width:1024px) {
    .bottom p {
font-size: 16px;
    }
}
@media(max-width:768px) {
    .bottom p {
font-size: 12px;
    }
}



.whatsapp-float {
    position: fixed;
    bottom: 138px;
    left: 32px;
    z-index: 1000;
    width: 55px;
    height: 55px;
}

.whatsapp-float img {
    width: 90%;
    height: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

@media(max-width:768px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
    }
}


/* MOBILE RESPONSIVE FIXES (ADD THIS AT END) */
@media(max-width:768px) {
    
    /* 1. HEADER - SAME AS LAPTOP LAYOUT */
    .header {
        height: auto;
        min-height: 70px;
        padding: 5px 0;
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 2. LOGO & COMPANY NAME - SAME POSITION */
    .head {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 0 10px;
        padding: 0;
        justify-content: flex-start;
        text-align: left;
    }
    
    .head img {
        width: 45px;
        height: 45px;
        margin: 0 10px 0 0;
    }
    
    .head h1 {
        font-size: 22px;
        margin: 0;
        padding: 0;
        text-align: left;
        line-height: 1.2;
    }
    
    .head p {
        font-size: 9px;
        white-space: nowrap;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
   
    
    /* 4. MARQUEE - NO CHANGE, SAME AS BEFORE */
    .top-header {
        display: flex;
        font-size: 12px;
        padding: 3px;
    }
    
    /* 5. REMOVE EXTRA SPACE */
    .top-head {
        margin-top: 0;
    }
    
    .top-head img {
        height: 200px;
        object-fit: cover;
    }
    
    /* 6. CONTENT FIXES */
    .top-space-bar {
        margin: 15px;
    }
    
    .top-space-bar h2 {
        font-size: 24px;
    }
    
    .top-space-bar p {
        font-size: 16px;
    }
    
    /* 7. VIDEOS GRID */
    .videos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-card {
        height: 150px;
    }
    
    /* 8. FOOTER FIXES */
    .footer-end {
        margin: 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-1 {
        width: 100%;
        margin: 0;
        padding: 0 10px;
    }
    
    .footer-2 {
        flex-direction: column;
        margin: 0;
        padding: 0 10px;
        width: 100%;
    }
    
    .foot-1, .foot-2 {
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    /* 9. BOTTOM BAR */
    .bottom {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
        font-size: 14px;
    }
}

/* ========== SMALL MOBILE (480px se chhota) ========== */
@media(max-width:480px) {
    .head h1 {
        font-size: 14px;
    }
    
    .head p {
        font-size: 8px;
    }
    
    .videos {
        grid-template-columns: 1fr;
    }
    
    .top-space-bar h2 {
        font-size: 20px;
    }
    
    .highlight {
        grid-template-columns: 1fr;
    }
}