body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(230, 230, 230);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;/* rgb(220, 218, 218)*/
    padding: 10px 20px;
    color: rgb(0,128,128);
}

.navbar a {
    color: rgb(0,128,128);
    text-decoration: none;
    margin: 0 15px;
    font-size: 19px;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: none;
}

.logo img {
    height: 40px;
    cursor: pointer;
}

/* Dropdown styling */
.dropdown {
position: relative;
display: inline-block;
background-color: whitesmoke;
border-radius: 3px;
margin-right: 4px;
}

.dropdown-content {
display: none;
position: absolute;
background-color: rgb(0, 128, 128);
min-width: 200px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
padding-top: 2rem;
padding-bottom: 2rem;
}

.dropdown-content a {
color: white;
padding: 10px 15px;
display: block;
text-align: left;
font-size: 16px;
font-weight: lighter;
width: 260px;
}

.dropdown-content a:hover {
/*background-color: white; */
color:rgb(13, 0, 128) ;

}

.dropdown:hover .dropdown-content {
display: block;
}

/* Sub-dropdown styling */
.sub-dropdown {
position: relative;
}

.sub-dropdown-content {
display: none;
position: absolute;
top: 0;
left: 100%;
background-color: rgb(0, 128, 128) ;
min-width: 180px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
padding-top: 2rem;
padding-bottom: 2rem;
}

.sub-dropdown-content a {
padding: 10px;
color: white;
display: block;
width: 260px;
}

.sub-dropdown-content a:hover {
    color:rgb(13, 0, 128) ;

}

/* Show sub-dropdown on hover */
.sub-dropdown:hover .sub-dropdown-content {
display: block;
}



.contact-button {
background-color: rgb(0,128,128);
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
color: white;
}

.contact-button:hover {
background-color: #777;
}


/* End of nav bar*/




/* slide show styles*/

 /* Slideshow Container */
 .slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    height: 90vh;
}

/* Individual Slides */
.slide {
    display: none;
    width: 100%;
}

/* Image Styling */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fade Animation */
.fade {
    animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Dots Navigation - Positioned Bottom Right */
.dots-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #fff;
}



/* Header Styles */
.page-header {
text-align: left;
margin-bottom: 2rem;
margin-top: 5rem;
margin-left: 6rem;
margin-right: 5rem;
color: rgb(0,128,128);
}

.page-header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

.page-header p {
font-size: 1.2rem;
line-height: 1.5;
text-align: justify;
}

/* Card Styles*/
.card-container {
display: flex;
gap: 2rem;
flex-wrap: wrap;
justify-content: center;
padding: 1.5rem;
max-width: 90%; /* Ensuring spacing on the right */
margin: 0 auto;
margin-bottom: 5rem;
}

.card {
position: relative;
width: 420px;
height: 300px;
overflow: hidden;
border-radius: 10px;
box-shadow: 0 2px 4px rgb(255, 248, 248);
cursor: pointer;
transition: transform 0.3s ease;
}

.card:hover {
transform: scale(1.05);
}

.card-image img {
width: 100%;
height: 100%;
object-fit: cover;
/*  filter: blur(5px);  Blurring the images */
}

.card-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #fff;
display: flex;
flex-direction: column;
justify-content: flex-start; /* Content starts from the top */
align-items: flex-start; /* Left align content */
text-align: left;
padding: 1.5rem;
background: rgba(0, 0, 0, 0.6);
}

.card-content h3 {
margin-bottom: 0.5rem;
font-size: 1.5rem;
}

.card-content p {
margin-bottom: 1rem;
margin-right: 1rem;
font-size: 1rem;


}

.read-more {
text-decoration: none;
color: #fff;
background-color: #007bff;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: background-color 0.3s ease;
align-self: flex-start; /* Align button to the left */
}

.read-more:hover {
background-color: #0056b3;
}

/* Agile Section */
.agile-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
flex-wrap: wrap; /* Ensures responsiveness */

}


.agile-left {
flex: 1;
font-size: 3rem; /* Large font */
font-weight: bold;
text-align: center;
margin-top: 5rem;
width: 35%;
background: linear-gradient(90deg, #1e8566, #00d4ff); 
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; 
}

.partition-line {
width: 3px;
height: 220px;
background: linear-gradient(to right, #007bff, #00c851);
margin: 0 2rem;
margin-top: 5rem;

}

.agile-right {
flex: 1;
text-align: left; 
margin-top: 5rem;

}
.agile-right h2{
background: linear-gradient(90deg, #1e8566, #00d4ff); 
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; 
}



/* Career Section */
.career-section {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
max-width: 1200px;
margin: 3rem auto;
padding: 2rem;
background: rgb(0, 128, 128);
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 4rem;
}

.career-left, .career-right {
flex: 1;
padding: 1rem;
}
.career-left{
margin-right: 3.5rem;
}
.career-header {
font-size: 2rem;
color: wheat;
margin-bottom: 1rem;
}

.career-text {
font-size: 1.2rem;
color: white;
line-height: 1.8;
margin-bottom: 1.5rem;
text-align: justify;
}

.career-button-container {
margin-top: 1.5rem;
}

.career-button {
display: inline-block;
padding: 0.75rem 1.5rem;
font-size: 1rem;
color: rgb(0, 128, 128);;
background: rgb(236, 204, 145);
border: none;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.career-button:hover {
background: rgb(218, 166, 70);
color: white;
}

.career-image {
width: 100%;
height: auto;
border-radius: 10px;
margin-top: 3rem;
}





 /* Contact Form */
 .contact-form {
    width: 90%;
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: rgb(0, 128, 128);
}

.contact-form h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Form Styling */
.form-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.input-box {
    flex: 1;
    min-width: 200px;
    margin: 0.5rem;
    margin-right: 2rem;
}

.input-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Privacy Policy */
.privacy-text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: center;
}

.privacy-text a {
    color: rgb(0, 128, 128);
    text-decoration: none;
    font-weight: bold;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-container {
    text-align: center;
    margin-top: 1rem;
}

.submit-Button {
    width: 150px;
    padding: 10px;
    font-size: 1.2rem;
    background: rgb(0, 128, 128);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.submit-Button:hover {
    background: rgb(0, 100, 100);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }

    .submit-Button {
        width: 100%;
    }
}

.header-design {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #007bff, #00c851);
}
.header-design-slide{
position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #007bff, #00c851);
}

/* Footer */
.footer {
    background-color: rgb(0,128,128);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 150px;
    margin: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-section p, .footer-section ul {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: teal;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #555;
}

.footer-section h3 {
    font-size: 1.3rem; /* Adjusted for consistency */
    margin-bottom: 8px;
    color: white;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: lightgray;
}



/* Responsive*/
@media (max-width: 768px) {


.dropdown-content, .sub-dropdown-content {
position: relative;
width: 100%;
}

.sub-dropdown:hover .sub-dropdown-content {
left: 0;
}

.navbar a, .contact-button {
        margin: 10px 0;
    }

.card-container {
          flex-direction: column;
          align-items: center;
}
.card {
width: 90%;
}

.agile-container {
flex-direction: column;
align-items: center;
text-align: center;
}

.partition-line {
height: 3px;
width: 50%;
margin: 1rem 0;
}

.agile-left {
font-size: 2rem;
}

.career-section {
flex-direction: column;
text-align: center;
}

.career-left, .career-right {
flex: none;
width: 100%;
padding: 0;
}

.career-button-container {
margin: 1rem 0;
}
.form-group {
flex-direction: column;
}

}
/* Responsive Menu Styles */
.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: rgb(0,128,128);
}

/* Side Dashboard Styles */
.side-dashboard {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgb(113, 123, 123);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 1000;
}

.side-dashboard ul {
    list-style: none;
    padding: 0;
}

.side-dashboard ul li {
    padding: 15px 30px;
}

.side-dashboard  a {
    color: rgb(244, 209, 143);
    text-decoration: none;
    font-size: 20px;
    padding: 15px 30px;
}
.side-dashboard .dropdown2{
    color:rgb(113, 123, 123) ;
    margin: 1rem;
}
.side-dashboard a:hover {
    color: rgb(13, 0, 128);
}

.side-dashboard .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
    color: white;
}

/* Responsive Breakpoint */
@media screen and (max-width: 768px) {
    .center-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .contact-button {
        margin-right: 10px;
    }
}
