:root {
    --oxford-blue: #121c32;
    --midnight-blue: #1A243B;
    --cyan: #00ffff;
    --text-light: #f5f5f5;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background-color: var(--oxford-blue);
    color: var(--text-light);
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: #F0F8FF;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header img {
    height: 60px;
    max-width: 100%;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    margin-left: 1.5rem;
    color: var(--oxford-blue);
    text-decoration: none;
    font-weight: bold;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--oxford-blue);
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, var(--oxford-blue), var(--midnight-blue));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    min-height: 100vh;
    overflow: hidden;
  }

  .hero-text {
    flex: 1;
    padding-left: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
    animation-delay: 1s;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--cyan);
  }
  
  .bg-video {
    border: none;
    border-radius: 0%;
    border-color: #121c32;
  }

  .hero-video {
    flex: 1;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 0.5s;
    max-width: 50%;
  }
  
  .hero-video video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Sections */
  .section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: auto;
  }
  
  .section h2 {
    margin-bottom: 1rem;
    color: var(--cyan);
  }
  
  .services ul {
    list-style: none;
  }
  
  .services li {
    padding: 0.5rem 0;
  }

  .about-section {
    background: #f9f9f9;
    padding: 4rem 2rem;
  }
  
  .about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
  }
  
  .about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .about-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #007bff;
  }
  
  .about-card p,
  .about-card ul {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  
  .about-card ul {
    padding-left: 1.2rem;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 1rem;
    background: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #0056b3;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .founder-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .founder-photo:hover {
    transform: scale(1.03);
  }
  
  .founder-text {
    flex: 1;
    min-width: 250px;
  }
  
  @media (max-width: 768px) {
    .founder-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .founder-photo {
      width: 100%;
      height: auto;
    }
  }
  
  .certificates {
    margin-top: 20px;
    text-align: center;
  }

  .cert-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .certificate {
    width: 160px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideInLeft 1s forwards;
    animation-delay: 0.3s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .certificate1 {
    width: 120px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideInLeft 1s forwards;
    animation-delay: 0.3s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .certificate:nth-child(2) {
    animation-delay: 0.6s; /* Delays the second cert for a staggered effect */
  }
  
  @keyframes slideInLeft {
    0% {
      transform: translateX(-50px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .certificate:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  
  
  
  /* Contact Form */
  .contact_1  {
    color: white;
  }

  .contact form {
    display: flex;
    flex-direction: column;
  }
  
  .contact input,
  .contact textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
  }
  
  .contact button {
    padding: 0.75rem;
    background-color: var(--cyan);
    border: none;
    color: var(--oxford-blue);
    font-weight: bold;
    cursor: pointer;
  }
  
  .services-section {
    background: var(--oxford-blue);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color:#fff;
    ;
  }
  
  .service-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #007bff;
  }
  
  .service-card ul {
    padding-left: 1rem;
    color: #555;
    line-height: 1.6;
    list-style-type: disc;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Footer */
  footer {
    background-color: var(--midnight-blue);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a {
      margin: 1rem 0;
    }
  
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  }

/* Logo hover effect */
.logo {
    height: 60px;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.1);
  }
  
  /* Nav link hover underline */
  .nav-links a {
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--oxford-blue);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
    