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 SECTION */
.about-section {
    padding: 40px 0;
}

/* container */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* image */
.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* text */
.about-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

/* 🔻 divider */
.divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}


.faq-section {
    padding: 10px 20px;
    margin-top: -10px;
}

.faq-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

/* container */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* item */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* question */
.faq-question {
    font-weight: 600;
    position: relative;
    text-align: left;
}

/* plus icon */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.3s;
}

/* answer */
.faq-answer {
    max-height: 0;
    text-align: left;
    overflow: hidden;
    font-size: 15px;
    color: #555;
    transition: max-height 0.3s ease;
}

/* active */
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.faq-item.active .faq-question::after {
    content: "-";
}

/* hover effect */
.faq-item:hover {
    background: #f7b030;
    padding-left: 10px;
}




/* ✈️ 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;
}



/* service */

.services-section {
    padding: 10px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 700;
}

/* row layout */
.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

/* reverse row */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* text */
.service-text {
    flex: 1;
    margin-top: -30px;
}

.service-text h3 {
    margin-bottom: 10px;
}

.service-text p {
    text-align: justify;
    line-height: 1.7;
}

/* image */
.service-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
}

/* divider reuse */
.divider {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 30px 0;
}


/* 🔹 RESPONSIVE */



@media (max-width: 768px) {

    .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 25px;
}

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
        p {
            font-size: 12px;
        }
    }

    .service-text{
         margin-top: -30px;
    }

    .service-text p {
        
        text-align: left; /* mobile वर justify awkward दिसतो */
        
    }

    .service-image img {
        max-width: 100%;
        margin-top: -30px;
    }

    
  
    
}

@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) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: justify;
        font-size: 12px;
        margin-top: -40px;
    }

    .divider {
    margin-top: -20px;
}
}


@media (max-width: 768px) {
    .faq-title {
        font-size: 25px;
    }

    .faq-question {
        font-size: 16px;
    }
}


@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;
}



    
}

