
* {
    box-sizing: border-box;
}

body {
     margin: 0;
    padding: 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: 40px 10px;
    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 ;
}


#plane::after {
    content: "";
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: white;
    opacity: 0.5;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto; /* 🔥 center whole grid */
    padding: 30px 15px; /* 🔥 equal spacing */
}

/* card */


.expertise {
    font-size: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-left: 3px solid gold;   /* 🔥 better than left */
    padding-left: 20px;
    border-top: none;
    text-align: left;
    
}

.contact-card {
    background: #2f3437;
    color: white;
    border-radius: 12px;
     box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s;
    width: 100%;
    max-width: 320px;
    padding: 30px 20px; 
    margin: 0 auto;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.role {
    margin-bottom: 15px;
}


.contact-card p {
    margin: 6px 0;
}


/* hover */
.contact-card:hover {
    transform: translateY(-5px);
}

/* role */
.role {
    color: gold;
    margin-bottom: 10px;
}

/* map */
.map-card iframe {
    width: 100%;
    height: 200px;
    border: none;
    margin-top: 15px;
    border-radius: 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);
    }
}




/* QUERY SECTION */
.query-section {
    margin-top: 70px;
    text-align: center;
}

/* FORM BOX */
.query-form {
    background: #2f3437;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

    max-width: 900px;
    margin: auto;
}

/* IFRAME */
.query-form iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}








/* 🔹 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;
}

/* MOBILE */
@media (max-width: 768px) {

    .query-form {
        padding: 10px;
    }

    .query-form iframe {
        height: 750px;
    }
}



/* 🔹 RESPONSIVE */


@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: -20px; /* 🔥 fix edge spacing */
    }

    .contact-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}


@media (max-width: 900px) {
    
    .expertise{
        font-size: 10px;
        text-align: justify;
        hyphens: auto;
        max-width: 260px;
    }

}



@media (max-width: 768px) {


     p {
        font-size: clamp(12px, 1.2vw, 16px);
        line-height: 1.6;
        
    }

    .contact-card {
        text-align: center;
        margin-bottom: 20px;
    }

    .expertise {
        border-left: none;
        border-top: 3px solid gold;  /* 🔥 mobile friendly */
        padding-left: 0;
        padding-top: 10px;
        text-align: justify;
        hyphens: auto;
        max-width: 260px;
    }
}



@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;
}



    
}

