
body {
    background-image:url('imgbg-2\ \(2\).png');
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}  

/* Navbar Styling */
.navbar {
    background-color: rgba(36, 36, 100, 0.498);
    padding: 1rem 0; /* Add some padding */
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand .logo {
    
    max-height: 50px; /* Adjust logo size */
}

.navbar-toggler {
   background-color: white;
    border: none; /* Remove default border */
    
}

.navbar-toggler-icon {
    
    background-color: white;

}

.navbar-nav .nav-link {
    color: white; /* White text color for nav links */
    padding: 10px 20px;
    text-transform: uppercase; /* Make text uppercase */
    transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover{
    color: darkgray;
} 

@media (max-width: 991px) {
    .navbar-nav {
        background-color: rgba(19, 19, 55, 0.694); /* background for mobile menu */
        border-radius: 8px;
        padding: 10px;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }
   
}

/* Sticky Navbar: Change size on scroll */
.navbar.fixed-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.fixed-top.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}




/* Hero Section Styling */
.hero-section {
   
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: Black;
      
}

.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(255, 255, 255, 0.1); /* Light overlay */
    z-index: 1;
}

.container {
    
    
    position: relative;
    z-index: 2; /* Content above overlay */
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color:white; /*Text color black*/
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: darkgray; /* Text color gray*/
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button Styling */
 .container .btn-success{
    background-color: rgb(74, 74, 197);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-right: 20px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.container .btn-success:hover {
    background-color:rgb(76, 170, 76);
    text-decoration: none;
    color: white;
}


/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-btn, .btn-light {
        font-size: 14px;
        padding: 12px 25px;
    }
}



/* Our Services Section Styling */

.services-section { 
    padding: 60px 0;
}

.services-section h2 {
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
}

.card-body{
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-body:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
 .card-body h4 {
    color: #008080;
    font-weight: 600;
    margin-bottom: 10px;
    padding-top: 10px;
}

.card-body p {
    color: #666;
    font-size: 17px;
}

.btn-success {
    background-color: #32CD32; /*Green background*/
    border-color: #32CD32;
    color: white;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    text-transform: none; /* Makes button text uppercase */
    transition: all 0.3s ease; /* Smooth transition on hover */
}

.btn-success:hover {
    background-color: rgb(76, 170, 76); /* Darker green on hover */
    color: white; /* Ensures text remains white on hover */
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .services-section .service-card {
        margin-bottom: 30px;
    }
}


/* How We Work Section Styling */
.how-we-work-section {  
    padding: 60px 0;
}

.how-we-work-section h2 {
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
}

.work-step {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-step h4 {
    color: #008080;
    font-weight: 600;
    margin-bottom: 10px;
}

.work-step p {
    color: #666;
    font-size: 17px;
}
.work-step:hover{
    transform: translateY(-10px);
}

.how-we-work-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .how-we-work-section .work-step {
        margin-bottom: 30px;
    }
}


/*Success Stories Section*/
.success-stories {
    
    color: white;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.carousel-inner {
    margin-top: 30px;
}

.client-logo {
    max-width: 100px;
    margin-bottom: 20px;
}

.project-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #c02121;
}

.project-overview {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.client-testimonial {
    font-size: 1rem;
    color: whitesmoke;
    font-style: italic;
    border-left: 4px solid #c02121;
    padding-left: 15px;
}

.btn-success{
    background-color: rgb(74, 74, 197);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    text-transform: none;
    margin-top: 15px;
}

.btn-success:hover {
    background-color: rgb(76, 170, 76);
}

/* Blog Section */
.blog-section {
    
    padding: 60px 0;
}
.blog-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: white;
}
/* Blog Card */
.blog-card {
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.blog-card img {
    
    height: 200px;
    object-fit: cover;
}
.blog-card .card-body {
    padding: 20px;
}

.blog-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.blog-card .card-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-card .btn-primary {
    background-color: rgb(74, 74, 197);
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
}
.blog-card .btn-primary:hover {
    background-color: rgb(76, 170, 76);
    
}
/* Responsive Blog Cards */
@media (max-width: 768px) {
    .blog-section .blog-card {
        margin-bottom: 30px;
    }
}


/* Contact Us Section */
.contact-us-section {
    
    padding: 60px 0;
}

.contact-us-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
    text-transform: uppercase;
}

#contactForm .form-label {
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

#contactForm .form-control {
    width: 70%;
    height: 50px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;

}

#contactForm .btn-success {
    background-color: rgb(74, 74, 197);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    margin-right: 30px;
    text-transform: none;   
}
#contactForm .btn-success:hover{
    background-color: rgb(76, 170, 76);
}

#contactForm .btn-primary {
    color: white;
    font-weight: bold;
    background-color: rgb(74, 74, 197);
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 50px;
    margin-top: 13px;
    
}
#contactForm .btn-primary:hover{
    background-color: rgb(76, 170, 76);
}

.map h4{
    color: white;
    margin-left: 20px;

}
/* Responsive Spacing */
@media (max-width: 768px) {
    .map h4{
        margin-top: 20px;
    }
}

.map-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    padding-right: 15px;
}

.map-container iframe {
    
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Section */
.footer-section {
    background-color: whitesmoke; /* background */
    color: black; /* Text color */
}

.footer-section h5 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #32CD32; /* Green hover color */
}

.footer-section .list-unstyled {
    padding: 0;
    list-style: none;
}

.footer-section .list-unstyled li {
    margin-bottom: 10px;
}

.footer-section .list-unstyled.d-flex li {
    margin-right: 15px;
}

.footer-section .form-control {
    border-radius: 5px;
    border: 1px solid #444;
    color: white;
}

.footer-section .btn-primary {
    background-color: #4a4ac5;
    
    padding: 8px 20px;
    border-radius: 50px;
}

.footer-section .btn-primary:hover {
    background-color: rgb(76, 170, 76); /* Slightly darker green on hover */
}

.footer-section .text-center p {
    margin: 0;
    font-size: 0.9rem;
    
}

