header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-text h1 {
    color: white;
    margin: 0;
    font-size: 24px;
}

.logo-text p {
    color: white;
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
}







nav {
    display: flex;
    gap: 20px;
    align-items:center
}

nav a {
    text-decoration: none;
    color: white;
}

nav a:hover {
    color: #ffcc00;
    transition: 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

.hero {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider-half {
    width: 100%;
}

.slider-half img {
    width: 100%;
    height: 50vh;
    display: block;
    object-fit: cover;
}

.side-img {
    width: 80%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-section {
    min-height: 80vh;
}

.contact-section {
    background-color: light skyblue !important;
}


.touch-banner {
    position: relative;
    width: 100%;
}

.touch-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.touch-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: black;
    max-width: 500px;
}

.touch-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.touch-content p {
    font-size: 16px;
    line-height: 1.8;
}

.last-section {
    padding: 40px 0;
}

.last-img {
    width: 85%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 768px) {
    .last-img {
        width: 100%;
        margin-bottom: 20px;
    }
}

.carousel-caption h2 {
    color: #000000 !important;
    font-weight: 700;
}

.carousel-caption p {
    color: #000000 !important;
}

.custom-img {
    height: 350px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 8px;
}

.know-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: #0d6efd;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background-color: #084298;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.animated-heading {
    background-color: #fff8c6;
    font-size: 40px;
    font-weight: 700;
    opacity: 0;
    animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-content {
    padding: 50px;
    background: linear-gradient(135deg, lightgray, lightgray);
    border-radius: 15px;
    margin: 20px;
}

.about-content .container {
    max-width: 100%;
    width: 100%;
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.what-box {

    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.what-box h4 {
    margin-top: 10px;

}

section.what-we-do {
    background: #ffe5e5 !important;
    padding: 40px 20px !important;
    text-align: center !important;
    display: block !important;
}









.contact-btn {
    background-color: pink;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s ease;
    display: inline-block;
}

/* hover effect */
.contact-btn:hover {
    background-color: hotpink;
    color: white;
    transform: scale(1.05);
}

.card-hover {
    transition: all 0.35s ease;
    background: white;
    border-radius: 10px;
    border: 1px solid transparent;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid #ddd;
}
.card-hover {
    background-color: #e3f2fd !important; /* Light Blue */
    border-radius: 12px;
    padding: 20px;
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.section-heading{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}
.section-heading{
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
/* Mobile Responsive */
@media (max-width:768px){

header{
    flex-direction:column;
    padding:10px;
    flex-wrap:wrap;
}

.logo{
    flex-direction:column;
    text-align:center;
}

.logo img{
    width:70px;
    height:70px;
}

.logo-text h1{
    font-size:30px;
}

.logo-text p{
    font-size:16px;
}

nav{
    margin-top:15px;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

nav a{
    font-size:15px;
    padding:6px 8px;
}

.slider-half img{
    height:240px;
}

.carousel-caption h2{
    font-size:18px;
}

.carousel-caption p{
    display:none;
}

.side-img,
.last-img,
.custom-img{
    width:100%;
    height:auto;
}

.touch-content{
    left:5%;
    right:5%;
}

.touch-content h2{
    font-size:28px;
}

.touch-content p{
    font-size:14px;
}

.about-content{
    padding:20px;
    margin:10px;
}

.about-content p{
    font-size:16px;
    padding:15px;
}
.slider-half img{
    width:100%;
    height:auto;
    object-fit:contain;
}

}
img{
    max-width:100%;
    height:auto;
}
.navbar-brand h4{
    margin:0;
    color:white;
    font-size:24px;
    font-weight:bold;
}

.navbar-brand small{
    color:white;
}

.nav-link{
    color:white !important;
    font-size:17px;
    margin-left:15px;
}

.nav-link:hover{
    color:#ffcc00 !important;
}

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}
























