
/* Font family settings */
body {
    font-family: 'Wix Madefor Text', sans-serif;
    color: #444444;
    font-weight: 500;
   
}

h1, h2, h3, h4, h5, h6,
.font-weight-bold,
#new-banner h1,
.team h2,
.team .member h3 {
    font-family: 'Wix Madefor Display', sans-serif;
    color: #333333;
}

/* MoMents code */

.image-cropper {
    width: 60vw;       /* desired width */
    height: 40vw;      /* desired height (adjust as needed) */
    overflow: hidden;  /* hides the overflowing part */
    position: relative;
    margin: 0 auto;    /* center */
}
  
.wingwise-image {
    position: absolute;
    top: -20px;      /* move image up to crop from top */
    left: 0;
    width: 100%;
    height: auto;
}

.my-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.py-1 {
    padding-top: .3rem !important;
    padding-bottom: .3rem !important;
}
h2 {
    margin-top: .5rem;
    margin-bottom: .5rem;
    padding: 0;
}









/* Ensure all headings use DM Sans */
.container h2,
.jumbotron h2,
.feature h2,
#contact h2,
.team-section h2 {
    font-family: 'DM Sans', sans-serif !important;

}

/* Font weight adjustments */
.font-weight-bold {
    font-weight: 700 !important;
}

.wingwise-image {
    width: 100%;
    max-width: 600px;  /* Adjust the max-width value as needed */
    height: auto;
    margin: 0 auto;  /* Centers the image horizontally */
    display: block;  /* Ensures the image behaves like a block element for centering */
}

@media (max-width: 728px) {
    .wingwise-image {
        max-width: 50vw;  /* Adjust max-width for small screens */
    }
}



/*problem area */
.row {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensure all columns stretch to the same height */
}

.blue-box {
    background-color: #A979DD; /* Blue color */
    padding: 20px;
    border-radius: 8px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensures the boxes take the same height */
}

.blue-box h4 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

.blue-box p {
    font-size: 1rem;
    margin-top: 1.5rem;
    flex-grow: 1; /* Ensures the text container grows to fill available space */
}

/* promo video */
.video-container {
    position: relative;
    width: 100%;
    height: auto; /* Set the height as needed */
    overflow: hidden; /* Ensures no content outside of the container is shown */
    border: none; /* Removes any default border */
    border-radius: 15px; /* Adds rounded corners to the container */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Adds a soft shadow effect */
}

video {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the video covers the container without stretching */
    border: none; /* Removes any border that might appear on the video */
    outline: none; /* Removes any outline that might appear on the video */
    border-radius: 15px; /* Adds rounded corners to the video */
}

/* Team Section */

.team-member-developer {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    gap: 20px; /* Space between the items */
    flex-wrap: wrap; /* Wrap the items if they overflow */
}

.team-design {
    text-align: center; /* Center text and content inside each item */
}


/* other changes */

h1{
    padding-top: 12% !important;
    font-size: 4rem !important;
}

.custom-logo-container {
    flex: 0 0 auto !important;
    max-width: 25% !important;
    width: auto !important;
}

.container{
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.list-unstyled{
    padding-left: 10px !important;
}

.team-design img {
    width: 100%;   /* Makes the image responsive */
    max-width: 100%; /* Controls the max size */
    height: auto;   /* Keeps the image's aspect ratio */
}

@media (max-width: 768px) {
    .team-members{
        margin:4rem 0 !important;
    }
    .team-design img {
        width: 100%;   /* Makes the image responsive */
        max-width: 72% !important; /* Controls the max size */
    }
    
}

.team-design a i {
    margin-right: 8px; /* Adjust this value to control the space between the icon and the text */
}
.team-design p{
    margin: 0 !important;
}

/* Mobile Screen */

@media (max-width: 767px) {
    .row .col-md-4 {
        margin-bottom: 20px; /* Add margin between the boxes */
    }
}

/* Add space between the boxes for medium and larger screens */
@media (min-width: 768px) {
    .row .col-md-4 {
        margin-bottom: 0; /* Reset margin for larger screens */
    }
}


.view-proposal-btn {
    color: #333333;
    border: 1.5px solid #333333;
    padding: 8px 16px;
    border-radius: 24px;
    display: inline-block;
    text-decoration: none; /* Removes underline by default */
    transition: background-color 0.3s, color 0.3s;
  }
  
  .view-proposal-btn:hover {
    background-color: #A979DD;
    color: #ffffff;
    border-color: #ffffff;
    text-decoration: none; /* Ensures no underline on hover */
  }

/********** common setting **********/
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

img {
    display: block;
    max-width: 100%;
}

a,
button {
    cursor: pointer;
}

.jumbotron {
    margin-bottom: 0 !important;
}

.atlas-cta {
    border-radius: 22px !important;
    padding: 12px 30px !important;
    font-weight: 700;
    transition: .3s ease-in-out !important;
}

.atlas-cta:hover {
    text-decoration: none;
    transform: translateY(-5px);
}

.atlas-cta-wide {
    width: 100%;
}

.cta-green {
    background: #ffffff;
    color: #333333;
}

.cta-green:hover {
    color: #ffffff;
    background: #8C63C7;
    border-color: #ffffff;
}

.cta-blue {
    background: #A979DD;
    color: #ffffff;
}

.cta-blue:hover {
    color: #ffffff;
    background: #8C63C7;
}

.cta-ghost {
    border: 2px solid #102F8F !important;
    color: #102F8F;
}

.cta-ghost:hover {
    color: #ffffff;
    background: #121a2e;
}

#banner {
    background-size: cover;
}

/* Enhanced Parallax Banner */
#banner {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* Makes the banner full height of viewport */
}


/********** banner **********/
#banner header {
    overflow: hidden;
}

/* #banner header img {
    max-width: 80px;
} */

/********** feature (skew background) **********/
.feature img {
    width: 100%;
    max-width: 480px;
}

#feature-first {
    background: linear-gradient(168deg, #ffffff 55%, #ffffff 0);
}

#feature-last {
    color: #333333;
    background: linear-gradient(168deg, #ffffff 55%, #ffffff 0);
}

/********** price table **********/
#price-table {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

#price-table__premium {
    background: #A979DD;
    color: #ffffff;
    border-radius: 24px;
}

#price-table ul li {
    padding: .5rem;
}

/********** contact **********/
#contact {
    background-size: cover;
    
}

#contact ul li {
    padding: 3px 0;
}

#contact form {
    color: #ffffff;
}

#contact form input,
#contact form textarea {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

/********** copyright **********/
#copyright {
    background: #A979DD;
    padding: .5rem 3rem;
    /* border: solid 1px #102F8F; */
}

#copyright #social-media a {
    width: 40px;
    height: 40px;
    border-radius: 99%;
    background: #ffffff;
    transition: .4s ease;
}

#copyright #social-media a i {
    color: #A979DD;
    font-size: 1.2rem;
    line-height: 40px;
}

#copyright #social-media a:hover {
    background: #A979DD;
}

#copyright #social-media a:hover i {
    color: #ffffff;
}

/********** RWD **********/
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
}



.team-section{
    margin: 1rem;
    display: grid;
    justify-items: center;

    h2{
        font-size: 2.8rem;
        font-weight: 700;
        text-align: center;
    }
}

.team-design{
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    gap: 0.5rem;
    justify-items: center;
    align-items: center;
    margin: 1rem;
}

@media (min-width: 769px){
    .team-members{
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 0.5rem;
        justify-items: center;
        align-items: center;
        margin: 1rem;
    }   
    .team-member-designer{
        display: grid;
        grid-template-columns: 20% 20% 20% 20% 20%;
        gap: 0.5rem;
        justify-items: center;
        align-items: center;
        margin: 1rem;
    }

    .team-member-developer{
        display: grid;
        grid-template-columns: 20% 20% 20% 20%;
        gap: 0.5rem;
        justify-items: center;
        align-items: center;
        margin: 1rem;
    }
}