* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: black;
  color: white;
  overflow-y: auto;
  transition: background-color 0.5s, color 0.5s;
}

body.light-theme {
  background: white;
  color: black;
}

body.light-theme .navbar {
  background-color: rgba(255, 255, 255, 0.8);
}

body.light-theme .nav-links a {
  color: black;
}

#logo {
  height: 25px;
  margin-left: 10px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3)); /* Default for dark theme */
}

body.light-theme #logo {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3)); /* Overrides in light mode */
}

.navbar {
  width: 100%;
  height: 8%;
  padding: 1px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar img {
  height: 25px;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
  padding-right: 10px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

body.light-theme .hamburger-line {
  background-color: black;
}

.hamburger-active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 15px;
}

.about-us {
  margin-top:18vh;
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  background: #000000;
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 0 0 300px;
  margin-top: 2%;
  transform: translateX(-100px);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-content {
  flex: 1;
  transform: translateX(100px);
  opacity: 0;
  transition: transform 1s ease-out 0.3s, opacity 1s ease-out 0.3s;
}

.about-us h1, .about-us h2 {
  text-align: center;
  margin-bottom: 1em;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

body.light-theme .about-us {
  background: #f5f5f5;
}

.about-image.animate, .about-content.animate {
  transform: translateX(0);
  opacity: 1;
}

.mainlogo {
  position: absolute;
  margin-left: 10%;
  margin-top: 140px;
}

.mainlogo img {
  height: 5%;
  padding-bottom: 10px;
}

.text {
  margin-top: 5px;
  font-size: 30px;
  color: white;
  font-family: 'Inter', sans-serif;
  padding-bottom: 10px;
  font-weight: none;
}

.para{
  font-size: 20px;
  color:white;
}

body.light-theme .para{
  color:black;
}

body.light-theme .text{
  color:black;
}

.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.background-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: floatTilt 6s ease-in-out infinite;
  transform-origin: center;
}

.animated-path {
  stroke: white;
  stroke-width: 1.5;
  fill: url(#paint0_radial_1_3);
  stroke-dasharray: 3000;
  stroke-dashoffset: 0;
  animation: traceStroke 10s linear infinite;
}

.mobile-controls .theme-toggle {
  display: none;
}

.nav-links .theme-toggle {
  display: inline-flex;
}

main {
  position: relative;
  z-index: 2;
  padding: 120px 16px 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.02em;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
  text-align: center;
}

.contact-card {
  display: flex;
  max-width: 950px;
  width: 100%;
  background: transparent;
  border-radius: 24px;
  box-shadow: 0 8px 40px #0008;
  backdrop-filter: blur(12px);
  border: 1.5px solid #7f7fff44;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.contact-info {
  flex: 1.1;
  padding: 40px 32px;
  background: rgba(60, 60, 60, 0.2);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.socials a {
  background: #23233a;
  color: white;
  padding: 6px;
  border-radius: 8px;
  transition: 0.2s;
  text-decoration: none;
}
.socials a:hover {
  background: #7f7fff;
  color: #111;
}

.contact-form {
  flex: 2;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1.2px solid #444;
  border-radius: 8px;
  padding: 10px 12px;
  color: white;
  font-size: 1rem;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #7f7fff;
}
textarea {
  resize: vertical;
  min-height: 60px;
}

.subject-label {
  font-weight: 500;
  margin-bottom: 6px;
}
.subject-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.subject-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
}
.subject-options input[type="radio"] {
  accent-color: #7f7fff;
}

.full-width {
  flex: 1 1 100%;
}

.end {
  justify-content: flex-end;
}

.send-btn {
  background: #23233a;
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.send-btn:hover {
  background: #7f7fff;
  color: #111;
}

.blur-circle, .glass-blur {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
  background-size: 200% 200%;
  animation: animatedGradient 6s ease-in-out infinite alternate;
}
.circle1 {
  width: 200px; height: 200px; left: 20px; top: 150px;
  background: linear-gradient(135deg, #ff69b4, #00bfff, #7f7fff, #a259ff, #20e3b2, #ff69b4);
  background-size: 400% 400%;
  animation: animatedGradientColors 3s ease-in-out infinite;
  animation-duration: 3s !important;
}
.circle2 {
  width: 260px; height: 260px; right: -30px; top: 70px;
  background: linear-gradient(225deg, #7f7fff, #00bfff, #a259ff, #ff69b4, #20e3b2, #7f7fff);
  background-size: 400% 400%;
  animation: animatedGradientColors 3s ease-in-out infinite;
  animation-duration: 3s !important;
}
.circle3 {
  width: 220px; height: 220px; left: 20px; bottom: -100px;
  background: linear-gradient(90deg, #a259ff, #ff69b4, #00bfff, #7f7fff, #20e3b2, #a259ff);
  background-size: 400% 400%;
  animation: animatedGradientColors 3s ease-in-out infinite;
  animation-duration: 3s !important;
}
.circle4 {
  width: 200px; height: 200px; right: 60px; bottom: -20px;
  background: linear-gradient(315deg, #ff69b4, #a259ff, #00bfff, #7f7fff, #20e3b2, #ff69b4);
  background-size: 400% 400%;
  animation: animatedGradientColors 3s ease-in-out infinite;
  animation-duration: 3s !important;
}
.circle5 {
  width: 90px; height: 90px; left: 48%; top: 65%;
  background: linear-gradient(180deg, #7f7fff, #ff69b4, #00bfff, #a259ff, #20e3b2, #7f7fff);
  background-size: 400% 400%;
  animation: animatedGradientColors 3s ease-in-out infinite;
  animation-duration: 3s !important;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  padding: 120px 16px 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.contact-wrapper .blur-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  background-size: 400% 400%;
  animation: animatedGradientColors 10s linear infinite alternate !important;
  filter: blur(20px) !important;
}

.contact-wrapper .circle1 {
  width: 150px; height: 150px; left: 210px; top: 50px;
  background: linear-gradient(135deg, #ff69b4, #00bfff, #7f7fff, #a259ff, #ff69b4);
}
.contact-wrapper .circle2 {
  width: 260px; height: 260px; right: 60px; top: 50px;
  background: linear-gradient(225deg, #7f7fff, #00bfff, #a259ff, #ff69b4,  #7f7fff);
}
.contact-wrapper .circle3 {
  width: 220px; height: 220px; left: 100px; bottom: 10px;
  background: linear-gradient(90deg, #a259ff, #ff69b4, #00bfff, #7f7fff,  #a259ff);
}
.contact-wrapper .circle4 {
  width: 120px; height: 120px; right: 230px; bottom: 10px;
  background: linear-gradient(315deg, #ff69b4, #a259ff, #00bfff, #7f7fff,  #ff69b4);
}
.contact-wrapper .circle5 {
  width: 90px; height: 90px; left: 48%; top: 65%;
  background: linear-gradient(180deg, #7f7fff, #ff69b4, #00bfff, #a259ff,  #7f7fff);
}

@keyframes animatedGradientColors {
  0% {
    background-position: 0% 50%;
    filter: blur(20px) hue-rotate(0deg);
  }
  25% {
    background-position: 50% 100%;
    filter: blur(20px) hue-rotate(90deg);
  }
  50% {
    background-position: 100% 50%;
    filter: blur(20px) hue-rotate(180deg);
  }
  75% {
    background-position: 50% 0%;
    filter: blur(20px) hue-rotate(270deg);
  }
  100% {
    background-position: 0% 50%;
    filter: blur(20px) hue-rotate(360deg);
  }
}

.contact-wrapper .contact-card {
  z-index: 2;
  position: relative;
}

@keyframes floatTilt {
  0% { transform: translateY(0px) rotate(-0.2deg); }
  50% { transform: translateY(0px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(-0.2deg); }
}

@keyframes traceStroke {
  to {
    stroke-dashoffset: -3000;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 1px 5px;
  }
  
  #logo {
    height: 20px;
    margin-left: 5px;
  }
  
  .nav-links {
    width: 250px;
    right: -250px;
  }
  
  .nav-links a {
    font-size: 16px;
    padding: 18px 25px;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2px;
  }
  
  .mobile-controls {
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .mobile-controls .theme-toggle {
    display: inline-flex;
  }
  
  .nav-links .theme-toggle {
    display: none;
  }
  .mobile-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  body.light-theme .nav-links {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.nav-active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 18px;
    font-weight: 500;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  body.light-theme .nav-links a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  body.light-theme .nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .theme-toggle {
    margin: 0;
  }
  
  .theme-toggle svg {
    width: 24px;
    height: 24px;
  }

  .about-us {
    margin-top: 70%;
  }
}

@media (max-width: 900px) {
  .about-us {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .about-image {
    margin-top: 0;
    width: 100%;
    max-width: 350px;
    transform: none;
    opacity: 1;
    display: flex;
    justify-content: center;
    transform: translateX(-30px);
  }
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .about-content {
    transform: none;
    opacity: 1;
    width: 100%;
    text-align: center;
    transform: translateX(-30px);
  }
  .contact-columns { flex-direction: column; }
  .contact-info, .modern-form-2 { padding: 24px 12px; }
  .form-row { flex-direction: column; gap: 12px; }
  .info-social img { width: 28px; height: 28px; }
  .modern-send-btn-2 { width: 100%; }
  .contact-wrapper .blur-circle {
    filter: blur(60px) !important;
    opacity: 0.7;
  }
}

.svg-bg-container {
  position: relative;
  width: 100%;
  height: auto;
}
.svg-centre-logo {
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.18));
  pointer-events: none;
}

.leadlogo-above-about {
  display: block;
  margin: 0 auto 32px auto;
  width: 200px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.18));
}

.hero-section {
  margin-top: 10vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
  text-align: left;
  color: #fff9f9;
  position: relative;
  z-index: 2;
  margin-left: 10vw;
}
.hero-lead {
  font-size: 7vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0.5em 0 0.2em 0;
  font-family: 'Montserrat', 'Arial', sans-serif;
}
.hero-tagline {
  font-size: 2vw;
  font-weight: 700;
  margin: 0.2em 0 0.5em 0;
  letter-spacing: 0.1em;
}
.hero-subtitle {
  font-size: 1.3vw;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 1em;
}
@media (max-width: 600px) {
  .hero-section { margin-left: 2vw; }
  .hero-lead { font-size: 2.5em; }
  .hero-tagline { font-size: 1em; }
  .hero-subtitle { font-size: 0.9em; }
}

.dark-theme .hero-lead,
.dark-theme .hero-tagline,
.dark-theme .hero-subtitle {
  color: #fffcfc;
}

.light-theme .hero-lead,
.light-theme .hero-tagline,
.light-theme .hero-subtitle {
  color: #000000;
}

@media screen and (max-width: 480px) {
  .contact-title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 900px) {
  .contact-card {
    flex-direction: column;
  }
  .contact-info,
  .contact-form {
    padding: 24px 16px;
  }
}

body.light-theme .contact-form,
body.light-theme .contact-form input,
body.light-theme .contact-form textarea,
body.light-theme .contact-info {
  color: #111;
}
body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
  background: rgba(0,0,0,0.04);
  color: #111;
}

.tagline-left {
  display: inline-block;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1s forwards;
}
.tagline-right {
  display: inline-block;
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1s forwards;
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}







