* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.logo img{
    height: 90px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.column-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 8rem 5% 5rem;
    max-width: 1600px;
    margin: 0 auto;
    
}

.about-section {
    background: #0a0a0a;
}

.about-content h2 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.about-subheading {
    font-size: 1.3rem;
    color: #FFA500;
    margin-bottom: 2rem;
}

.about-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: 36%;
    margin-top: 2rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.contact-section {
    background: #0a0a0a;
}

.contact-info h2 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.contact-subheading {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #FFD700;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: #0a0a0a;
    border: 2px solid #333;
    color: #ffffff;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    
}
.form-group textarea {
    height: 500px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.submit-btn {
    background: #FFD700;
    color: #0a0a0a;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    background: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

footer {
    background: #0a0a0a;
    border-top: 2px solid #FFD700;
    padding: 2rem 5%;
    text-align: center;
    color: #cccccc;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem 0.45rem 0.6rem;
  border: 2px solid #FFD700;
  border-radius: 999px;
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.social-links a:hover {
  background: #FFD700;
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 215, 0, 0.25);
}

.social-links img {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 4px; /* softens inconsistent favicon shapes */
  background: #fff;   /* keeps transparent icons visible on dark bg */
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 968px) {
    .column-sections {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 5% 3rem;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}