/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark-blue);
    background: linear-gradient(135deg, rgba(17,24,40,1) 0%, rgba(2,38,91,1) 25%, rgba(1,44,106,1) 50%, rgba(2,38,91,1) 75%, rgba(17,24,40,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(252, 163, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(252, 163, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(252, 163, 17, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    margin: 0 auto;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo {
    width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(252, 163, 17, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: var(--white);
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleSlideIn 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(45deg, var(--orange), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--orange), #ff6b35);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    transform: translateY(-2px);
}

/* Hero Logos Container */
.hero-logos {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-blue);
}

/* Logo List Styles */
.logo-list {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.logo-list li {
    margin: 0;
}

.logo-link {
    width: 60px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-link:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-logos {
        padding: 1.5rem;
    }
    
    .logo-list {
        gap: 1.5rem;
    }
    
    .logo-link {
        width: 50px;
    }
    
    .logo {
        width: 280px;
        height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.5rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .logo {
        width: 200px;
        height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Hero Section Animations */
@keyframes logoFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(252, 163, 17, 0.3));
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
        filter: drop-shadow(0 0 30px rgba(252, 163, 17, 0.5));
    }
    100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(252, 163, 17, 0.3));
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    /* Colour Scheme */
    --black: #000000;
    --dark-blue: #111828;
    --orange: #fca311;
    --light-grey: #e5e5e5;
    --white: #f9fafc;
}

@font-face {
    font-family: 'Sriracha';
    src: url('Sriracha.woff2') format('woff2');
    font-weight: normal; /* Use 'bold' for bold variants */
    font-style: normal;  /* Use 'italic' for italic variants */
}

/* Global Styles */

* {
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

body {
    font-family: 'Poppins', sans-serif; /* Set the global font */
    min-height: 100vh;
    background-color: var(--light-grey);
    color: var(--black);
    margin: 0;
    padding: 0;
}

h1{
    font-size: 2rem;
    font-weight: 900;
    font-style: normal;
}

h2{
    font-size: 1.5rem;
    font-weight: 700;
    font-style: normal;
}

p{
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
}

.brand-font{
    font-family: 'Sriracha', 'Poppins', sans-serif;
    font-size: 6rem;
    color: var(--orange);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

a {
    color: inherit;
    text-decoration: none;
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
li {
    margin: 0 2rem;
}