body {
    margin: 0;
	overflow-x: hidden;
	font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-style: normal;

}

html {
    scroll-behavior: smooth;
}

.cossette-texte-regular {
  font-family: "Cossette Texte", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.cossette-texte-bold {
  font-family: "Cossette Texte", sans-serif;
  font-weight: 700;
  font-style: normal;
}




/* 🔹 HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); /* light shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    
}

.logo {
    max-width: 160px;   /* desktop साठी size */
    height: auto;
    display: block;

}


.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.nav a:hover {
    color: rgb(247, 176, 48);
}

/* 🔹 MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.main-container {
    padding: 60px 20px;
    height: auto;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}


.highlight {
    color: rgb(247, 176, 48);
}

/*  preloader  */

/* ✈️ PRELOADER FULL SCREEN */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #f7b030);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
}

/* ✈️ PLANE ANIMATION */
#plane {
    width: 100px;
    position: absolute;
    left: -120px;
    animation: flyPlane 1.3s linear infinite;
}


#plane::after {
    content: "";
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: white;
    opacity: 0.5;
}




.about-page {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.about-page {
    background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

.about-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 34px;
}

/* card */
.person-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

/* hover effect */
.person-card:hover {
    transform: translateY(-5px);
}

.person-card:hover {
    box-shadow: 0 10px 30px rgba(28, 61, 110, 0.3);
}

/* image */
.person-img img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}

/* vertical line */
.person-divider {
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, #0a1a2f, #1c3d6e);
}

/* info */
.person-info {
    flex: 1;
}

.person-info h2 {
    margin-bottom: 5px;
}

.role {
    color: #1c3d6e;
    font-weight: 600;
    margin-bottom: 10px;
    
    
    
}

.person-info p {
    line-height: 1.7;
}






/* ✈️ KEYFRAMES */
@keyframes flyPlane {
    0% {
        left: -120px;
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        left: 110%;
        transform: translateY(0) rotate(-2deg);
    }
}


/* 🔹 FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #000000;
    color: white;
}

.footer a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
}

.footer a:hover {
    
    color: #f7b030;
}




/* 🔹 RESPONSIVE */


@media (max-width: 768px) {

    .person-card {
        flex-direction: column;
        text-align: center;
    }

    .person-divider {
        width: 60px;
        height: 2px;
    }

    .person-img img {
        width: 140px;
        height: 140px;
    }

    p{
        font-size:11px;
        hyphens: auto;
    }
}




@media (max-width: 768px) {




.footer-left a {
    font-size: 12px;
    
}
.footer-right {
    font-size: 12px;
    
}

}








@media (max-width: 768px) {
	

    html, body {
        overflow-x: hidden;
        
    }

    


    @media (max-width: 768px) {
    .logo {
         max-width: 50%;
        height: 100%;
    }
}
	
    .nav {
    position: fixed;
    top: 100px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 55%;

    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.nav.active {
    transform: translateX(0);
}

.menu-toggle {
        display: block;
    }
	
	.nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}



    
}

