body {
    background: url('Images/back3.jpg')  no-repeat left center	fixed ;
    background-size: cover;
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.h-screen {
    height: 100vh;
}

.text-white {
    color: #fff;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-gray-600 {
    color: #718096;
}

.text-gray-700 {
    color: #4a5568;
}

.text-gray-800 {
    color: #2d3748;
}

.bg-white2 {
    background-color: #fff;
    
}

.bg-white {
    background-color: #fff;
}

.bg-blue-600 {
    background-color: #3182ce;
}

.bg-blue-700 {
    background-color: #2b6cb0;
}

.bg-gray-200 {
    background-color: #edf2f7;
}

.bg-gray-800 {
    background-color: #2d3748;
}
.border-color
{
	background-color: purple;
	border-color: blue;
}
.border-color2
{
	
	border-color: #80e1f4;
	border-width:0.5rem;
	border-right-color:#ecf5d8;
	border-bottom-color:#ea8275;
	border-top-color:#d3b6ec;
	border-left-color:#e5ebaf;
}.border-color3
{
	background-color: yellow;
	border-color: blue;
}.border-color4
{
	background-color: red;
	border-color: blue;
	
	}
.rounded {
    border-radius: 0.125rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.hover\:text-gray-900:hover {
    color: #1a202c;
}

.hover\:bg-blue-700:hover {
    background-color: #2b6cb0;
}

.hover\:text-white:hover {
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}
.p-1 {
    padding-right: 0.25rem;
	padding-top:-0.5rem;

}
.p-3 {
    padding: 0.75rem;
}

.p-6 {
    padding: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.right-align {
            align-self: flex-end;
        }
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.font-bold {
    font-weight: 700;
}

.text-right {
    text-align: right;
}

.w-full {
    width: 100%;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.header-title {
    position: relative;
}


.sub-title {
    font-size: 0.875rem; /* Adjust the font size to make it smaller */
    position: absolute;
    top: 1.5rem; /* Adjust the position as needed */
    left: 0;
    right: 0;
	margin-left :15rem;
	margin-bottom:2.5rem;
    
}
@media (max-width: 768px) {
    body {
        background-size: cover;
    }

    .h-screen {
        height: auto;
    }
	.text-xl {
    font-size: 1rem;
}

    .text-2xl {
        font-size: 1.25rem;
    }
	 .text-3xl {
        font-size: 1.75rem;
    }
    .text-4xl {
        font-size: 2.25rem;
    }

    .text-6xl {
        font-size: 3rem;
    }

    .grid-cols-1 {
        grid-template-columns: 1fr;
    }

    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .flex-col {
        flex-direction: column;
    }

    .space-x-4 > * {
        margin-left: 0.rem;
        margin-top: 0.8rem;
    }

    .space-x-4 > *:last-child {
        margin-bottom: 0rem;
    }
	.right-align {
            align-self: flex-end;
        }
		
    .text-center {
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        align-items: left;
        padding: 0.15rem 0; /* Reduce header padding on mobile */
    }

    .header-content div, .header-content nav {
        width: 100%;
        text-align: right;
    }

    .header-content nav ul {
        flex-direction: column;
    }

    .header-content nav ul li {
		margin-top:0.1rem;
        
		align-items: center;
    }

    .hero-section {
        padding: 2rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section a {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .about-section {
        padding: 1.25rem;
    }

    .about-section h2 {
        font-size: 1.25rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .services-section {
        padding: 2rem;
    }

    .services-section .grid {
        grid-template-columns: 1fr;
    }

    .services-section .mySlides {
        width: 100%;
    }

    .testimonials-section {
        padding: 2rem;
    }

    .testimonials-section .grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section img {
        width: 30%;
        height: 30%;
    }

    .contact-section {
        padding: 2rem;
    }

    .contact-section .form-container {
        padding: 1rem;
    }

    .contact-section .form-container input,
    .contact-section .form-container textarea,
    .contact-section .form-container button {
        font-size: 1rem;
        padding: 1rem;
    }

    .footer {
        padding: 2rem;
        text-align: center;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer .container p,
    .footer .container a {
        margin-bottom: 1rem;
    }
	.sub-title {
    font-size: 0.875rem; /* Adjust the font size to make it smaller */
    position: absolute;
    top: 1.5rem; /* Adjust the position as needed */
    left: 0;
    right: 0;
	margin-left :12rem;
	margin-bottom:2.5rem;
    
}
.m-top{
	margin-bottom: 2;
}
.border-color2{
	
	border-color: #80e1f4;
	border-width:0.2rem;
	border-right-color:#ecf5d8;
	border-bottom-color:#ea8275;
	border-top-color:#d3b6ec;
	border-left-color:#e5ebaf;
	}
.mb-4 {
    margin-bottom: 1rem;
	}
}
/* Add this to make the header sticky and transparent */
header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background:url('Images/back3.jpg') no-repeat fixed; /*Adjust the transparency as needed */
	background-size: cover;
    /*backdrop-filter: blur(10px);  Optional: adds a blur effect */
    z-index: 1000; /* Ensures the header is above other content */
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #1d4ed8;
    color: white;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

#back-to-top:hover {
    background-color: #1e40af;
}

#content1 {
    float: left;
}

#content2 {
    float: right;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.mySlides {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 3.5s;
}

@keyframes fade {
    from {opacity: 1}
    to {opacity: 1}
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.dot:hover {
    background-color: #717171;
}
.btn {
  border: none;
  background-color: inherit;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  display: column;
}