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


/* Stars Background Animation */
.stars-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: twinkle 3s infinite;
    z-index: -1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.about-section {
    padding: 6rem 2rem;
    background: transparent;
    color: #fff;
}

.company-name {
    display: flex;
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translateX(-50%);
}

.company-name h1 {
    font-size: 6rem;
    color: #07314a;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .company-name h1 {
        font-size: 4rem;       
    }
    .company-name {
        top: 94%;
    }
}
@media (max-width: 480px) {
    .company-name h1 {
        font-size: 3rem;
    }
    .company-name {
        top: 95.5%;
    }
}
/* GUI Dashboard Section */
.gui-dashboard {
    padding: 6rem 2rem;
    background: transparent;
    color: #fff;
}

.container {
   display: flex;
   align-items: center; 
}

.gui-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.gui-text {
    flex: 1;
    padding-right: 2rem;
}

.vision-statement h2{
    text-align: center;
    margin-bottom: 1rem;
}
.vision-statement p {
    text-align: center;
    margin-left: 4rem;
    margin-right: 4rem;
}

@media (max-width: 850px) {
    .vision-statement p{
        margin: 0;
    }
    .stories-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 600px) {
    .stories-section {
        padding: 2rem 1rem;
    }
}

.story-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.story-content h2{
    text-align: left;
}

.gui-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gui-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.gui-btn {
    display: inline-flex;
    align-items: center;
    background: #FF9EC1;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gui-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.gui-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gui-btn:hover i {
    transform: translateX(5px);
}

.gui-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.gui-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gui-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.gui-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .gui-content {
        flex-direction: column-reverse;
    }
    
    .gui-text {
        padding-right: 0;
    }
    
    .gui-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .gui-dashboard {
        padding: 4rem 1.5rem;
    }
    
    .gui-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gui-dashboard {
        padding: 3rem 1rem;
    }
    
    .gui-text h2 {
        font-size: 1.8rem;
    }
    
    .gui-text p {
        font-size: 1rem;
    }
}

/* Sponsors Section */
.sponsors-section {
    padding: 6rem 2rem;
    padding-top: 0;
    background: transparent;
}

.sponsors-section h2 {
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
}

.sponsors-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    padding: 2rem;
}

/* Large sponsor cards */
.sponsor-card-large {
    grid-column: span 6;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Medium sponsor cards */
.sponsor-card-medium {
    grid-column: span 4;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sponsor-card-large,
.sponsor-card-medium {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card content */
.sponsor-logo {
    width: 70%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* Update info panel styling */
.sponsor-info {
    position: absolute;
    bottom: -300%;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9); /* Dark background for text */
    color: white; /* White text */
    transition: bottom 0.4s ease;
    text-align: center;
}

.sponsor-info h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3ec6fc;
}

.sponsor-info p {
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white text */
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Hover effects */
.sponsor-card-large:hover,
.sponsor-card-medium:hover {
    transform: translateY(0);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Media queries for responsiveness */
    @media (max-width: 768px) {
    .sponsor-card-large:hover,
    .sponsor-card-medium:hover {
    transform: translateY(0);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    .sponsor-info h3{
        margin-bottom: 0.25rem;
    }
    .sponsor-info p{
        line-height: 1.25;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .sponsors-section{
        padding: 4rem 0;
    }
}


/* Optional: Add subtle gradient to cards */
.sponsor-card-large::before,
.sponsor-card-medium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    pointer-events: none;
}

/* Hover transitions */
.sponsor-card-large:hover .sponsor-logo,
.sponsor-card-medium:hover .sponsor-logo {
    transform: translateY(-10px) scale(0.95);
}

/* Ensure info panel appears on hover */
.sponsor-card-large:hover .sponsor-info,
.sponsor-card-medium:hover .sponsor-info {
    bottom: 0; /* Slide up on hover */
}

/* Add transition for smooth animation */
.sponsor-card-large .sponsor-info,
.sponsor-card-medium .sponsor-info {
    transition: bottom 0.3s ease-in-out;
}




@media (max-width: 768px) {
    .sponsors-grid {
        gap: 1rem;
        padding: 1rem;
    }
    .sponsor-card-large {
        grid-column: span 12;
    }

    
    .sponsor-card-medium {
        grid-column: span 12;
    }
} 

/* Industry Issues Styling */
.industry-section {
  padding: 6rem 4rem;
  background: transparent;
}

.industry-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.industry-container-right {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.industry-container-left {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

@media (max-width: 1000px) {
  .industry-container-right,
  .industry-container-left {
    grid-template-columns: 1fr; /* Single column on smaller screens */
    margin-bottom: 4rem;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .industry-section {
    padding: 3rem 2rem;
  }
  .industry-container-right,
  .industry-container-left {
    margin-bottom: 2rem;
    gap: 1rem;
  }
}

.industry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

.industry-content h3 {
  margin-bottom: 1rem;
}

.industry-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 16 / 9; /* Ensure consistent sizing */
  overflow: hidden;
  border-radius: 1rem;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the area while keeping proportions */
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.industry-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .industry-image {
    aspect-ratio: 4 / 3;
  }
}
