/* Custom styles for the Inter font and overall aesthetics */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* Light gray background */
    width: 100%;
    height: 100%;
    
    
    
    
}
.navbar{
    background-color: white;
    backdrop-filter: blur(10px);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0px;
    display: flex;
    align-items: center;
    
    left: 2px;
    padding: 5px;
    z-index: 1000;
    border-bottom: solid #f7f7f7 2px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    
    

}
.part1{
    width: 30%;
    display: flex;
    align-items: center;
    
}
.part1 a{
    position: relative;
    right: 0px;
}
.part1 img{
    height: 70px;
    width: 70px;
}
.part1 p{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
    font-weight: 700;
    font-size: 3vw;
}
.part2 a:hover{
    text-decoration: underline;
    
}
.part2{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 40%;
    background-color: #f8f8ff;
    height: 45px;
    border-radius: 20px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}
.part2 a{
    font-size: 1.05vw;
    text-decoration: none;
    color: black;
}
.part3{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.part3 p{
    font-family:  "League Spartan", sans-serif;
    font-size: 3vw;
    font-weight: 700;
    line-height: 0.8;
    

}



/*COLOUR PALLETE*/
.colour_pallete{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pallete{
    background-color: #f8f8ff;
    height:55px;
    width: 60%;
    position: absolute;
    top: 15%;
    border-radius: 20px;
    display: flex;
    position: fixed;
    z-index: 102;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    
}
.color_part1{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.color_part1 p{
    font-size: 0.8vw;
    text-align: center;
    font-family: sans-serif;
    font-weight: 600;
}
.color_part2{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.circle{
    height: 3vw;
    width: 3vw;
    border-radius: 50%;
    background-color: pink;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
}

.big_container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120vh;
    margin: 0;
}
.container {
    background-color: #f8f8ff;
    border-radius: 1rem; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 900px;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative; /* For potential absolute positioning of messages */
}
.drop-area {
    border: 2px dashed #a0aec0; /* Dashed border */
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.drop-area.hover {
    background-color: #f7fafc; /* Lighter background on hover */
}
.button-primary {
    background-color: #4CAF50; /* Green primary button */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.button-primary:hover {
    background-color: #45a049;
}
.range-slider {
    width: 100%;
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    height: 8px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 4px;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.message-box {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #4CAF50;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.message-box.show {
    opacity: 1;
}
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #4CAF50;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*function making*/
/* Styling for the main content area with a subtle shadow */
.container {
  /* ... (your existing Tailwind classes like flex, rounded-lg, etc.) */
  background-color: #ffffff; /* Default background color */
  padding: 2.5rem; /* Add some padding */
  border-radius: 12px;
  /* This is the key for the shadow effect */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease; /* Smooth transition for color change */
}



/* Base styles for the color circles */
.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent; /* This will be the default state */
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.circle:hover {
  transform: scale(1.1);
  border-color: rgba(12, 12, 12, 0.5); /* A subtle white border on hover */
}

/* New class for the active (clicked) state */

.active-circle {
  border:2.5px solid black;
  height: 50px;
  width: 50px;
  
}
/* Specific colors for each circle */
.color1 { background-color: #f8f8ff;  }
.color2 { background-color: #F0FFF0; }
.color3 { background-color: #FFF0F5; }
.color4 { background-color: #FFE5B4; }
.color5 { background-color: #EE82EE; }
/*For Card*/
.card_container{
    height: auto;
    width: 100%;
    
    align-items: center;
    justify-content: center;
   
    
}
.card{
    height: 400px;
    width: 300px;
    background-color: #f8f8ff;
    margin: 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 4px 2px 8px rgba(0, 0, 0, 0.1);
    
    

}
.card:hover{
    box-shadow: 12px 2px 8px rgba(0, 0, 0, 0.1);
}
.card i{
    font-size: 40px;
    
    
}
.card h2{
    font-size: 30px;
    font-weight: 600;
    font-family: "Mozilla Headline", sans-serif;
}
.card div{
    margin-top: 0px;
    display: flex;
    height: 60%;
    width: 100%;
    padding: 20px;
    
    
}
.card div p{
    font-size: 15px;
    line-height: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
.card_container-1{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    
    
    
}
.card_container-2{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 100%;
    height: auto;
}
    
/*Guidelines*/
.guideline{
    background-color: rgb(254, 254, 254);
    margin-top: 20px;
    margin-bottom: 50px;
    width: 100%;
    height: 200px;
    display: flex;
    
}
.guideline1{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guideline1 video{
    height: 100%;
    width: auto;
}
.guideline2{
    width: 60%;
}
.guideline2 h2{
    text-align: center;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 30px;
}
.guideline2 p{
    font-size: 20px;

}




/*base*/
.base{
    height: 50px;
    width: 100%;
    background-color: rgb(0, 0, 31);
    margin-top: 20px;
}


/*media*/
@media (max-width:600px) {
    .pallete{
    background-color: #f8f8ff;
    height:65px;
    width: 40%;
    position: absolute;
    top: 5%;
    border-radius: 20px;
    display: flex;
    position: fixed;
    z-index: 102;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    
    }
    .color_part1 p{
    font-size: 8px;
    text-align: center;
    font-family: sans-serif;
    font-weight: 600;
    }
    .navbar{
        height: 100px;
    }
    .part1 p{
        font-size: 30px;
    }
    .part1 img{
        height: 80px;
        width: 80px;
    }
    .part2{
        display: none;
    }
    .part3{
        display: none;
    }
}


/*About-us page*/
.about_us{
    position: relative;
    top: 20%;
    font-size: 30px;
}