*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0e7e2;

}

::-webkit-scrollbar-thumb {
    background: #006bb6;
    
    border: 2px solid #f0e7e2;
}

::-webkit-scrollbar-thumb:hover {
    background: #004a80;
}

body{
    background-color: #f8eee9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header{
    border-bottom: 2px solid #006bb6;
    background-color: #f8eee9;
    width:100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;    
}
.logo{
    margin-right: 150px;
}
.logo img{
    height:40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a{
    color: #006bb6;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}
.nav-links a:hover{
    color: #004a80;
}

.hamburger{
    display: none;
    font-size: 28px;
    color: #006bb6;
    cursor: pointer;
}

#menu-toggle{
    display: none;
}

@media(max-width: 768px){
    .logo{
        margin-right: 0;
    }
    .hamburger{
        display: block;
    }
    .nav-links{
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #f8eee9;
        border-bottom: 2px solid #006bb6;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        display: none;
    }
    .nav-links li{
        margin: 12px 0;
    }

    #menu-toggle:checked ~ .nav-links{
        display: flex;
    }
}

/*Hero Section Neche hh*/

.hero {
    width: 100%;
    padding: 120px 10% 100px 10%;
    background-image: url('H-banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    max-width: 650px;      
    text-align: left;     
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #003f73;
    line-height: 1.25;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}


@media (max-width: 768px) {
    .hero {
        padding: 80px 6%;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 18px;
    }
}

/*Our story*/

.our-story{
    padding: 80px 10%;
    background-color: whitesmoke;

    min-height: 100vh;;
}

.our-story h1{
    text-align: center;
    font-size: 36px;
    color: #003f73;
    margin-top: 20px;;
    margin-bottom: 60px;
    font-weight: 700;
}


/*Timelien */

.timeline-section{
	background-color: #006bb6;
	min-height: 100vh;
	padding: 100px 15px;
}
.timeline-items{
	max-width: 1000px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.timeline-items::before{
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #006bb6;
	left: calc(50% - 1px);
}
.timeline-item{
	margin-bottom: 40px;
	width: 100%;
	position: relative;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child(odd){
    padding-right: calc(50% + 30px);
	text-align: right;
}
.timeline-item:nth-child(even){
    padding-left: calc(50% + 30px);
}
.timeline-dot{
	height: 16px;
	width: 16px;
	background-color: #eaa023;
	position: absolute;
	left: calc(50% - 8px);
	border-radius: 50%;
	top:10px;
}
.timeline-date{
	font-size: 18px;
	color: #eaa023;
	margin:6px 0 15px;
}
.timeline-content{
    background-color: #006bb6;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
	padding: 30px;

}
.timeline-content h3{
    font-size: 20px;
	color: #ffffff;
	margin:0 0 10px;
	text-transform: capitalize;
	font-weight: 500;
}
.timeline-content p{
    color: #c8c8c8;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
}

@media(max-width: 767px){
	.timeline-items::before{
		left: 7px;
	}
	.timeline-item:nth-child(odd){
		padding-right: 0;
		text-align: left;
	}
	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even){
		padding-left: 37px;
	}
	.timeline-dot{
		left:0;
	}
}

/*Vision-mission neche h*/

.vision-mission{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 80px 10%;
    background-color: white;
}
.vision-mission .v-box{
    width: 45%;
    background-image: url(vm-bg.png);
    background-size: cover;
    background-position: center;
    padding: 30px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);

}
.vision-mission .m-box{
    width: 45%;
    background-image: url(mv-bg.png);
    background-size: cover;
    background-position: center;
    padding: 30px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);

}

.vision-mission h2{
    text-align: center;
    font-size: 28px;
    color: #003f73;
    margin-bottom: 20px;
    font-weight: 700;
}
.vision-mission p{
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}
@media(max-width: 900px){
    .vision-mission{
        flex-direction: column;
        align-items: center;
    }
    .vision-mission .v-box,
    .vision-mission .m-box{
        width: 100%;
        margin-bottom: 30px;
        background-size: cover;
    }
    .vision-mission .m-box{
        margin-bottom: 0;
    }
}
@media(max-width: 600px){
    .vision-mission h2{
        font-size: 24px;
    }
    .vision-mission p{
        font-size: 14px;
    }
}

@media(max-width: 400px){
    .vision-mission{
        padding: 40px 5%;
    }
}

/*about team*/
.about-team {
    padding: 80px 8%;
    background-color: #f4f4f4;
}

.about-team h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #003f73;
    margin-bottom: 60px;
}


.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    justify-content: center;
    align-items: stretch;
}

.feature-item {
    background: #ffffff;
    padding: 35px 25px;

    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature-item i {
    font-size: 40px;
    color: #006bb6;
    margin-bottom: 18px;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #003f73;
}

.feature-item p {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

.feature-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}


.why-inner {
    max-width: 1200px;  
    margin: 0 auto;     
    padding: 0 20px; 
}

.team-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  
    gap: 35px;
}


@media (max-width: 1100px) {
    .team-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .team-features {
        grid-template-columns: 1fr;
    }
}



/*Footer neche h*/


footer {
    background-color: #006bb6;
    color: #f8eee9;
    padding: 3em 0;
}


footer .footer-inner {
    max-width: 1200px;    
    margin: 0 auto;       
    padding: 0 20px;     
}


footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4em;
    margin-bottom: 2em;
}

footer{
    background-color: #006bb6;
    color: #f8eee9;
    align-items: center;
    justify-content: center;
    padding: 1.5em 2em;
}

footer .footer-content{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 5em;
    text-align: left;
}

footer .footer-content .logo{
    text-align: center;
}

footer .footer-content .logo img{
    height: 50px;
}

footer .footer-content .logo p{
    margin-top: -10px;
    font-size: 14px;
    color: #f8eee9;
    font-family:cursive;
}
footer .footer-content .links{
    flex: 1;
}
footer .footer-content .links h3{
    margin-bottom: 1em;
}
footer .footer-content .links ul{
    list-style: none;
    padding: 0;
}
footer .footer-content .links ul li{
    margin-bottom: 10px;
}
footer .footer-content .links ul li a{
    color: #f8eee9;
    text-decoration: none;
}
footer .footer-content .links ul li a:hover{
    text-decoration: underline;
}
footer .footer-content .contact{
    flex: 1;
}
footer .footer-content .contact p{
    margin: 5px 0;
}
footer .footer-content .contact p:last-child{
    margin-bottom: 0;
}
footer .footer-bottom{
    text-align: center;
    margin-top: 2em;
    font-size: 14px;
    border-top: 1px solid #f8eee9;
}
footer .footer-bottom p{
    margin: 0;
}
footer .footer-bottom .social-icons{
    margin-top: 10px;
}
footer .footer-bottom .social-icons a{
    color: #f8eee9;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}

footer .footer-content .contact .label {
    font-weight: 600;
    margin-right: 5px;
}

.footer-content .contact .address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-content .contact .address i {
    font-size: 18px;
    margin-top: 3px; 
}

.footer-content .contact .address span {
    line-height: 1.4;
    display: block;
}

@media screen and (max-width: 900px) {
    footer .footer-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .footer-content .logo{
        margin-bottom: 1em;
    }
    footer .footer-content .links, 
    footer .footer-content .contact{
        flex: none;
        margin-bottom: 1em;
    }
}