body
{
  margin: 0;
  background:#000;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  line-height: 1.6;
}
#mycanvas
{
  animation:cinematic 10s infinite ease-in-out;
  -webkit-filter:brightness(1)  saturate(0.9);
  position:fixed;
  top: -25%;
  z-index: -10;
  pointer-events: none;
}
@-webkit-keyframes cinematic
{
  0%{transform:rotateZ(20deg);}
  75%{opacity:1;}
  100%{transform:rotateZ(-20deg);opacity:0;}
}
#text
{
  transform:translateY(-50%);
  top:50%;
  text-align:center;
  width:100%;
  position:absolute;
  color:rgba(255,255,255,0.9);
  font-family:"Open sans";
  font-weight:700;
  font-size:48px;
  whitespace:nowrap;
  letter-spacing:0.3em;
  animation:zoom 10s infinite linear;
}
#subtitle {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  animation: fadeInUp 2s ease-out 1s both;
}
#description {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeInUp 2s ease-out 1.5s both;
}
#cta-buttons {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  animation: fadeInUp 2s ease-out 2s both;
}
.cta-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-btn.primary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-btn.primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.cta-btn.secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
@-webkit-keyframes zoom
{
  0%{
    opacity:0;
    transform:scale(0.5) translateY(-50%);
    -webkit-filter:blur(10px);
  }
  7.5%
  {
   opacity:1; transform:scale(1) translateY(-50%);
    -webkit-filter:none;
  }
  90%{
    -webkit-filter:none;
    opacity:1;
  }
  95%{
    opacity:0.3;
    transform:scale(1.5) translateY(-50%);
    -webkit-filter:blur(10px);
  }
  100%{
    opacity:0;
    transform:scale(2);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* Navigation */
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
.nav-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #fff;
}
/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
/* Content Sections */
.content-section {
  position: relative;
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1;
}

/* Hide Vision/Focus Areas section */
#vision {
  display: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.content-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  letter-spacing: 2px;
}
.content-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}
.service-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-align: left;
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card li {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.service-card li:before {
  content: "▸ ";
  color: rgba(255, 255, 255, 0.8);
  margin-right: 10px;
}
/* Contact Section */
.contact-content {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.contact-info {
  max-width: 600px;
  text-align: center;
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}
.contact-details {
  margin-top: 30px;
}
.contact-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  gap: 15px;
}
.contact-item strong {
  color: rgba(255, 255, 255, 0.9);
  min-width: 120px;
}
.contact-item span {
  color: rgba(255, 255, 255, 0.7);
}
/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
}
.contact-form h3 {
  margin-bottom: 25px;
  color: #fff;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}
.submit-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Mailto button styling */
.mailto-btn {
  width: auto !important;
  padding: 12px 25px !important;
  margin: 20px auto !important;
  max-width: 200px;
  font-size: 14px !important;
  border-radius: 25px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}

.mailto-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px) !important;
}
/* Footer */
footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 50px 0 20px;
  position: relative;
  z-index: 1;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: #fff;
}
.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 10px 0;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #fff;
}
.footer-section span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin: 5px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
/* Responsive Design */
@media (max-width: 768px) {
  #navigation {
    padding: 15px 20px;
    flex-wrap: wrap;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-links a {
    font-size: 14px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  #text {
    font-size: 28px;
    letter-spacing: 0.1em;
    top: 35%;
  }
  
  #subtitle {
    font-size: 16px;
    top: 50%;
  }
  
  #description {
    font-size: 14px;
    top: 57%;
    padding: 0 20px;
  }
  
  #cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    top: 65%;
  }
  
  .cta-btn {
    width: 200px;
  }
  
  .contact-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info {
    max-width: 100%;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card,
  .service-card {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #text {
    font-size: 24px;
    top: 30%;
  }
  
  #subtitle {
    font-size: 14px;
    top: 45%;
  }
  
  #description {
    font-size: 12px;
    top: 52%;
  }
  
  #cta-buttons {
    top: 60%;
  }
  
  .cta-btn {
    width: 180px;
    padding: 10px 20px;
    font-size: 12px;
  }
}