/************ Common styles *****************/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333333;
}

p {
    font-size: 1rem;
    color: #555;
}

h4 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
    color: #333;
	font-weight: 600;
}



/************ Menu Bar *****************/
.navbar {
    background-color: #ffffff;
}

.navbar-nav {
  --bs-nav-link-padding-y: 1.5rem;
  --bs-navbar-nav-link-padding-x: 1.5rem;
}

.navbar-brand .logo {
    max-height: 60px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link.active {
    color: #007bff;
    font-weight: bold;
}


/************ Home Section ******************/
.home-section {
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

/* Image Styling */
.home-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Text Section */
.home-title {
    font-size: 3rem;
    font-weight: bold;
}

.home-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Button Styling */
.buttons a {
    margin-top: 20px;
    margin-right: 10px;
}


/************** About Section #f1f1f1 ************/
.about-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

/* Banner Image */
.banner-image {
    max-width: 100%;
    height: auto;
}


/************ Services *************/
.attractive-services {
    background-color: #ffffff;
}

.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


/*********** Team Section ***********/
.team-section {
    background: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.team-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
	align-items: center;
	width: 130px;
    height: 150px;
    border-radius: 0.75rem 0.75rem 0 0;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 14px;
}

.social-links i {
    font-size: 20px;
    color: #0077b5; /* LinkedIn blue */
}

.social-links i:hover {
    color: #0056b3;
}


/************* Testimonial Section *************/
.testimonial-section {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.testimonial-box {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-box p {
    font-size: 16px;
	font-style: italic;
    color: #777;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007bff;
    border-radius: 50%;
}


/************* Contact Section *************/
.contact-section {
    background: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}


/************* Footer Section *************/
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 40px 0;
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f1c40f;
}

.footer p,
.footer a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    color: #f1c40f;
    text-decoration: underline;
}

.footer .social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    color: #ffffff;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: #f1c40f;
}

.footer hr {
    border-top: 1px solid #ffffff;
    margin: 20px 0;
}