@font-face {
    font-family: Vogun;
    src: url('fonts/Vogun-Medium.woff');
}

@font-face {
    font-family: PlusJakartaSans;
    src: url('fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

html.has-scroll-smooth {
  overflow: hidden;
  height: 100%;
}

html.has-scroll-dragging {
  user-select: none;
}

[data-scroll-container] {
  min-height: 100vh;
  overflow: hidden;
}

body {
    font-family: Vogun;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    z-index: 1000;
    width: 100%;
    background-color: #000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 5rem;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 166px;
    height: 36px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 2rem;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-family: PlusJakartaSans;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 5rem);
        background-color: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--banner-bg, url('images/banner1.jpg'));
    -webkit-mask-image: linear-gradient(#000, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(#000, rgba(0, 0, 0, 0));
    background-size: cover;
    background-position: center;
    transform: rotate(-3deg) scale(1.1);
    z-index: -1;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
    transform: rotate(-3deg) scale(1.1);
}

.banner-content {
    position: relative;
    max-width: 1400px;
    margin: 82px auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.banner p {
    font-family: PlusJakartaSans;
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.banner button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 1rem 3rem;
    font-family: Vogun;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.banner button:hover {
    background-color: white;
    color: black;
}

.banner::before {
    transition: background-image 1s ease-in-out;
}

.banner-content h1,
.banner-content p {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}
@media (max-width: 1024px) {
    .banner h1 {
        font-size: 3rem;
    }
    
    .banner p {
        font-size: 1.1rem;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .scrolling-text-container {
        margin-top: -8rem;
    }
    
    .scrolling-text h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2rem;
    }
    
    .banner button {
        padding: 0.8rem 2rem;
    }
    
    .scrolling-text-container {
        margin-top: -5rem;
    }
}
.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scrolling text styles */
.scrolling-text-container {
    position: relative;
    background-color: #FFD700;
    padding: .1rem 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-20deg);
    margin-top: -13rem;
    width: 110%;
    left: -5%;
}

.scrolling-text {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.scrolling-text h2 {
    display: inline-block;
    font-size: 1.8rem;
    color: black;
    margin: 0 3rem;
    position: relative;
    font-weight: 500;
}

.scrolling-text h2:after {
    content: '';
    display: inline-block;
    height: 10px;
    width: 10px;
    background-color: #333;
    border-radius: 50%;
    margin-left: 3rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.scrolling-text h2:last-child:after {
    display: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.assiciated-container {
    height: 100vh;
    text-align: center;
    margin-top: 5rem;
}

.assiciated-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Associated With Section Styles */
.associated-wrapper {
    padding-top: 2rem;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.associated-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.associated-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 500;
}

.logo-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 3rem 0;
}

.logo-scroll-container {
    position: relative;
}

.logo-scroll-container + .logo-scroll-container {
    border-top: 1px dashed rgba(255,255,255,0.3);
    margin-top: 1rem;
    padding-top: 1rem;
    --dash-length: 50px;
    --gap-length: 55px;
}


.logo-scroll-container{
    border-image: repeating-linear-gradient(
        to right,
        #3e3e3e 0 var(--dash-length),
        transparent var(--dash-length) calc(var(--dash-length) + var(--gap-length))
    ) 1;
}

.logo-scroll-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 1rem 0;
}

/* Left to Right Scrolling */
.logo-scroll-ltr {
    display: flex;
    animation: scrollLogosLTR 30s linear infinite;
}

/* Right to Left Scrolling */
.logo-scroll-rtl {
    display: flex;
    animation: scrollLogosRTL 30s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    margin: 0 1rem;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(2);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0) brightness(1);
}

@keyframes scrollLogosLTR {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes scrollLogosRTL {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-item {
        min-width: 100px;
        height: 60px;
    }
    
    .associated-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}
/* Video Section Styles */
.video-section {
    padding-bottom: 5rem;
    background-color: #000;
}

.video-section h2 {
    margin: 2rem 6rem;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1rem;
}

.video-section svg {
    width: 30px;
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #111;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 2;
}

/* .play-button {
    background-color: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    font-family: Vogun;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255,255,255,0.3);
} */

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
}

.unmute-button {
    background-color: rgba(0,0,0,0.5);
    border: 1px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unmute-button:hover {
    background-color: rgba(255,255,255,0.2);
}

.unmute-button.unmuted {
    background-color: rgba(255,255,255,0.2);
}

.unmute-button.unmuted::before {
    content: "🔊";
}
@media (max-width: 768px) {
    .video-section h2 {
        margin: 2rem;
        justify-content: center;
    }
    
    .video-container {
        padding: 0 1rem;
    }
}

/* About Us Section Styles */
.about-section {
    background-image: url('images/bottom-banner.avif');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    color: #fff;
    position: relative;
    margin-top: -50px; /* Pulls the section up to overlap with footer */
    z-index: 1; /* Ensures content stays above footer */
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: -1; 
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-container h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-container p {
    font-family: PlusJakartaSans;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
}
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1rem;
    }
    
    .about-container h2 {
        font-size: 2.5rem;
    }
    
    .about-container p {
        font-size: 1rem;
    }
}

/* Service Page Styles */
.service-hero {
    height: 60vh;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/services/corporate-hero.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.service-hero-content {
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
}

.service-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: rgba(255,255,255,0.8);
}

.white-line {
    width: 100%;
    height: 1px;
    background-color: #fff; 
}

.hero-title {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .service-tagline {
        font-size: 1.2rem;
    }
}

.service-description {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    font-family: PlusJakartaSans;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    text-align: justify;
}

.service-description p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-description {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
}

/* Corporate Grid Layout */
.corporate-grid {
    display: grid;
    grid-template-columns: repeat(6, 167px);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-item h3 {
    position: absolute;
    color: white;
    font-family: Vogun;
    font-weight: 400;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Specific item placements */
.item-1 {
    grid-column: 1 / 4;
    grid-row: 1;
}
.item-2 {
    grid-column: 4 / 6;
    grid-row: 1;
}
.item-3 {
    grid-column: 6;
    grid-row: 1;
}
.item-4 {
    grid-column: 1/3;
    grid-row: 2;
}
.item-5 {
    grid-column: 3;
    grid-row: 2;
}
.item-6 {
    grid-column: 4/7;
    grid-row: 2;
}

/* Text positioning */
.item-1 h3{
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1.1;
}
.item-2 h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    bottom: 20px;
    right: 20px;
    font-size: 1.8rem;
    line-height: 1;
}
.item-3 h3 {
    left: 20px;
    bottom: 20px;
    font-size: 1.6rem;
    line-height: 1;
}
.item-4 h3, .item-5 h3 {
    bottom: 15px;
    left: 15px;
    font-size: 1.4rem;
}
.item-6 h3 {
    bottom: 20px;
    right: 20px;
    text-align: right;
    font-size: 1.8rem;
}
.social-event-1 h3{
    bottom: 40px;
    right: 20px;
    font-size: 1.8rem;
}
.social-event-2 h3{
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
}
.social-event-3 h3{
    bottom: 20px;
    left: 10px;
    line-height: 1;
    font-size: 2rem;
}
.social-event-4 h3{
    bottom: 20px;
    right: 20px;
    line-height: 1;
    font-size: 2rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.social-event-5 h3{
    bottom: 20px;
    left: 10px;
    line-height: 1;
    font-size: 1.8rem;
}
.social-event-6 h3{
    bottom: 20px;
    left: 10px;
    line-height: 1;
    font-size: 1.8rem;
}
.social-event-7 h3{
    bottom: 20px;
    font-size: 2rem;
    right: 20px;
    text-indent: 2.4cm;
    line-height: 1;
}
.social-event-8 h3{
    bottom: 20px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    right: 20px;
    font-size: 2rem;
}
.social-event-9 h3{
    bottom: 20px;
    left: 10px;
    line-height: 1;
    font-size: 1.3rem;
}
.social-event-10 h3{
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.gifts-grid-1 h3{
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
}
.gifts-grid-2 h3{
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
}
.gifts-grid-3 h3{
    bottom: 20px;
    right: 20px;
    font-size: 1.3rem;
    line-height: 1;
}

/* Hover effects */
.grid-item:hover img {
    transform: scale(1.05);
}
.grid-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.50);
    z-index: 1;
}

@media (max-width: 768px) {
    .corporate-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .grid-item {
        grid-column: 1/3;
        grid-row: auto !important;
        aspect-ratio: 1/1;
    }
    
    .item-3 h3 {
        writing-mode: horizontal-tb;
        transform: none;
        bottom: 15px;
        left: 15px;
        right: auto;
        top: auto;
    }

    .item-6 h3 {
        bottom: 20px;
        left: 20px;
        text-align: left;
        font-size: 1.8rem;
    }
}

/* social event styles  */
.social-events {
    padding: 2rem 2rem;
}

.social-events-content h2{
    text-align: center;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .social-events-content h2{
        font-size: 3rem;
    }

}

.social-events-content p{
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    font-family: PlusJakartaSans;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    text-align: justify;
}

/* social event grid layout  */
.social-event-grid {
    display: grid;
    grid-template-columns: repeat(6, 167px);
    grid-template-rows: repeat(4, 300px);
    gap: 15px;
    max-width: 1200px;
    margin: auto;
    padding: 0 5rem;
}

.social-event-1{
    grid-column: 1 / 4;
    grid-row: 1;
}

.social-event-2{
    grid-column: 4 / 6;
    grid-row: 1;
}

.social-event-3{
    grid-column: 6;
    grid-row: 1;
}

.social-event-4{
    grid-column: 1/3;
    grid-row: 2;
}

.social-event-5{
    grid-column: 3;
    grid-row: 2;
}

.social-event-6{
    grid-column: 4/7;
    grid-row: 2;
}

.social-event-7{
    grid-column: 1 / 4;
    grid-row: 3;
}

.social-event-8{
    grid-column: 4/6;
    grid-row: 3;
}

.social-event-9{
    grid-column: 6;
    grid-row: 3;
}

.social-event-10{
    grid-column: 1/7;
    grid-row: 4;
}

@media (max-width: 768px) {
    .social-event-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .grid-item {
        grid-column: 1/3;
        grid-row: auto !important;
        aspect-ratio: 1/1;
    }
}

/* corporate-gift design  */

.corporate-gifts {
    padding: 2rem 2rem;
}

.corporate-gifts-content h2{
    text-align: center;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .corporate-gifts-content h2{
        font-size: 3rem;
    }

}

.corporate-gifts-content p{
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    font-family: PlusJakartaSans;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    text-align: justify;
}

/* corporate-gifts grid style  */
.corporate-gifts-grid {
    display: grid;
    grid-template-columns: repeat(6, 167px);
    grid-template-rows: repeat(1, 300px);
    gap: 15px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 2rem;
    padding: 0 5rem;
}

.gifts-grid-1{
    grid-column: 1/4;
    grid-row: 1;
}

.gifts-grid-2{
    grid-column: 4/6;
    grid-row: 1;
}

.gifts-grid-3{
    grid-column: 6;
    grid-row: 1;
}

@media (max-width: 768px) {
    .corporate-gifts-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .grid-item {
        grid-column: 1/3;
        grid-row: auto !important;
        aspect-ratio: 1/1;
    }
}

/* Ambassador Page Styles */
.ambassador-hero {
    position: relative;
    height: 130vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.ambassador-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    z-index: 2;
}

.form-container {
    /* max-width: 500px; */
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-container h1 {
    font-family: PlusJakartaSans;
    font-size: 4.6rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

#ambassador-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}


.form-group input:focus {
    border-bottom-color: white;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: white;
}
.form-group-select,.form-group-option{
    padding: 10px;
    background: #111;
    color: white;
    font-family: vogun;
    font-size: 1rem;
    border: 1px solid #C5C5C559;
    border-radius: 14px;
}
/* 
.submit-btn {
    background: white;
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-family: Vogun;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    margin: auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    border-radius: 10px;
} */

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}


@media (max-width: 1024px) {
    .ambassador-content {
        flex-direction: column;
        align-items: center;
    }
    
    .form-container
    {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-container h1,
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .form-container h1,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h1 {
    font-family: Vogun;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #C5C5C559;
    color: white;
    font-family: vogun;
    font-size: 1rem;
    border-radius: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bdbdbd;
    font-weight: 500;
}

.form-group textarea {
    color: #bdbdbd;
    font-weight: 500;
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: white;
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-family: Vogun;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 80%;
    margin: 1rem auto 0;
    border-radius: 6px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .contact-container h1 {
        font-size: 2.5rem;
    }
    
    .contact-tagline {
        font-size: 1rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: black;
    color: #fff;
    padding: 6rem 2rem 2rem;
    border-top-left-radius: 115px;
    border-top-right-radius: 115px;
    position: relative;
    z-index: 10;
    margin-top: -100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

/* .footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-right {
    flex: 1;
    min-width: 300px;
} */

.footer-logo {
    width: 240px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links svg {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.contact-info a, 
.contact-info p {
    font-family: PlusJakartaSans;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

.copyright {
    font-family: PlusJakartaSans;
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 4rem 1rem 2rem;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        margin-top: -50px;
    }
    
    .footer-logo {
        width: 180px;
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about-container h2 {
        font-size: 2.5rem;
    }
    
    .about-container p {
        font-size: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-left, .footer-right {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 0 1rem;
    }
    
    .associated-container,
    .video-container {
        padding: 0 1rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}