/* TOP SCROLL BUTTON */

#topscrollbutton 
{
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border:none; /* Remove borders */
outline: none; /* Remove outline */
background-color: rgb(105,209,228); /* Set a background color */
color: rgb(0, 0, 0); /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 40px; /* Increase font size */
}

#topscrollbutton:hover {
background-color: rgb(0, 0, 0); /* Add a dark-grey background on hover */
color: white;
}

@media (max-width: 768px) {
#topscrollbutton  {
font-size: 20px; /* Increase font size */
padding: 12px; /* Some padding */
}
}

@media (max-width: 480px) {
#topscrollbutton {
font-size: 10px; /* Increase font size */
padding: 10px; /* Some padding */

}
}
/* Round Arrow */


@media (max-width: 768px) {
.arrow a img {
transform: scaleX(0.75) scaleY(0.75); /* Increase/decrease size */
}
}

@media (max-width: 480px) {
.arrow a img {
transform: scaleX(0.5) scaleY(0.5); /* Increase/decrease size */
}
}

/* General Navbar Styling */
.navbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff; /* Pure white for a clean look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* menutle shadow */
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease; /* Smooth transition for effects */
}

.navbar img {
    width: 120px; /* Slightly larger for modern design */
    transition: transform 0.3s ease;
}

.navbar img:hover {
    transform: scale(1.1); /* Subtle zoom effect on hover */
}

.navbar-links {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: max-height 0.3s ease;
}

.navbar-links a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    color: #1151a5; /* Professional blue */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-links a:hover {
    background-color: #e5f3fa; /* Light blue hover effect */
    color: #000000; /* Black text for better contrast */
}

/* Hamburger Menu for Small Screens */
.hamburger-menu {
    display: none;
    font-size: 50px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1151a5;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: rotate(90deg); /* Fun rotation on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar img {
        width: 100px;
    }
    .navbar-links a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: #69d1e4; /* Light blue background for mobile dropdown */
        padding: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
    }
    
     .navbar-links a {
        font-size: 1.25rem;
        padding: 8px 12px;
    }

    .navbar-links.show {
        display: flex;
    }

    .hamburger-menu {
        display: block;
    }
}

/* Dropdown Styles */
.dropdown {
position: relative;
}

.dropdown:hover .dropdown-menu {
display: block;
opacity: 1;
transform: translateY(0);

}

.dropdown-menu {
display: none;
position: absolute;
width: 275px;
top: 120%; /* Below parent link */
left: 0;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 5px;
opacity: 0;
transform: translateY(-10px);
transition: all 0.3s ease;
}

.dropdown-menu a {
display: block;
padding: 10px 15px;
color: #333;
text-decoration: none;
font-size: 0.9rem;
border-bottom: 1px solid #f1f1f1; /* Separator */
}

.dropdown-menu a:hover {

background-color: #69d1e4;
}

/* Submenu Styles */
.submenu {
position: relative;
width: 275px;
background-color: #ffffff;
}

.submenu:hover .submenu-menu {
display: block;
opacity: 1;
transform: translateY(0);
}

.submenu-menu {
display: none;
position: absolute;
width: 275px;
top: 0;
left: 100%; /* Align to the right of parent menu */
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 5px;
opacity: 0;
transform: translateY(-10px);
transition: all 0.3s ease;
}

.submenu-menu a {
    font-size: 13px;
display: block;
padding: 10px 15px;
color: #333;
text-decoration: none;
}

.submenu-menu a:hover {
    
background-color: #69d1e4;
}

/* Responsive Dropdown and Submenu Adjustments */
@media (max-width: 768px) {
.dropdown-menu, .submenu-menu {
position: relative;
width: 100%;
left: 0;
top: 0;
box-shadow: none;
transform: translateY(0);
opacity: 1;
}

.dropdown-menu a, .submenu-menu a {
font-size: 0.8rem;
padding: 8px;
}
.submenu-menu a {
display: none;
}
}



/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 82vh;
    margin-top: 70px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(8, 44, 90);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(8, 44, 90);
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(246, 249, 251, 0.5);
    width: 90%; /* Ensures it adjusts on smaller screens */
    max-width: 500px; /* Prevents the overlay from becoming too large */
}

.hero-overlay h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.4;
    color: rgb(8, 44, 90);
}

.hero-overlay h2 {
    font-size: 1rem;
    line-height: 1.4;
    color: rgb(34, 89, 155);
}

.hero-overlay h3 {
    margin-top: 20px; /* Adjusted for consistency */
    line-height: 1.4;
    color: rgb(34, 89, 155);
}

.hero-main1 {
    width: 100px;
    height: auto;
    margin-top: 10px;
}

/* Arrows for navigation */
.hero-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 10px);
    }
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero {
        margin-top: 0px;
        height: 98vh;
        width: 98vw;
    }
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .hero-overlay h2 {
        font-size: 1.5rem;
    }
    .hero-overlay h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0px;
        height: 85vh;
        width: 100vw;
        background-size: cover;
        background-position: center;
       
    }
    .hero-overlay {
        padding: 15px;
        background-color: rgba(246, 249, 251, 0.9);
        
    }
    .hero-overlay h1 {
        font-size: 1.5rem;
    }
    .hero-overlay h2 {
        font-size: 1rem;
    }
    .hero-overlay h3 {
        font-size: 0.8rem;
    }
    .hero-main1 {
        display: none;
    }
    .hero-arrow {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 0px;
        height: 85vh;
        width: 100vw;
        background-size: cover;
        background-position: center;
    }
    .hero-overlay {
        padding: 10px;
        background-color: rgba(246, 249, 251, 0.9);
    }
    .hero-overlay h1 {
        font-size: 1.2rem;
    }
    .hero-overlay h2 {
        font-size: 1rem;
    }
    .hero-overlay h3 {
        font-size: 0.8rem;
    }
    .hero-arrow {
        font-size: 0.8rem;
    }
}



.vision-mission-container {
/* Ensures a consistent gap */
margin-top: 30px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 100px; /* Spacing between cards */
padding: 10px;/* Spacing between containers */
background-color: #ffffff;
}

/* Cards within Vision-Mission */
.image-card-1 {
margin-top: 5px;
text-align: center;
background-color: #ffffff; /* Card background */
border-radius: 15px;
box-shadow: 0 4px 6px rgba(4, 240, 240, 0.1);
max-width: 700px;
flex: 1 1 300px; /* Flexible width for responsiveness */
height: auto;


/* text-align: center;
background-color: #ffffff;  Card background 
border-radius: 8px;
box-shadow: 0 4px 6px rgba(1, 97, 97, 0.2);
padding: 20px;
max-width: 450px; /* Adjust card width 
flex: 1 1 300px; /* Flexible width for responsiveness 
height: auto;*/
}

.image-card-1 img {
max-width: 100%;
height: 400px;
border-bottom-left-radius: 20px;
border-top-right-radius: 20px;
}

.image-card-1 p {
margin-top: 10px;
font-size: 1rem;
color: #000000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.vision-mission-container {
margin-left: 10px;
width: 100%;
gap: 30px; /* Reduce gap for smaller devices */

}

.image-card-1 p {
font-size: 0.9rem;
color: #000000;
}

.image-card-1 {
padding: 15px;
max-width: 300px;
border-radius: 30px;
}
.image-card-1 img {
max-width: 100%;
height: 300px;

}
}

@media (max-width: 480px) {
.vision-mission-container {
gap: 20px;
}

.image-card-1 {
padding: 10px;
max-width: 100%;
}
.image-card-1 img {
max-width: 100%;
height: 250px;

}
}

/* Why choose us */

.Why-choose-us {
position: relative;
margin-top: 30px;
display: flex;
flex-direction: row;
padding: 50px;
max-width: 99vw;
color: rgb(17, 81, 165);
background-color:rgb(249, 251, 252);
box-sizing: border-box;
display: flex;
}

/* Why choose us & arrow in column */
.Why-choose-us h1 {
position: relative;
display: flex;
text-align: left;
font-weight: normal;
font-size: 2rem;
margin: 0 0 20px 0;
}

@media (max-width: 768px) {

.Why-choose-us {
font-size: 1rem;
position: relative;
display: flex;
flex-direction: row;
padding: 20px;
max-width: 100vw;
color: rgb(17, 81, 165);
background-color: #f1f1f1;
box-sizing: border-box;
display: flex; 

}

.Why-choose-us h1 {
font-size: 1.5rem;
}


}

@media (max-width: 480px) {
.Why-choose-us h1 {
font-size: 1.25rem;
}
}

.Why-choose-us-1 {
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 20px;
background-color:rgb(249, 251, 252);
}

.text-content {
flex: 1; /* Allows text to take available space */
padding-right: 20px; /* Space between text and image */

}

.text-content h2{
flex: 1; /* Allows text to take available space */
padding-right: 20px; /* Space between text and image */
font-weight: normal;
font-size: 2rem;
}

.image-content {
flex: 1; /* Allows image to take available space */
}

.choose-img {
max-width: 100%;
height: auto; /* Maintain aspect ratio */
border-top-left-radius: 20px;
border-bottom-right-radius: 20px;
}

/*ul {
list-style-type: none; /* Remove default bullets 
padding: 0; /* Remove default padding 
}*/

li {
margin-bottom: 10px; /* Spacing between list items */
}

/* Responsive adjustments */
@media (max-width: 768px) {
.Why-choose-us-1 {
flex-direction: column; /* Stack elements vertically on small screens */
text-align: justify; /* Center text on smaller screens */
}

.text-content {
padding-right: 0; /* Remove right padding in mobile view */
margin-bottom: 20px; /* Add space below text content */
}

.text-content h2{
font-weight: normal;
font-size: 1.5rem;
}

}




/* Services Styling */
.main-container-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    padding: 60px;
    background-color: #ffffff;
    text-align: left;
    gap: 40px;
    box-sizing: border-box;
}

.title h1 {
    font-size: 36px;
    color:rgb(17, 81, 165);
    margin: 0;
    font-weight: normal;
}

.container-services {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    color: rgb(17, 81, 0160);
    background-color: #ffffff;
}

.image-card-services {
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    max-width: 400px;
    max-height: 300px;
    flex: 1 1 calc(33.33% - 20px);
    box-sizing: border-box;/*add padding below the card*/
    box-shadow: 0 0 10px rgba(4, 240, 240, 0.5);
    color: rgb(17, 81, 0160); 
}

.image-card-services img {
    border-radius: 10px;
}

.image-card-services p {
    margin-top: 10px;
    font-size: 18px;
    color: #000000;
    font-weight: normal;
}

.image-card-services a {
    text-decoration: none;
    color: inherit;
}

/*.image-card-services a:hover {
    text-decoration: underline;
    color: #0077cc;
}*/

.image-card-services :hover {
    background-color: rgb(105, 209, 228,0.5);
}

.final {
    margin-left: 50px;
    text-align: center;
    color: #000000;
    
}

.final h1 {
    font-size: 20px;
    margin-bottom: 10px;
    
    
}

.final a {
    
    align-items:center;
    font-size: 20px;
    margin-bottom: 10px;
    
}

@media (max-width: 768px) {
    .image-card-services {
        flex: 1 1 calc(50% - 20px);
    }

    .title h1 {
        font-size: 28px;
        color: rgb(17, 81, 0160);
    }
}

@media (max-width: 480px) {
    .image-card-services {
        flex: 1 1 100%;
    }

    .title h1 {
        font-size: 24px;
        color: rgb(17, 81, 0160);
    }

    .final h1 {
        font-size: 16px;
    }

    .final a {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Slideshow container */

.expertise-container {
position: relative;
max-width:100vw; /* Updated max-width */
max-height: auto;
margin: auto;
margin-top: -25px;
font-size: 12px;
background-color: #ffffff;;

}
.slideshow-container {
padding-top: 15px;
max-width:60vw; /* Updated max-width */
position: relative;
margin: auto;
font-size: 12px;
}
    * {box-sizing: border-box;}
body {font-family: Verdana, sans-serif; margin: 0;}
.mySlides {display: none;}
img {vertical-align: middle; width: 100%;}



/* Prev & Next Buttons outside the container */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 12px;
color: white;
font-weight: bold;
font-size: 25px;
user-select: none;
border-radius: 8px;
background: linear-gradient(145deg, #000000, #3a0404);
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), -4px -4px 8px rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;

z-index: 2;
}

.prev {left: -40px;} /* Buttons positioned outside */
.next {right: -40px;}

.prev:hover, .next:hover {
background: linear-gradient(145deg, #444, #e2b7b7);
box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(255, 255, 255, 0.1);
transform: scale(1.05);
}

.prev:active, .next:active {
box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.6), inset -4px -4px 8px rgba(255, 255, 255, 0.2);
transform: scale(0.95);
}

/* Caption text 
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}

/* Number text (1/3 etc) 
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}*/

/* Dots with 3D effect */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 4px;
background: linear-gradient(145deg, #444, #dd6363);
border-radius: 50%;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), -2px -2px 5px rgba(255, 255, 255, 0.8);
}

.active, .dot:hover {
background: linear-gradient(145deg, #717171, #555);
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5), -2px -2px 5px rgba(255, 255, 255, 0.6);
transform: scale(1.1);
}

/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 1.5s;
}

@keyframes fade {
from {opacity: .4;} 
to {opacity: 1;}
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
.slideshow-container {max-width: 80%;} /* Scale down on tablets */
.prev, .next {
display: none;

}
.text {font-size: 13px;}
.dot {height: 10px; width: 10px;}
}

@media screen and (max-width: 480px) {
.prev, .next {
display: none;
}
.text {font-size: 12px;}
.dot {height: 8px; width: 8px;}
}


/* Statistics Section Styling */
.statistics-section {
position: relative;
margin: 50px auto;
padding: 20px;
border-radius: 10px;
display: flex;
flex-direction: row; /* Horizontal layout by default */
justify-content: space-around; /* Distribute items evenly */
align-items: center; /* Center items vertically */
gap: 20px;
max-width: 90%; /* Limit width for larger screens */
box-sizing: border-box;
box-shadow: 0 0 10px rgba(4, 240, 240, 0.5);
transition: all 0.1s ease-in-out; /* Smooth layout change */
/* background-color: #007BFF;*/
}

/* Individual Statistics Item */
.stat-item {
text-align: center;
flex: 1 1 200px; /* Responsive sizing */
min-width: 150px; /* Prevent items from becoming too narrow */
padding: 20px;
border-radius: 10px;


}

.stat-item h2 {
font-size: 2.5rem;
margin-bottom: 10px;
color: rgb(17, 81, 165);
}

.stat-item p {
font-size: 1.5rem;
color: rgb(17, 81, 165);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
.statistics-section {
flex-direction: column; /* Stack items vertically */
align-items: center; /* Center items in a column */
width:200px;
}

.stat-item {

width: 200px; /* Prevent items from being overly wide */
}
.stat-item p {
font-size: 0.8rem;
}
}

@media (max-width: 480px) {
.stat-item {
padding: 15px; /* Reduce padding for mobile screens */
}

.stat-item h2 {
font-size: 2rem; /* Adjust font size for small screens */
}

.stat-item p {
font-size: 1.2rem;
}
}



/* Flip-card */

.flip-card-container {
position: relative;
margin-top:40px;
display: flex;
flex-wrap: wrap; /* Allows cards to wrap to the next line */
gap: 50px; /* Default gap */
justify-content: center; /* Center cards horizontally */
background-color: rgb(255, 255, 255);
}

.flip-card {
background-color: transparent;
background-color: #ffffff; /* Card background */
box-sizing: border-box;
box-shadow: 0 0 10px rgba(4, 240, 240, 0.5);
/*box-shadow: 0 4px 6px rgba(4, 240, 240, 0.1);*/
width: 250px;
height: 300px;
perspective: 1000px; /* For the 3D effect */
}

.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.6s;
text-align: center;
}

.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
display: flex;
justify-content: center;
align-items: center;

}

.flip-card-front {
background-color: rgb(255, 255, 255);
color: rgb(17,81,165);
text-align:center;
display: flex;
flex-wrap: wrap;
}

.flip-card-back {
background-color: #f1f1f1;
transform: rotateY(180deg);
color: rgb(17,81,165);
text-align:center;
display: flex;
flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
.card-container {
gap: 15px; /* Reduce gap for medium screens */
}

.flip-card {
width: 200px; /* Reduce card width for medium screens */
height: 260px;
}
}

@media (max-width: 768px) {
.flip-card {
width: 180px; /* Smaller cards for smaller screens */
height: 240px;
}
}

@media (max-width: 480px) {
.card-container {
flex-direction: column; /* Stack cards vertically */
align-items: center;
gap: 10px; /* Further reduce gap */
}

.flip-card {
width: 90%; /* Use most of the screen width */
height: auto; /* Auto height to maintain aspect ratio */
}
}

.about-overlay {
    position: absolute;
    height: auto;
    width: auto;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(8, 44, 90);
    padding: 20px;
    border-radius: 5px;
    background-color:rgba(246, 249, 251, 0.5) ;
    }
    
    
    .about-overlay h1 {
    margin-bottom: 10px;
    font-weight: normal;
    line-height: 1.4;
    color: rgb(8, 44, 90);
    
    }
    
    .about-overlay h2 {
    font-size: 1rem;
    line-height: 1.4;
    color: rgb(34, 89, 155);
    }
    
    .about-overlay h3 {
    margin-top: 380px;
    
    line-height: 1.4;
    color: rgb(34, 89, 155);
    }
    
    .about-main1 {
    width: 100px;
    height: auto;
    margin-top: 10px;
    }
    
    /* Arrows for navigation */
    .about-arrow {
    position: absolute;
    margin-top: -30PX;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.1rem;
    animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
    0%, 100% {
    transform: translate(-50%, 0);
    }
    50% {
    transform: translate(-50%, 10px);
    }
    }
    
    /* Responsive about Section */
    @media (max-width: 1024px) {
    .about {
    margin-top: 0px;
    height: auto;
    }
    .about-overlay h1 {
    font-size: 2rem;
    }
    .about-overlay h2 {
    font-size: 1.5rem;
    }
    .about-overlay h3 {
    font-size: 1.2rem;
    }
    }
    
    @media (max-width: 768px) {
    .about {
    margin-top: 0px;
    height: auto;
    padding: 0px 20px;
    }
    .about-overlay {
    margin-top: 0px;
    padding: 15px;
    }
    .about-overlay h1 {
    font-size: 1.5rem;
    }
    .about-overlay h2 {
    font-size: 1rem;
    }
    .about-overlay h3 {
    font-size: 0.8rem;
    }
    .about-main1 {
    display: none;
    }
    .about-arrow {
    font-size: 1rem;
    }
    }
    
    @media (max-width: 480px) {
    .about {
    margin-top: 0px;
    height: auto;
    padding: 0px 20px;
    }
    .about-overlay {
    margin-top: 0px;
    padding: 10px;
    }
    .about-overlay h1 {
    font-size: 1rem;
    }
    .about-overlay h2 {
    font-size: 0.8rem;
    }
    .about-arrow {
    font-size: 0.8rem;
    }
    }

/* Contact Us Section */
.contact-section {
    margin-top: 20px;
    background:white;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(4, 240, 240, 0.5);
    padding: 60px 20px;
    color: #000000;
    text-align: center;
    width: 700px;
    margin-left: 375px;
    border-radius: 10px;
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Form Section */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 95%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #000000;
}

textarea {
    resize: none;
}

.btn {
    padding: 12px 20px;
    background-color: rgb(17, 81, 165);
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 50%;
    margin-left: 150px;
}

.btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .contact-section {
    padding: 60px 20px;
    width: 80vw;
    margin-left: 20px;
}

.btn {
    margin-left:85px;
}
}     



.founder-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px auto;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* founder's Picture */
.founder-picture {
    flex: 1 1 300px; /* Flex-grow: 1, Flex-shrink: 1, Basis: 300px */
    max-width: 300px;
    text-align: center;
    padding: 20px;
   
}

.founder-picture img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* founder's Words */
.founder-words {
    flex: 2 1 500px; /* Flex-grow: 2, Flex-shrink: 1, Basis: 500px */
    padding: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.founder-words h1 {
    margin: 0 0 15px;
    font-size: 1.5rem;
    color: #0d0a62;
}

.founder-words p {
    margin: 0;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .founder-words {
        font-size: 1rem;
    }

    .founder-picture img {
        max-width: 200px;
    }
}

/*aboutus passage*/

.aboutus{
text-align: center;
font-size: 1.25rem;
font-weight:normal;
padding: 50px;
padding-left: 100px;
padding-right: 100px;
text-align: justify;
background-color:rgb(249, 251, 252);
}
@media (max-width: 768px) {

.aboutus {
font-size: 1rem;
padding: 10px;

}

}

.roadmap-container {
    font-size: 1rem;
    text-align: center;
             
}


.section-title {
    text-align: center;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 40px;
    font-weight: normal;
}


/* Timeline/Roadmap */
.roadmap {
    position: relative;            
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 29.5%;
    width: 6px;
    background:  #000306;
    border-radius: 3px;
    z-index: 1;
}

.milestone {
    position: relative;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.milestone:nth-child(odd) {
    left: 0;
    text-align: right;
}

.milestone:nth-child(even) {
    left: 50%;
}

.milestone .content {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
    max-width: 80%;
}

.milestone .content h3 {
    margin: 0;
    font-size: 1.5rem;
    color: rgb(17, 81, 165);
}

.milestone .content p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.milestone::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: rgb(17, 81, 165);
    border: 4px solid #ffffff;
    border-radius: 50%;
    z-index: 2;
}

.milestone:nth-child(odd)::before {
    right: -10px;
}

.milestone:nth-child(even)::before {
    left: -10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .roadmap::before {
        left: 10%;
        display: none;
    }

    .milestone {
        width: 100%;
        padding-left: 40px;
        text-align: center;
    }

    .milestone:nth-child(even) {
        left: 0;
        text-align: left;
        padding-left: 40px;
    }

    .milestone .content {
        max-width: 90%;
    }

    .milestone:nth-child(odd)::before, .milestone:nth-child(even)::before {
        left: -10px;
    }

.roadmap-container img {
    display: none;
    }
}


/* TEAM members */ 
h3 {
    color: rgb(17, 81, 165);
    text-align: center;
    margin-top: 75px;
}

 

    .hear {
        margin-left: 50px;
        text-align: center;
        color: #000000;
        
    }

    .hear h1 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: normal;
        
    }

    .hear a {
        
        align-items:center;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    @media (max-width: 768px) {
        .image-card-services {
            flex: 1 1 calc(50% - 20px);
        }

        .title h1 {
            font-size: 28px;
            color: rgb(17, 81, 0160);
        }
    }

    @media (max-width: 480px) {
        .image-card-services {
            flex: 1 1 100%;
        }

        .title h1 {
            font-size: 24px;
            color: rgb(17, 81, 0160);
        }

        .hear h1 {
            font-size: 16px;
        }

        .hear a {
            font-size: 16px;
            padding: 8px 16px;
        }
    }

/* FOOTER SECTION */
.contact-info {
margin-top: 50px;
max-width: 99vw;
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color: rgb(3, 5, 87);
gap: 30px;
padding: 20px;
}

.contact-item {
flex: 1 1 calc(33.33% - 40px); /* 3 items per row on larger screens */
margin: 10px;
padding: 20px;
background-color:  rgb(255, 255, 255);
color: rgb(3, 5, 87);

border-top-left-radius: 20px;
border-bottom-right-radius: 20px;
transition: box-shadow 0.3s;
text-align: center; /* Center content */
}

.contact-item:hover {
box-shadow: 0 8px 12px rgba(6, 101, 104, 0.8);
}

.contact-item h3 {
color:  rgb(3, 5, 87);
margin-bottom: 10px;
}

.contact-item p {
margin: 10px 0;
color: rgb(3, 5, 87);
}

.contact-item a {
color:rgb(3, 5, 87);
text-decoration: none;
}

.contact-item a:hover {
text-decoration: underline;
}
.quick-links {
margin-left: 100px;
 /* Aligns quick links to the left */
margin-top: auto; /* Pushes quick links to the bottom */
margin-bottom: 20px; /* Space below quick links */

}

.quick-links h3 {
margin-bottom: 10px;
color: #ffffff;
text-align: left;
}

.quick-links a {
display: block; /* Stacks links vertically */
margin-bottom: 10px; /* Adds space between links */
color: #ffffff;
text-decoration: none;
 
}

/* Social Icons Styling */
.social-icons {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
font-size: 1.5rem;
max-width: 99vw;

}

.social-icons a {
color: rgb(255, 255, 255);
text-decoration: none;
transition: color 0.3s;
}

.social-icons a:hover {
color: rgb(105,209,228);
}

/* Copyright */
.Copyright {
text-align: center;
font-size: 0.8rem;
color: #ffffff;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
.contact-item {
flex: 1 1 calc(50% - 20px); /* 2 items per row on tablets */
}

.social-icons {
gap: 15px;
font-size: 1.2rem;
}
}

@media (max-width: 480px) {
.contact-item {
flex: 1 1 100%; /* Full width on smaller screens */
}

.contact-section h1 {
font-size: 1.5rem;
}

.contact-section p {
font-size: 0.9rem;
}
}

/* Main container for clients */
 .main-container-services {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 99vw;
            height: auto;
            background-color: #ffffff;
            padding: 40px 20px;
            box-sizing: border-box;
            gap: 40px;
        }

        /* Title section */
        .title h1 {
            font-size: 36px;
            color: #333;
            margin: 0;
            text-align: center;
            animation: fadeIn 2s ease-in-out;
        }

        /* Image cards container */
        .container-services {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            width: 100%;
        }

        /* Individual image card */
        .image-card {
            text-align: center;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 20px;
            max-width: 320px;
            flex: 1 1 calc(33.33% - 40px);
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: scaleIn 4s infinite ease-in-out;
        }

        .image-card img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            animation: slideUp 3s infinite ease-in-out;
        }

        .image-card p {
            margin-top: 10px;
            font-size: 18px;
            color: #333;
        }

        /* Final call-to-action section */
        .final {
            text-align: center;
            color: #333;
            
        }

        .final h1 {
            font-size: 20px;
            margin: 20px 0;
        }

        .final a.cta {
            text-decoration: none;
            font-size: 16px;
            padding: 10px 20px;
            background-color: #ff3300;
            color: white;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .final a.cta:hover {
            background-color: #cc2900;
        }

        /* Animations */
        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes slideUp {
            0% {
                transform: translateY(20px);
                opacity: 0;
            }
            50% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(20px);
                opacity: 0;
            }
        } 

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .image-card {
                flex: 1 1 calc(50% - 20px);
            }
        }

        @media (max-width: 480px) {
            .image-card {
                flex: 1 1 100%;
            }
        }
        
