body {  
    margin: 0;  
    font-family: Arial, sans-serif;  
}  

.header {  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
    padding: 10px 20px;  
    background-color: #fff;  
    border-bottom: 1px solid #ccc;  
}  

.contact-info {  
    display: flex;  
    align-items: center;  
    font-size: 14px;  
}  



.logo {  
    display: flex;  
    align-items: center;  
}  

.logo-icon {  
    width: 30px;  
    height: 30px;  
    background-color: blue; /* Placeholder for your logo */  
    margin-right: 10px;  
}  

.logo-text h1 {  
    margin: 0;  
    font-size: 20px;  
    color: #603c30; /* Change to your logo's color */  
}  

.logo-text p {  
    margin: 0;  
    font-size: 14px;  
    color: #666;  
}  

.social-icons {  
    display: flex;  
    gap: 15px;  
}  

.social-icons a {  
    text-decoration: none;  
    color: #000;  
    font-size: 14px;  
}  

.menu-icon {  
    font-size: 24px;  
    cursor: pointer;  
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}
.text h1 {  
    margin: 0;  
    font-size: 24px; 
    color: #8C2B2A;   
}  

.text p {  
    margin: 0;  
    font-size: 16px;   
    color: #4A4A4A; 
}  

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .btn-primary {
        margin-top: 10px;
    }
}
  /* Custom CSS for Hero Section */
  .hero-section {
    position: relative;
}

.hero-section .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section .carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
/* About Section */
.about-section {
  padding: 4rem 0;
}

.about-section .nav-tabs .nav-link {
    font-weight: 500;
}

.about-section .tab-content {
    margin-top: 2rem;
  
}
.about-section .btn-primary {
    margin-top: 1.5rem;
}

.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.solution-section {
    padding: 4rem 0;
}

.solution-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.solution-box {
    text-align: center;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.solution-box i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.solution-box h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.contact-section {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.contact-section .form-control {
    border-radius: 0.5rem;
}

.contact-section button {
    border-radius: 0.5rem;
}
footer {
    width: 100%;
    clear: both;
    position: relative;
    bottom: 0;
  }
  