:root {
    /* Color palette */
    --backgroundColor: #0F0E13; /* Dark background */
    --whiteColor: #FFF; /* Pure white */
    --blackColor: #000; /* Pure black */
    --grayColor: #868F97; /* Neutral gray */
    --cardColor: #1F1E24;
}

body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--backgroundColor);
    color: var(--whiteColor);
    overflow-x: hidden;
    position: relative;
}

/* Sleek and Innovative Mouse Trailer */
.mouse-tracker {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--whiteColor) 20%, transparent 70%);
    border: 2px solid var(--whiteColor);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
    transition: 
        transform 0.2s ease-out,
        opacity 0.2s ease-out,
        width 0.2s ease-out,
        height 0.2s ease-out;
    filter: drop-shadow(0 0 10px var(--whiteColor));
    z-index: 9999;
    mix-blend-mode: difference;
    opacity: 0.8;
}

.mouse-tracker.active {
    width: 60px;
    height: 60px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Simplified Top Bar */
.top-bar {
    background: var(--blackColor);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

/* Add this to your existing CSS file */

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; 
  }
  
  .logo-container img {
    width: 40px;
    height: 40px;
  }
  
  .logo-container h1 {
    margin: 0; 
    font-size: 28px; 
    font-weight: 700;
    color: var(--whiteColor);
  }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

nav h1 {
  color: var(--whiteColor);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: var(--grayColor);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-links li a.active {
  color: var(--whiteColor);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--whiteColor);
  transition: width 0.2s ease;
}

.nav-links li a:hover {
  color: var(--whiteColor);
}

.nav-links li a:hover::after {
  width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  nav h1 {
    color: var(--whiteColor);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    color: var(--grayColor);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  
  .nav-links li a.active {
    color: var(--whiteColor);
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--whiteColor);
    transition: width 0.2s ease;
  }
  
  .nav-links li a:hover {
    color: var(--whiteColor);
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }

/* Cover Section - Full Viewport Height */
header {
    text-align: center;
    padding: 0 20px;
    /* padding-top: 80px; */
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--blackColor);
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--whiteColor);
}

header p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}


/* Cover Section */
.cover-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .cover-text {
    max-width: 1250px;
    text-align: left; /* Left-align all text */
  }
  
  .cover-text h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .cover-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .cover-text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
  }
  
  .cover-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
  }
  
  /* Testimonials Section */
  #testimonials {
    padding: 60px 20px;
    background: var(--backgroundColor);
    text-align: center;
  }
  
  #testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--whiteColor);
  }
  
  .testimonials-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .testimonial-card {
    background: var(--cardColor);
    border-radius: 24px;
    padding: 20px;
    width: 336px;
    height: 236px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  }
  
  .testimonial-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 28px;
  }
  
  .testimonial-message {
    font-size: 14px;
    color: var(--whiteColor);
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  
  .author-details {
    text-align: left;
  }
  
  .author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--whiteColor);
  }
  
  .author-designation {
    font-size: 14px;
    color: var(--grayColor);
  }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--whiteColor);
    color: var(--blackColor);
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: 150px; /* Reduced width */
    justify-content: center; /* Center text */
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

/* Animated Footer */
footer {
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--blackColor) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

footer p {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

footer a {
    color: var(--whiteColor);
    opacity: 0.75;
    text-decoration: none;
}
footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.button-container {
    display: flex;
    gap: 10px; /* Adjust spacing between buttons */
    justify-content: flex-start; /* Center align if needed */
}

  /* Top Bar Contact Button */
  .contact-btn {
    background: var(--blackColor);
    color: var(--whiteColor);
    border: 2px solid var(--whiteColor);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
  }
  
  .contact-btn:hover {
    background: var(--whiteColor);
    color: var(--blackColor);
    border-color: var(--blackColor);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  }
  

  .menu-icon {
    display: none;
    font-size: 24px;
    color: var(--whiteColor);
    cursor: pointer;
  }
  
  /* Side Menu */
  .side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background: var(--blackColor);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .side-menu-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }
  
  .side-menu-content a {
    padding: 15px 0;
    text-decoration: none;
    font-size: 18px;
    color: var(--whiteColor);
    transition: 0.3s;
  }
  
  .side-menu-content a:hover {
    color: var(--grayColor);
  }
  
  .side-menu-content .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
  }


  .content-page {
    padding: 100px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
    text-align: center;
}

.content-page h3 {
    font-size: 1.7rem;
    margin: 2rem 0 1.2rem;
    color: var(--primary-color, #f5f5f5);
}

.content-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.3rem;
}

.content-page ul {
    padding-left: 1.8rem;
    margin-bottom: 2rem;
}

.content-page li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.content-page a {
    color: var(--accent);
    opacity: 0.75;
    text-decoration: none;
}
.content-page a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #000;
  min-height: 100vh;
  box-sizing: border-box;
}

.contact-card {
  width: 438px;
  padding: 20px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.contact-icon {
  width: 48px;
  height: 48px;
}

.contact-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 39px;
  text-align: center;
  background: linear-gradient(90deg, #B3AEF5 0%, #D7CBE7 40%, #E5C8C8 64%, #EAA879 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.contact-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 398px;
  height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background-color: #111;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 96px;
  resize: none;
}

.submit-btn {
  width: 100%;
  max-width: 398px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background-color: #B3AEF5;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #a29ae5;
}
  
  /* Custom Heading Component */
  .custom-heading {
    position: absolute; /* Position the heading absolutely */
    top: 20px; 
    left: 20px; 
    width: 136px;
    height: 30px;
    border: 1px solid #FEFFDC; 
    border-radius: 30px; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12;
    font-weight: 400;
    color: #FEFFDC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1; 
  }
  
  /* Responsive Design */
  @media (max-width: 480px) {
    .contact-card {
      padding: 16px;
    }
  
    .contact-heading {
      font-size: 22px;
      line-height: 30px;
    }
  
    .contact-subtext {
      font-size: 14px;
      line-height: 20px;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 14px;
    }
  }  

@media (max-width: 900px) {
    .content-page {
        padding: 80px 20px;
    }

    .content-page h2 {
        font-size: 2.2rem;
    }

    .content-page h3 {
        font-size: 1.5rem;
    }

    .content-page p {
        font-size: 1rem;
    }

    .cover-content {
        flex-direction: column;
        text-align: center;
        margin-top: 135px;
      }
    .cover-text{
        margin-top: 30px
    }
    .cover-image {
    margin-top: 30px;
    }

    .nav-links {
        display: none;
      }
    
      .menu-icon {
        display: block;
      }
  
      .contact-btn {
          display: none;
        }
}

/* Keyframe Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

  /* Responsive Design */
  @media (max-width: 768px) {
  
    .testimonials-container {
      flex-direction: column;
      align-items: center;
    }

    .cover-content {
        flex-direction: column;
        text-align: center;
        padding-top: 0px;
      }
  }