body{
  margin: 0;
  font-family: Arial, sans-serif;

 }

 .premium-nav {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.697);
    height: 60px;
    box-shadow: black;
    border-radius: 30px;
    margin-left: 20px;
    margin-right: 20px;
  
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    gap: 2rem;
  }
  .nav-logo:hover {
    transform: translateY(-2px);
  }
  
  .nav-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .nav-logo::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 11px;
    z-index: -1;
  }
  
  .nav-logo:hover::before {
    opacity: 0.15;
  }
  
  .logo-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(45deg);
    animation: none;
    pointer-events: none;
  }
  
  .nav-logo:hover .logo-shine {
    animation: shineLogo 1s ease forwards;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .nav-link {
    color: black;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-link i {
    font-size: 1.2rem;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.3s;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .nav-link:hover {
    background: rgba(64, 64, 64, 0.173);
    color: black;
  }
  
  .nav-link.active {
    background: rgba(56, 0, 82, 0.056); /* translucent background */
    color: black;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgb(48, 0, 71)(119, 122, 255, 0.379);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* Safari support */
    border-radius: 8px; /* Optional: makes it look nicer */
  }
  .theme-toggle {
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
 
  
  .theme-toggle i {
    transition: transform 0.3s, opacity 0.3s;
    position: absolute;
    font-size: 1.25rem;
    color: rgb(0, 0, 0);
  }
  
  .moon-icon {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
  }
  
  
  .mobile-menu {
    display: none !important;
    background: none;
    border: none;
    color:black;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:white;
    color: black;
    transition: all 0.3s ease;
  }
  
  .mobile-menu:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes shineLogo {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) rotate(45deg);
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
        position: fixed;
        color: #000000;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-bottom: 1px solid rgba(77, 77, 77, 0.727);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s, opacity 0.3s;
        top: 62px;
        gap: 0.5rem;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgb(48, 0, 71)(119, 122, 255, 0.379);
        border-radius: 30px;
      }
  
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
  
    .mobile-menu {
        display: flex !important;
    }
  
    .nav-container {
        padding: 0 1rem;
    }
  
    .nav-link {
        width: 90%;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        justify-content: flex-start;
        gap: 0.75rem;
    }
  
    .nav-link.active {
        transform: none;
        box-shadow: none;
    }
  
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-direction: row;
    }
  }
  
  @keyframes navItemFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  
/* landing page  */

  #headlogo {
    width: 130px;
    margin-left: 0px;
  }
  
  #home {
    background-image: url('images/Web-Odyz.jpg'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    height: 100vh;
    position: relative;
    background-attachment: fixed;
  }
  
  #home-title {
    font-size: 65px;
    color: white;
    margin-bottom: 0;
    font-family: 'Arial Rounded MT Bold', 'Arial Rounded MT', Arial, sans-serif;
    text-align: center;
    padding: 0 1rem;
    word-wrap: break-word;
  }
  
  #home-tagline {
    margin-top: 10px;
    font-size: 15px;
    color: white;
    opacity: 0.85;
    width: 41%;
    text-align: justify;
    font-family: Arial, sans-serif;
    letter-spacing: 1;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    #home {
      background-size: contain;
      background-position: top;
      height: 100%;
    }

    #home-title {
      font-size: 42px;
    }
  
    #home-tagline {
      width: 80%;
      font-size: 14px;
      text-align: justify;
    }
  }
  
  @media (max-width: 480px) {
    #home {
      background-size: contain;
      background-position: top;
      padding: 90px;

    }
  
    #home-title {
      font-size: 20px;
      width: 100%;
    }
  
    #home-tagline {
      width: 160%;
      font-size: 6px;
      text-align: justify;

    }
  }

/* ***end*** */



/* section - 2 */

  .boxes-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: white;
    position: relative;
  }

  
  .containers {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
  }
  
  .left-content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .leftcontenthw {
    font-size: 67px;
    margin-bottom: 20px;
    padding-right: 100px;
    color: black;
    font-weight: 700;
  
  }
  
  .left-content p {
    font-size: 18px;
    line-height: 1.8;
    color: black;
  
  }
  
  .right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .big-box {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 350px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    border-radius: 18px;
  }
  
  .small-box-row {
    display: flex;
    gap: 20px;
  }
  
  .small-box {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 170px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    border-radius: 18px;
  }
  
  .big-box:hover, .small-box:hover {
    transform: scale(1.03);
  }
  
  .fa-solid {
    margin-top: 20px;
    transition: transform 0.3s ease-in-out;
  }
  /* Responsive adjustments */
@media (max-width: 1024px) {
  .leftcontenthw {
    font-size: 48px;
    padding-right: 50px;
  }

  .left-content p {
    font-size: 1.1em;
  }

  .big-box {
    height: 300px;
    font-size: 1.6em;
  }

  .small-box {
    height: 150px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .boxes-section {
    padding: 30px 20px;
    flex-direction: column;
  }

  .containers {
    flex-direction: column;
  }

  .leftcontenthw {
    font-size: 36px;
    padding-right: 0;
  }

  .left-content, .right-content {
    padding: 10px;
    width: 100%;
  }

  .small-box-row {
    flex-direction: column;
    gap: 15px;
  }

  .big-box {
    height: 250px;
    font-size: 1.4em;
  }

  .small-box {
    height: 140px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .leftcontenthw {
    font-size: 28px;
  }

  .left-content p {
    font-size: 1em;
  }

  .big-box {
    height: 200px;
    font-size: 1.2em;
  }

  .small-box {
    height: 120px;
    font-size: 0.95em;
  }
}
/* section-2 end */



/* section-3 */

  .cta-parallax {
    background-image: url(images/cta.jpeg);
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
  }
  .cta-overlay {
    padding: 50px;
  }
  
  .cta-content {
    max-width: 650px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: .7;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #868686;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #292929;
  }

  /* section-4 */

  .cta-parallaxss {
    background-image: url(images/aboutusimg.jpg);
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
  }

/* section4 end */

  .conhead{
    text-align: center;
    font-size: 42px;
  }
  
  
  .contact-section {
    padding: 50px;
  }
  
  .contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
  
  }
  
  .contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-image img {
    max-width: 400px;
  }
  
  .contact-box {
    margin-bottom: 50px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .contact-box h2 {
    font-size:35px;
    margin-bottom: 25px;
    color: var(--primary-color);
  
  }
  
  .contact-box p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .contact-button {
    background-color: #000000; /* Primary color */
    color: #ffffff;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .contact-button:hover {
    background-color: #212121; /* Darker shade */
    border-color: #909090;
  }
  
 
  
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-box {
      margin-top: 20px;
      text-align: center;
    }
  
    .contact-image img {
      max-width: 300px;
    }
  }
  
  /* Footer */
  .footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    background-attachment: fixed;
  }
  .footersep{
    background-color: black;
  }
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .footer-column {
    flex: 1;
  }
  
  .footer-logo {
    height: 250px; /* Adjust as needed */
  }
  
  .quick-links {
    text-align: left;
    list-style: none;
    color: #ffffff;
    padding: 0;
  }
  
  .quick-links a {
    text-decoration: none;
    color: #ffffff;
  }
  
  .quick-links a:hover {
    color: red;
  }
  
  .quick-links li {
    margin-bottom: 8px;
  }
  
  
  .footer .copyright {
    margin-top: 50px;
    font-size: 14px;
  }
  .footer .copyright a {
    font-size: 14px;
    color:  #b1b1b1d8;
    text-decoration: none;
  }
  .metahue {
    padding-top: 10px;
    color: #777;
    font-family: 'Poppins', sans-serif;
  }
  
  .metahue a {
    color: #777;
    text-decoration: none;
  }
  
  .metahue a:hover {
    color: red;
  }