html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.desktop-header {
    width: 100%;
    height: 10%;
    padding: 0 2% 0 8%;
    border-bottom: 1px solid #9a9a9a;
    box-shadow: 0 6px 6px -6px #727272;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header {
    display: none !important;
}

header a {
    font-size: 18px;
    margin-right: 25px;
    color: #000;
    text-decoration: none;
}
.top-bar a{
    cursor: pointer !important;
    color: #000;
}
.top-bar a:hover{
    color: #ED4249;
}
.top-bar a.active{
    color: #ED4249;
    font-weight: 700;
}

marquee{
    background-color: #7E4E3A;
    color: #fff;
}

.hero {
    width: 100%;
    height: 90%;
    background-color: #ede5db;
}

.hero-content {
    width: 50%;
    height: 100%;
    padding: 5%;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    /* line-height: 50px; */
    color: #343a40 !important;
}

.hero-content a {
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    padding: 0 20px;
    height: 40px;
    width: fit-content;
    border-radius: 2px;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out;
}

.hero-content a:hover {
    color: #fff;
    background-color: #000;
}

.hero-img {
    width: 50%;
    height: 100%;
}

.hero-img img {
    border: 10px solid #fff;
    box-shadow: 0 1px 6px 2px #c4c4c4;
    width: 80%;
}


.about-section {
    background: linear-gradient(135deg, #abbbff, #EDE5DB);
    min-height: 40%;
    position: relative;
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    text-align: justify;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 2px rgba(0, 0, 0, 0.2);
}

.floating-shapes div {
    position: absolute;
    pointer-events: none;
    animation: float 15s infinite linear;
    opacity: 0.2;
}

.shape1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: #000;
    transform: rotate(45deg);
}

.shape2 {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #000;
}

.shape3 {
    bottom: 30%;
    left: 45%;
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(100px, 100px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.title-decoration {
    position: relative;
    display: inline-block;
}

.title-decoration::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: #fdbb2d;
    transition: width 0.3s ease;
}

.title-decoration:hover::after {
    width: 100%;
}

.text-content {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.highlight {
    /* color: #fdbb2d; */
    font-weight: bold;
}

.integrations-section {
    /* background-color: #111111; */
    padding: 4rem 0;
}

.integration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem; */
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.integration-card {
    /* background-color: #1a1a1a; */
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex: 0 0 190px;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #b3b3b3;
    cursor: pointer;
    /* max-width: calc(100% - 2rem);  */
}

.integration-card:hover {
    transform: translateY(-5px);
    /* background-color: #222222; */
    box-shadow: 0 2px 16px 2px rgba(0, 0, 0, 0.3);
}

.integration-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    /* opacity: 0.95; */
    transition: opacity 0.3s ease;
}

.integration-card:hover .integration-logo {
    opacity: 1;
}

.integration-name {
    /* color: #ffffff; */
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

.integration-card:hover .integration-name {
    opacity: 1;
}

.section-title {
    /* color: #ffffff; */
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.subtitle {
    /* color: #999999; */
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-quote {
    height: 30%;
    background-color: rgb(50, 50, 50);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 400;
    font-size: 30px;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.white-shape {
    background: #fff;
}

.home-quote .shape2 {
    top: 0%;
    right: 5%;
}

.team-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    border: 1px solid #c1c1c1;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 16px 2px rgba(0, 0, 0, 0.3);
}

.image-container {
    width: 70%;
    height: 100%;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background-color: #f0f0f0;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transform: translateY(5px);
}

.team-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.team-position {
    margin: 0;
    font-size: 0.9rem;
    color: #718096;
}

.section-title {
    text-align: center;
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #718096;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    width: 100%;
    min-height: 42%;
}

.footer {
    width: 100%;
    padding-left: 3%;
    border-top: 1px solid #bbbbbb;
    /* background-color: red; */
}

.footer>div:first-child {
    width: 10%;
}
.footer>div:nth-child(2) {
    width: 20%;
}
.footer>div:nth-child(3) {
    width: 20%;
}
.footer>div:nth-child(4) {
    width: 25%;
}
.footer>div:last-child {
    width: 30%;
}
.footer-menu {
    padding-top: 20px;
}
.footer-menu ul{
    padding-left: 0;
}
.footer-menu li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-menu a {
    text-decoration: none;
    color: #000;
    cursor: pointer !important;
}

.footer-contact {
    padding-top: 20px;
}

.footer-facebook {
    padding-top: 30px;
}

.social-links {
    width: 90%;
    height: 60px;
    border-top: 1px solid #a4a4a4;
    border-bottom: 1px solid #a4a4a4;
}

.social-links ul {
    width: 100%;
    height: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links ul a {
    font-size: 30px;
}

.bi-twitter {
    color: #1DA1F2;
}

.bi-facebook {
    color: #316FF6;
}

.bi-linkedin {
    color: #0077B5;
}

.bi-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.footer-copyright{
    width: 90%;
    height: 60px;
    border-bottom: 1px solid #a4a4a4;
}

.footer-copyright a{
    color: #000;
    text-decoration: none;
    padding-left: 10px;
}
.footer-copyright a:first-child{
    border-right: 1px solid #000;
    padding-right: 10px;
    padding-left: 0px;
}
.contrapreneur{
    width: 100%;
    align-items: flex-start;
}
.custom-video-wrapper {
    position: relative;
    width: 45%;
    margin: 40px auto;
}
.pdf-wrapper{
    width: 50%;
}
#custom-video {
    width: 100%;
    height: auto;
    display: block;
    background-color: black;
    border: 10px solid #606060;
    border-radius: 3px;
}

/* Hide native controls (in case any appear) */
video::-webkit-media-controls {
    display: none !important;
}

video::-moz-media-controls {
    display: none !important;
}
.pdf-wrapper body{
    background-color: #fff !important;
}
.pdf-wrapper embed{
    background-color: #fff !important;
}
#pdf-download-link{
    display: none;
}
@media (max-width:991px){
    .contrapreneur{
        flex-direction: column;
    }
    .custom-video-wrapper{
        width: 100%;
    }
    .pdf-wrapper{
        display: none;
        width: 100%;
    }
    #pdf-download-link{
        width: 100%;
        display: flex !important;
        justify-content: center;
        margin-bottom: 40px;
    }
    #pdf-download-link a{
        border-radius: 3px;
    }
}