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;
}





/* ✈️ 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);
    }
}

/* SECTION */
.partners {
    padding: 70px 20px;
    text-align: center;
}

/* GRID */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.partner-card {
    background: #2f3437;   /* same theme */
    color: white;
    padding: 35px 25px;
    border-radius: 14px;

    /* 🔥 subtle premium shadow */
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    /* smooth animation */
    transition: all 0.35s ease;
    position: relative;
}



/* 🔹 GOLD ACCENT LINE (top) */
.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: gold;
    opacity: 0.8;
}

/* LOGO */
.partner-card img {
    width: 100px;
    margin-bottom: 18px;
    transition: 0.3s;
}

/* TEXT */
.partner-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.partner-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    
}

/* 🔥 HOVER (premium but subtle) */
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* logo slight zoom */
.partner-card:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        text-align: center;
    }
}

.section-title {
     font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
}

.partner-card img {
    background: white;
    padding: 8px;
    border-radius: 8px;
}



/* MOBILE */
@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}





/* 🔹 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) {
    .partner-grid {
        grid-template-columns: 1fr;
    }

    
}

@media (max-width: 768px) {
    .section-title {
        font-size: 22px !important;
    }
}

@media (max-width: 768px) {


.content-wrapper h1 {
    font-size: 25px;
}

.content-wrapper h2 {
    font-size: 15px;
}

.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;
}



    
}

