* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ToucheBold";
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-image: url(Background.png);
    background-size: cover;
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
}

a {
    color: #4d9ed6;
}

iframe {
    display:block; 
    margin: 0 auto; 
    width: 60%; 
    height: 25vw; 
    border-color: transparent;
    padding: 1vw;
}

.container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    box-sizing: border-box;
}

.title {
    font-size: 7vw;
    font-weight: bold;
    margin-bottom: 2.5vw;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.3s;
}

.description {
    font-size: 4vw;
    margin-bottom: 3vw;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.6s;
}

.highlight {
    color: #4d9ed6;
}

.quote {
    font-family: "ToucheMediumItalic";
    font-size: 1.5vw;
    margin-bottom: 3vw;
    line-height: 1.4;
    min-height: 4.2vw;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.9s;
}

p {
    font-family: "ToucheMedium";
}

.content {
    width: 60%;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.forum-container {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 1.2s;
}

.forum-image {
    width: 100%;
    max-width: 600px;
}

.centerdiv {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.title2 {
    margin-bottom: 2vw; 
    font-size: 4vw; 
    text-align:center
}

.subquote{
    text-align:center; 
    font-family: ToucheMediumItalic; 
    font-size: 1.5vw;
}

.socials {
    display: flex;
    align-items: center;
    opacity: 0;
}

.social-item {
    display: flex;
    align-items: center;
    margin-right: 2vw;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: scale(1.05);
}

.social-icon {
    width: 65px;
    max-width: 15vw;
    transition: transform 0.3s ease;
}

.username {
    font-size: 1.2vw;
    font-family: "ToucheMedium";
    margin-left: 0.5vw;
}

.scroll-indicator {
    position: absolute;
    left: 46.5%;
    bottom: 3vw;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-right: 3px solid #4d9ed6;
    border-bottom: 3px solid #4d9ed6;
    transform: rotate(45deg);
}

.section-title {
    font-size: 4vw;
    text-align: center;
    margin-bottom: 7rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.videodesc {
    margin-top: 1vw;
    text-align:center; 
    font-family: ToucheMediumItalic; 
    font-size: 0.8vw;
}

.service-card {
    background: rgba(23, 55, 83, 0.7);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #4d9ed6;
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

.cta-button a {
    display: inline-block;
    background: #4d9ed6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: "ToucheMedium";
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button a:hover {
    background: #3a7ca5;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Font Declarations */
@font-face {
    font-family: "ToucheBold";
    src: url(Touche-Bold-BF642a2ec04a3ad.otf);
}

@font-face {
    font-family: "ToucheMedium";
    src: url(Touche-Medium-BF642a2ebfeab7c.otf)
}

@font-face {
    font-family: "ToucheMediumItalic";
    src: url(Touche-MediumItalic-BF642a2ec043436.otf)
}

@font-face {
    font-family: "TouchLight";
    src: url(Touche-Light-BF642a2ebf8fe16.otf)
}

@font-face {
    font-family: "ToucheLightItalic";
    src: url(Touche-LightItalic-BF642a2ec047438.otf)
}

@media screen and (max-width: 768px) {
    .section {
        min-height: 100vh;
        padding: 5vh 5% 10vh 5%;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    .content {
        width: 100%;
        margin-bottom: 4rem;
    }

    .title {
        font-size: 10vw;
        margin-bottom: 4vh;
    }

    .description {
        font-size: 7vw;
        margin-bottom: 4vh;
        line-height: 1.2;
    }

    .quote {
        font-size: 4vw;
        min-height: 12vw;
        margin-bottom: 4vh;
        line-height: 1.5;
    }

    .socials {
        justify-content: center;
        margin-top: 2vh;
    }

    .social-item {
        margin-right: 5vw;
    }

    .social-icon {
        width: 11vw;
        max-width: 50px;
    }

    .username {
        font-size: 3.5vw;
    }

    .forum-image {
        width: 50vw;
    }
    
    .title2 {
        font-size: 8vw;
        margin-bottom: 4vh;
    }
    
    .subquote {
        font-size: 4vw;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 4vh;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    iframe {
        width: 90% !important;
        height: 50vw !important;
    }
    
    .videodesc {
        font-size: 3vw;
        margin-top: 3vh;
        padding: 0 5%;
    }
     
    .scroll-indicator {
        bottom: 15px;
    }
    
    .arrow-down {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .title {
        font-size: 12vw;
    }
    
    .description {
        font-size: 8vw;
    }
    
    .quote {
        font-size: 4.5vw;
        min-height: 15vw;
    }
    
    .social-icon {
        width: 13vw;
    }
    
    .username {
        font-size: 4vw;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 5vw;
    }
    
    .service-card p {
        font-size: 4vw;
    }
}