<style>


        
        @font-face {
            font-family: 'itronz';
            src: url('/static/itronz.ttf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'stencil';
            src: url('/static/STENCIL.TTF') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'typo';
            src: url('/static/typo.otf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'helvetica';
            src: url('/static/Helvetica.otf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'roboto';
            src: url('/static/Roboto-Black.ttf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'lato';
            src: url('/static/Lato-Black.ttf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'gon';
            src: url('/static/Gontserrat-Black.ttf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Bold';
            src: url('/static/bold.ttf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Artines';
            src: url('/static/Arthines.otf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'chico';
            src: url('/static/Chicharito.ttf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Calton';
            src: url('/static/Caltons.otf') format('truetype'); /* TTF format */
            font-weight: normal;
            font-style: normal;
        }
        html,body {
            margin:0;
            padding:0;
            overflow-x: hidden;
            font-family: 'Roboto', sans-serif;
        
        }

        /* Default header style */
        header {
            display: flex;
            justify-content: space-between;
            /* Space between items */
            align-items: center;
            /* Align items vertically */
            padding: 10px;
            background-color: black;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            font-family: 'Roboto', sans-serif;
            
            transition: padding 0.3s, transform 0.3s, top 0.5s ease;
        }

        header:hover {
            background-color: white;
            color: black;
            /* Adjust text color if needed */
        }


        /* Style for when header becomes smaller on scroll */
        header.shrink {
            padding: 5px 10pAx;
            /* Adjust padding as needed */
            transform: scaleY(0.8) scaleX(0.8);
            /* Adjust vertical and horizontal scaling */
            transform-origin: top;
            /* Ensures scaling starts from the top */
            margin-top: 20px;
            border-radius: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            transition: padding 0.3s, transform 0.3s, top 0.5s ease;

        }

        header:hover .brand a {
            color: black;

            /* Text color for the brand link changes to black on hover */
        }

        header:hover #navbar a {
            color: black;
            /* Text color for navbar links changes to black on hover */
        }

        header:hover .button a {
            background-color: #ffa500;
            color:white;
            /* Text color for the button link changes to black on hover */
        }

        header:hover .button a:hover {
            background-color: #3bd6c6;
            /* Button background changes to black on hover */
            color: white;
            /* Button text color changes to white on hover */
        }





        .brand {
            margin-left: 30px;
            
            font-family: "Roboto", sans-serif;

        }

        .brand a {
            text-decoration: none;
            font-size: 1.5em;
            color: white;
            /* Adjust color as needed */
            font-weight: bold;
            transition: font-size 0.3s ease;
            font-family: "Roboto", sans-serif;
        }

        .brand:hover a {
            font-size: 1.6em;
            /* Increases font size when hovered */
        }


        .start {
            margin-right: 30px;


        }

        .start a {
            text-decoration: none;
            font-size: 1em;
            color: white;
            /* Adjust color as needed */
            font-weight: bold;
        }
        

        /* Oval Button Styles */
        .button a {
            display: inline-block;
            padding: 12px 24px;
            margin-right: 30px;
            background-color: #3bd6c6;
            /* Main background color */
            color: white;
            /* Text color */
            text-decoration: none;
            border-radius: 50px;
            /* Makes the button oval */
            font-size: 1.1em;
            font-weight: bold;
            text-align: center;
            
            font-family: "Helvetica",sans-serif;
            /* Center text horizontally */
            transition: background-color 0.3s, transform 0.3s;
        }

        .button a:hover {
            background-color: white;
            color: black;
            /* Darker shade on hover */
            transform: scale(1.05);
            /* Slight zoom effect */
        }

        .button a:focus,
        .button a:active {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.5);
            /* Outline effect for accessibility */
        }
        

        .bb a {
            
            display: inline-block;
            padding: 12px 24px;
            margin-right: 30px;
            background-color: black;
            /* Main background color */
            color: white;
            /* Text color */
            text-decoration: none;
            border-radius: 50px;
            
            /* Makes the button oval */
            font-size: 1em;
            font-weight: bold;
            text-align: center;
            font-family: "Helvetica",sans-serif;
            border: 3px solid black;
            /* Center text horizontally */
            transition: background-color 0.3s, transform 0.3s;
        }
        .bb a:first-child {
            background-color: black;
            border-color: black;
        }
        
        .bb a:last-child {
            background-color: #FFA500;
            border-color: #FFA500;
        }

        .bb a:hover {
            background-color: white;
            color: black;
            /* Darker shade on hover */
            transform: scale(1.05);
            /* Slight zoom effect */
        }

        .bb a:focus,
        .bb a:active {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.5);
            /* Outline effect for accessibility */
        }



        h1 {
            font-size: 3em;
            line-height: 1.3;
            /* Decrease line spacing */
            margin: 0;
            /* Increase the font size as needed */

            /* Adjust margin as needed */
            color: #333;
            /* Optional: change color to match your design */
        }

        h2 {
            font-size: 3em;
            line-height: 1.3;
            /* Decrease line spacing */
            margin: 0;
            /* Increase the font size as needed */

            /* Adjust margin as needed */
            color: #333;
            margin-bottom: 30px;
            /* Optional: change color to match your design */
        }
        

        #navbar {
            list-style-type: none;
            margin: 0;
            padding: 14px 20px;
            display: flex;
            justify-content: center;
            transition: border-radius 0.3s, padding 0.3s, background-color 0.3s;

            /* Ensure background color is set */
        }

        #navbar li {
            margin: 0;
        }

        #navbar a {
            display: block;
            padding: 14px 20px;
            color: white;
            text-decoration: none;
            text-align: center;
            font-size: 18px;
            font-family: "typo",sans-serif;
        }

        #navbar a::after {
            content: '';
            /* Creates a pseudo-element */
            position: absolute;
            left: 20%;
            bottom: 0;
            width: 60%;
            height: 2px;
            /* Adjusts the thickness of the underline */
            background-color: black;
            /* Sets the underline color */
            transform: scaleX(0);
            /* Initially hides the underline */
            transition: transform 0.3s ease;
            /* Controls the animation duration and timing */
        }

        #navbar a:hover::after {
            transform: scaleX(1);
            /* Expands the underline on hover */
        }

        #navbar a:hover {

            border-radius: 15px;
            font-weight: bold;


        }

        /* Style for when navbar is oval */
        #navbar.oval {
            padding: 5px 5px;
            /* Adjust padding as needed */
            border-radius: 5px;
            transform: scaleY(0.7);
            /* Adjust vertical scaling */
            transform-origin: top;
            /* Ensures scaling starts from the top */
            transition: transform 0.3s ease;
            /* Oval shape */
            /* Adjust padding to fit the shape */
        }

        main {
            padding: 80px 20px 20px;
            /* Add top padding to avoid content being hidden under the fixed header */
            text-align: center;
        }

        .image {
            display: block;
            margin-top: 100px;
            /* Adjust this value to lower the image further */
            width: 100%;
            /* Ensures the image spans the full width */
            height: auto;
            align-items: center;
        justify-content: center;
            
            

            /* Maintains the aspect ratio */
        }

        .soft {
            clip-path: inset(0 15px 0 0); 
            border-radius: 0px;
            
            /* Image will take up the width of its container */
            height: auto;
            /* Maintains aspect ratio */
            max-width: 1350px;
            /* Adjust the maximum width as needed */
            max-height: 700px;
            
            margin-left: 70px;
        }

        
        .text-overlay {
            position: absolute;
            top: 30%;
            left: 35%;
            transform: translate(-50%, -50%);
            background-color: white;
            color: black;
            padding: 5px 20px;
            border-radius: 10px;
            font-size: 4em;
            font-weight: bold;
            text-align: center;
            font-family: 'Calton', sans-serif;
            
           



        }

        .text-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            /* Extend the width from the left */
            width: 55%;
            /* Adjust this value as needed */
            height: 100%;
            background-color: white;
            /* Same as the background of .text-overlay */
            z-index: -1;
            /* Ensure the pseudo-element is behind the text */
        }

        .namaste {
            position: absolute;
            top: 21%;
            left: 30.3%;
            transform: translate(-50%, -50%);
            background-color: white;
            color: black;
            padding: 20px;
            border-radius: 10px;
            font-size: 1em;
            font-weight: bold;
            text-align: center;
            font-family: 'Roboto', sans-serif;
           
            width: 48%
        }
        

        .text-a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            /* Extend the width from the left */
            width: 55%;
            /* Adjust this value as needed */
            height: 50%;
            background-color: white;
            /* Same as the background of .text-overlay */
            z-index: -1;
            /* Ensure the pseudo-element is behind the text */
        }

        .text-a {
            position: absolute;
            top: 40%;
            left: 33%;
            transform: translate(-50%, -50%);
            background-color: white;
            color: black;
            padding: 5px 20px;
            border-radius: 10px;
            font-size: 4em;
            font-weight: bold;
            text-align: center;
            font-family: 'Calton', sans-serif;

        }

        .text-b {
            position: absolute;
            top: 49.5%;
            left: 26.8%;
            transform: translate(-50%, -50%);
            background-color: white;
            color: black;
            padding: 5px 20px 5px 20px;
            border-radius: 10px;
            font-size: 4em;
            font-weight: bold;
            text-align: center;
            font-family: 'Calton', sans-serif;
            

        }

        .btn {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: black;
            /* Replace with your desired button color */
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1em;
            cursor: pointer;
        }

        .text-c {
            position: absolute;
            top: 63%;
            left: 27%;
            transform: translate(-50%, -50%);
            background-color: white;
            color: black;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 1em;
            font-weight: bold;
            text-align: center;
            width: 14.5%;
            font-family:"Calton",sans-serif;
        }





        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
        .brandd {
            margin-top:40px;
            margin-bottom:40px;
        }
        .brandd-inner {
            display: flex;
            align-items: center;
            gap: 30px; /* Space between images */
            background-color: rgba(245, 245, 245, 0.5); /* Gray background */
            padding: 20px 0; /* Adds padding for better appearance */
            white-space: nowrap; /* Ensures the images stay in a single line */
            width: max-content; /* Allows the images to scroll continuously */
            animation: scrollLeft 20s linear infinite;
        }

        .brandd img {
            width: 200px;
            justify-content: space-between;
            /* Set the width to your desired size */
            height: auto;
            /* Maintains the aspect ratio */
            /* Optionally, add padding or margins if needed */
            margin-right: 60px;
            /* Add space between images */
            
            margin-top: 30px;
        }
        @keyframes scrollLeft {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }
        @media screen and (max-width: 480px) {
            .brandd-inner {
                gap: 15px; /* Reduce gap for smaller screens */
                animation: scrollLeft 20s linear infinite; /* Slightly faster scroll */
            }
            
            .brandd img {
                width: 120px; /* Smaller images */
                margin-right: 20px;
                margin-top: 20px;
            }
            
            h3 {
                font-size: 16px; /* Adjust text size */
                text-align: center;
            }
            .brandd{
                margin-bottom:-40px;
                
            }
        }
        



       
        .project-section {
            padding: 40px 0;
            background-color: white;
            text-align: center;
            margin-bottom:100px;
        }
        
    
        .section-title {
            font-size: 2.5rem;
            
            margin-top: 60px;
            text-align: end;
            color: #333;
            font-family: "typo",sans-serif;
        }
    
        .section-subtitle {
            font-size: 1.2rem;
            color: #777;
            margin-bottom: 50px;
        }
    
        .project-grid {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding: 0 20px;
            position: relative;
            margin-bottom: 100px;
        }
        
        .project-card {
            position: relative;
            width: 600px;
            height: 450px;
            box-shadow: 0px 1px 13px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 120ms;
            background: #fff;
            overflow: hidden;
        }
        
        .project-card::after {
            content: "Visit Webiste";
            padding-top: 1.25em;
            position: absolute;
            left: 0;
            bottom: -60px;
            background: #3bd6c6;
            color: #fff;
            height: 2.5em;
            width: 100%;
            transition: all 80ms;
            font-weight: 600;
            font-size: 22px;
            text-transform: uppercase;
            opacity: 0;
            text-align: center;
            font-family: "typo", sans-serif;
        }
        
        .project-card:hover {
            transform: scale(1.02);
            box-shadow: 0px 1px 13px rgba(0,0,0,0.2);
        }
        
        .project-card:hover::after {
            bottom: 0;
            opacity: 1;
        }
        
        .project-card:active {
            transform: scale(0.98);
        }
        
        .project-image img {
            width: 97%;
            margin-top:10px;
            height: 95%;
            margin-left:7px;
            object-fit: cover;
            clip-path: inset(0 7px 0 0); 
            transition: transform 0.3s ease-in-out;
        }
        
       
        .project-text {
            position: absolute;
            left: 20px;
            bottom: -10px;
            font-size: 42px;
            font-weight: bold;
            color: black;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: "Calton", sans-serif;
            z-index: 2;
        }
        
        .project-heading {
            position: absolute;
            left: 20px;
            bottom: 60px;
            font-size: 22px;
            color: black;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: "Roboto", sans-serif;
            z-index: 2;
        }
        
        /* Maintain original positioning */
        .project-wrapper-2 {
            position: relative;
            top: 150px;
        }
        
        .project-wrapper {
            margin-top: 40px;
        }
        .bottom-content {
            position: absolute;
            bottom: -180px; /* Adjust as needed */
            left: 180px; /* Adjust as needed */
            display: flex;
            flex-direction: column; /* Stack items vertically */
            align-items: flex-start;
            gap: 10px; /* Space between text and button */
        }
        


        .bottom-text {
            font-size: 38px;
            color: #333;
            font-weight:bold;
            font-family: "Calton", sans-serif;
            margin: 0;
        }
        
        .bottom-button {
            padding: 10px 20px;
            background-color: #FFA500;
            color: #fff;
            text-decoration: none;
            font-family: "tyop", sans-serif;
            font-size: 16px;
            font-weight: 600;
            border-radius: 20px;
            align-self: center;
            transition: background-color 0.3s ease;
        }
        
        .bottom-button:hover {
            background-color: #008c63; /* Darker shade on hover */
        }
        .container {
            position: relative;
        }
        

        .social-icon {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }

        .social-icon:hover {
            color: #ddd;
        }

        .services {
            background-color: black;
            color: white;
            padding: 40px 20px;
            text-align: center;
            width: 100%;
            margin-left:-20px;

            
            
            
            
            
            
            
        }

        .services h4 {
            font-size: 3.5em;
            margin-bottom: 20px;
            color:#FFA500;
            font-family: "Calton",sans-serif;
        }

        .services-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            
        }

        .content {
            margin-top: 50px;
            margin-bottom: 20px;
            font-family: "Roboto", sans-serif;
            text-align: right;
            margin-right:150px;


        }
        .content h1{
            font-size: 4em;
            line-height: 1.1;
            /* Decrease line spacing */
            margin: 0;
            /* Increase the font size as needed */

            /* Adjust margin as needed */
            color: #333;
            font-family: "Calton",sans-serif;
        }
        .content h2{
            font-size: 4em;
            line-height: 1.1;
            /* Decrease line spacing */
            margin: 0;
            /* Increase the font size as needed */

            /* Adjust margin as needed */
            color: #333;
            font-family: "Calton",sans-serif;
        }
        .s{
            text-align: left;
            
            
        }
        .s h1{
            
            color:white;
            font-family: "typo",sans-serif;
            
        }
        .ss{
            text-align:right;
            font-weight:bold;
        }

        .service-item {
            background-color: black;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            /* Ensures thumbnail image stays within the bounds */
        }
        .service-items {
            background-color: black;
            
            
            /* Ensures thumbnail image stays within the bounds */
        }

        .service-item::after {
            content: '';
            display: block;
            width: 50%;
            height: 2px;
            background-color: #444;
            margin: 20px auto 0;
        }


        .service-item:last-child::after {
            display: none;
        }

        .service-item h3 {
            font-size: 7em;
            margin: 0;
        }

        .service-item p {
            font-size: 1.2em;
            margin: 10px 0 0;
        }

        /* Thumbnail Image */


        .service-item:hover::before {
            left: 470px;
            /* Adjust to move image on hover */
            opacity: 1;
            transform: translateY(-50%) scale(1);

        }

       

        .service-item.reverse-layout:hover::before {
            left: calc(100% + 20px);
            /* Adjust for reverse-layout items */
        }
        .about-image {
            display: block;
            margin: 40px auto;
            max-width: 600px;
            width: 100%;
            height: auto;
            border-radius: 15px;
            opacity: 0;
            animation: fadeIn 1.5s ease-out forwards 1s;
        }

#slideshow {
    width: 100%; /* Adjust the width as needed */
    border-radius: 15px; /* This will smooth out the sharp edges */
    display: block;
}
form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
        
    border-bottom:1px solid #ccc;
    margin-bottom: 50px;

    }

form .far{
    font-size:18px;
    margin-right:10px;
    margin-top:20px;

}
form input{
    width:100%;
    background-color: transparent;
    color:#402021;
    border:0;
    margin-top:20px;
    outline: none;

}
form button{
    background-color: transparent;
    border:0;
    outline: none;
    cursor: pointer;
    margin-top:20px;

}
form button .fas{
    font-size:16px;
    color: white;
    
    
}
.footer-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-text h6{
    font-size:70px;
     margin-top:40px;

}
.footer-text h5{
    font-size:150px;
     margin-top:120px;
     margin-bottom:20px;

}

.social-icons .fab{
    width:40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color:#402021;
    background: #fff8e7;
    margin-right: 15px;
    margin-top:-40px;
    

}
.social-icons .fab:hover{
    color:#F05098;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    outline: none;
    
}

.newsletter-form button {
    padding: 10px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s ease;
    
}

.newsletter-form button:hover {
    background-color: black;
    color:white;
    font-size: 28px; 
    

}


.footer {
    width: 100%;
    background:black;
    color: white;
    padding: 50px 20px;
    
    font-size: 13px;
    line-height: 20px;
    
    bottom:0;
    
    
}
.footer h1{
    font-size: 30px;
width:fit-content;
position:relative;
margin-top: 20px;
color: white;


}

.footer-bottom h1 {
margin-top: 30px;
font-size: 44px;
text-align: center;
}
.footer-bottom h3 {
margin-top:150px;
font-size: 244px;
text-align: center;
margin-bottom:100px;;
}
.footer h4 {
font-size: 20px;
width:fit-content;
position:relative;
margin-bottom: 20px;
color: white;

}



.row {
    width: 85%;
    display: flex;
    margin:auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap:20px;
    
}
.col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.col p {
    margin: 5px 0; /* Remove any default margin */
}

.footer p {
    font-size: 17px;
    margin: 5px 0;
    text-align: center;
    
    color:White;
    font-family: "Calton",sans-serif;
    
    
}



.footer-logo{
    max-width: 80px;
    margin-bottom: 0px;
    transform:scale(2.5);
    

}
hr{
    width:90%;
    border:0;
    border-bottom: 1px solid#ccc;
    margin:20px auto;
}
.copyright{
    text-align:center;
}
.underline{
    width:100%;
    height:5px;
    background: #767676;
    border-radius: 3px;
    position: relative;
    top: 12px;
    left: 0;



}
.underline span{
    width:15px;
    height:100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;


}
@keyframes moving{
    0%{
        left:-20px;
    }
    100%{
        left:100%;
    }
}







.social-media{
    position: absolute;
    bottom: 100px;
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.social-media a {
    color: white;
    font-size: 25px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ff4081; /* Change to your preferred hover color */
}


h6{
    font-size:200px;
    font-family:'stencil',sans-serif;
    text-align:center;
   margin:0;
   color:#402021
        
    
    
        
    
}
h5{
    font-size:200px;
    font-family:'stencil',sans-serif;
    text-align:center;
   margin:0;
   
   color:#F05098;
        
    
    
        
    
}
.why-choose-us {
    text-align: center;
    
    color: #333;
    max-width: 1200px;
    margin-top: 250px;
    margin-bottom: 100px;
    margin-left:150px;

}
.why-choose-us h2{
    font-family: "Calton",sans-serif;
}

.why-choose-us ul {
    list-style-type: none;
    padding: 0;
    
}

.why-choose-us li {
    font-size: 35px;
    background-size: 20px;
    padding-left: 30px;
    margin: 10px 0;
    line-height: 1.5;
    font-family: "typo",sans-serif;
    text-align: center;
}
@media (max-width: 480px) {
    .project-section{
        margin:auto;
    }
    .section-title{
        font-size: 22px;
    }
    .project-grid {
        flex-direction: column; /* Stack cards vertically */
        gap: 20px; /* Reduce gap between cards */
        padding: 0 10px; /* Reduce side padding */
    }

    .project-card {
        width: 100%; /* Full width for cards */
        height:280px; /* Auto height for responsiveness */
    }

    .project-image img {
        width: 95%; /* Full width for images */
        height: auto; /* Auto height for images */
        margin-top: 10px; /* Remove top margin */
    }

    .project-wrapper-2 {
        top:40px; /* Reset top positioning */
    }

    .project-wrapper {
        margin-top: 0; /* Reset margin */
    }

    .project-text {
        font-size: 32px; /* Reduce font size for smaller screens */
        bottom: -20px; /* Adjust position */
        left: 20px; /* Adjust position */
    }

    .project-heading {
        font-size: 18px; /* Reduce font size for smaller screens */
        bottom: 30px; /* Adjust position */
        left: 20px; /* Adjust position */
    }

    .bottom-content {
        position: static; /* Reset absolute positioning */
        flex-direction: column; /* Stack text and button vertically */
        align-items: flex-start; /* Align to the left */
        gap: 10px; /* Reduce gap between text and button */
        padding: 20px 10px; /* Add padding for spacing */
    }

    .bottom-text {
        font-size: 16px; /* Reduce font size for smaller screens */
    }

    .bottom-button {
        width: 100%; /* Full width for button */
        text-align: center; /* Center button text */
        padding: 8px 16px; /* Adjust padding */
        font-size: 14px; /* Reduce font size */
    }

}
@media screen and (max-width: 480px) {
    .why-choose-us {
        padding: 20px;
        text-align: center;
        margin-left:-40px;
       
        
    }

    .why-choose-us h2 {
        font-size: 28px;
    }

    .why-choose-us li {
        font-size: 18px;
       
    }
    html,body {
        margin:0;
        padding:0;
        overflow-x: hidden;
        font-family: 'Roboto', sans-serif;

    }
}
@media screen and (max-width: 480px) {
    .bottom-content {
        position: static;
        text-align: center;
        align-items: center;
        padding: 20px;
    }
    
    .bottom-text {
        font-size: 27px;
    }
    
    .bottom-button {
        display:inline-block;
        width:auto;
        font-size: 18px;
        padding: 8px 14px;
    }
}

.card-container {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    gap: 20px;
    margin-top:60px;
    margin-bottom:60px; /* Adds space between the card and the description */
  }
  
  .card {
    width: auto;
    height: 554px;
    background: rgb(245,245,245,0.5);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 150px;
  }
  
  .card-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Ensures the image covers the card area */
  }
  
  .card-description {
    flex: 1;
    margin-top:-150px; /* Takes up the remaining space */
  }
  
  .card-description h2 {
    margin: 0;
    font-size: 44px;
    font-family: "Calton",sans-serif;
  }
  
  .card-description p {
    margin: 10px 0 0;
    font-size: 27px;
    color: black;
    
    font-family: "typo",sans-serif;
  }
  
  @media (max-width: 480px) {
    .card-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        gap: 10px;
        margin-top: -60px;
        margin-bottom: 0px;
    }

    .card {
        width: 90%; /* Make the card adapt to screen width */
        height: auto; /* Adjust height dynamically */
        margin-left: 0; /* Remove extra margin */
    }

    .card-description {
        margin-top: 0;
        text-align: center; /* Center text for better readability */
        padding: 10px;
    }

    .card-description h2 {
        font-size: 32px; /* Reduce font size */
    }

    .card-description p {
        font-size: 18px; /* Adjust font size for readability */
    }
}
@media (max-width: 768px) {
    .footer-bottom h1 {
        font-size: 1.5rem;
        margin-top:20px;
    }

    .footer-bottom h3 {
        font-size: 7.25rem;
    }
    .footer h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    footer{
        bottom:unset;
    }
    .col{
        flex-basis:100%;
    }
    .footer-text h6{
        font-size:30px;
         

    }
    .footer-text h5{
        font-size:60px;
         margin-top:20px;

    }
    
   
}

/* home */


    </style>

    <style>

    

    /* Styling for image and text container */
    .image-text-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0 auto;
        max-width: 800px;
    }
    .text-content h2{
        font-size:30px;
        text-align:center;
        font-family:"Calton",sans-serif;

    }
    .text-content p{
        font-size:20px;
        text-align:center;
        font-family:"typo",sans-serif;

    }

    /* Styling for the image */
    .bottom-image {
        max-width: 500px;
        margin-top: 400px;
        width: 100%;
        height: auto;
        border-radius: 15px;
        margin-right: 100px;
        margin-left: -100px;
    }

    .bottom-image:hover {
        transform: scale(1.05);
    }
    
    /* Styling for the text content */
    .text-content {
        max-width: 650px;
        font-size: 18px;
        line-height: 1.6;
        margin-top: 350px;
    }
    a {
        text-decoration: none; /* Removes the underline from all links */
    }

    .about-i {
        display: block;
        margin: -220px auto;
        max-width: 1000px;
        width: 100%;
        height: auto;
        border-radius: 15px;
        position: relative;
    }
    @media (max-width: 480px) {
        .about-i {
            margin-top: -120px; /* Adjust margin to lower the image */
        }
    }


    .about-container {
        display: block;
        
        max-width: 1000px;
        width: 100%;
        
        height: auto;
        border-radius: 15px;
        position: relative;
    }
    

    .about-text {
        position: absolute;
        background-color: white;
        color: black;
        font-size: 48px;
        font-weight: bold;
        padding: 5px 20px;
        border-radius: 10px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        transform: translateY(-50%);
        margin-left: 100px;
        margin-top: -50px;
    }

    .scrolling-text {
        position: relative;
        width: 100%;
        height: 200px;
        background-color: white;
        overflow: hidden;
        color: black;
        text-align: center;
        line-height: 150px;
        margin: 20px;
        font-size: 150px;
        font-weight: bold;
    }

    .btn-container {
        text-align: center;
        margin-top: 20px;
    }

    /* Styling for the button */
    .cta-btn {
        position: absolute;
        bottom: -100px;
        left: 85%;
        transform: translateX(-50%);
        background-color: black;
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        font-family:"Helvetica",sans-serif;
        transition: background-color 0.3s ease;
        z-index: 10;
    }

    .cta-btn:hover {
        background-color: transparent;
    }

    h8 {
        font-size: 2em;
    }

    .scrolling-text span {
        display: inline-block;
        white-space: nowrap;
        position: relative;
        animation: scroll 10s linear infinite;
    }

    .left-text-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .left-text-container h1 {
        font-size: 24px;
        margin: 10px 0;
    }

    .cta-button {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 24px;
        background-color: #3bd6c6;
        color: white;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-family:"Helvetica",sans-serif;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #555;
    }
    .text-content:hover h2{
        transform: scale(1.05);

    }

    /* Keyframes for scrolling text animation */
    @keyframes scroll {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    /* Responsive styles */
    @media (max-width: 768px) {
        .image-text-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .bottom-image {
            margin: 0;
        }

        .text-content {
            margin-top: 20px;
        }
        

        .about-text {
            font-size: 32px;
            margin-left: 0;
            text-align: center;
        }

        .scrolling-text {
            font-size: 50px;
            height: 100px;
            line-height: 100px;
        }

        .cta-btn {
            bottom: -50px;
            left: 50%;
        }

        .services-content {
            flex-direction: column;
            text-align: center;
        }

        .left-text-container h1 {
            font-size: 18px;
        }

        .cta-button {
            padding: 10px 20px;
        }
        .namaste {
            font-size: 36px;
        }
        
        .text-overlay {
            font-size: 32px;
        }
        
        .text-a, .text-b {
            font-size: 32px;
        }
        
    }
    

    
    

    @media (max-width: 480px) {

        .about-text {
            font-size: 24px;
        }
        .image-text-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin: 40px auto;
            max-width: 800px;
        }
        .about-text {
            position: absolute;
            background-color: white;
            color: black;
            font-size: 20px;
            font-weight: bold;
            
            border-radius: 10px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            transform: translateY(-50%);
            margin-left: 50px;
            margin-top: 200px;
        }
        .image{
            display:flex;
            margin-top:50px;
            align-items: center;
            justify-content: center;
            margin-left: 7px; 
            
            
            
        }
        .soft {
            height: 500px; /* Set a specific height for mobile */
            object-fit: cover; /* Ensure the image covers the height while maintaining aspect ratio */
            transform: scale(1.1);
            max-width:95%;
            margin: 0 auto;
            
            
        }

        .scrolling-text {
            font-size: 30px;
            line-height: 70px;
        }

        .cta-btn {
            bottom: -30px;
            font-size: 4vw;
            left:69%;
        }

        .cta-button {
            font-size: 14px;
        }
        .namaste {
            font-size: 3.5vw;
            position:absolute;
            top:13vh;
            left:30.5%;
            padding-left:20px;
        }
        .namaste::before {
            content: '';
            position: absolute;
            top: 0;
            left: -33%;  /* Moves the pseudo-element to the left side */
            width: 40%;  /* Adjust the width to cover the desired portion */
            height: 100%;
            background-color: white;
        }
        
        
        .text-overlay {
            font-size: 8vw;
            top:17vh;
            position:absolute;
            left:31.3%;
            word-spacing: 0.1em;
        }
        
        .text-a {
            font-size: 8vw;
            top:22vh;
            position:absolute;
            left:28%;
            word-spacing: 0.1em;

        }
        .text-b {
            font-size: 8vw;
            top:27vh;
            position:absolute;
            left:15.5%;
            word-spacing: 0.1em;

        }
        .left-text-container h3{
            font-size:15px;
            
        }
        .content h3{
            font-size: 20px;
            margin-left: -200px;
        }
        .content{
            text-align:center;
            margin:50px auto 0;
            

        }
        .content h1{
            font-size:35px;
            
            
        }
        .content h2{
            font-size:35px;
        }
        .services h4 {
            font-size: 25px;
            
        }
        .service-item h3 {
            font-size: 50px;
            margin: 0;
        }
        
        /* Adjusting CTA button for mobile */
        .cta-btn {
            font-size: 14px;
            padding: 8px 16px;
            bottom: 290px;
        }
        .bb{
            justify-content: center;
            margin-top:20px;
            margin-left:50px;
            
        }
        
        .projects h2{
            font-size:25px;
        }
        .project-description{
            font-size:20px;
        }
        .about-container {
            display: block;
            margin: 185px auto 400px;
            max-width: 1000px;
            width: 90%;
            height: auto;
            border-radius: 15px;
            position: relative;
        }
        text-content h2 {
            font-size:25px;
        }


    }
    @media (max-width: 768px) and(max-height: 800px) {
        .text-overlay {
            font-size: 6vw;
            left:30%; /* Adjust for smaller screens */
        }
    }
    @media (max-width: 768px) and(max-height: 800px) {
        .text-a {
            font-size: 5vw;
            left:28%; /* Adjust for smaller screens */
        }
    }
    @media (max-width: 768px) and(max-height: 800px) {
        .text-b {
            font-size: 5vw;
            left:18%; /* Adjust for smaller screens */
        }
    }
    @media (max-width: 768px) and(max-height: 800px) {
        .namaste {
            font-size: 2.5vw;
            top:13vh; /* Adjust for smaller screens */
        }
    }
    @media (max-width: 768px) and (max-height: 900px) {
        .cta-btn {
            bottom: 15px; /* Adjust this value if needed for 900px height */
        }
    }
    
    @media (max-width: 768px) and (max-height: 800px) {
        .cta-btn {
            bottom: 150px; /* Adjust this value if needed for 800px height */
        }
    }
    .about-p {
        text-align: center; /* Centers the text */
        font-size: 18px;
        color: #333;
        max-width: 600px;
        margin: 0 auto; /* Centers the text block */
    }
    
    
    
</style>