:root {
  --dark-bar: #2e2d2d;
  --light-brown: #e9cd84;
  --green-gradient: linear-gradient(to right, #28e78a, #09e091);
}


body, html {
  margin: 0;
  padding: 0;
}

.main-header {
   position: sticky; 
  top: 0;
  z-index: 1000;
}

/* === TOP BAR === */
.top-bar {
  background-color: var(--dark-bar);
  padding: 10px 60px;
  display: flex;
  justify-content: flex-end;
  gap: 50px;

}

.top-bar .btn {
  background-color: #e96760;
  border: 1px solid rgb(247, 240, 240);
  padding: 10px 14px;
  font-weight: bold;
  border-radius: 1px;
  cursor: pointer;
  width: 120px;
}

.top-bar,
.header {
  margin: 0 !important;
}

/* === HEADER === */
.header {
  background-color: #e96760;
   margin: 0 !important;

}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px !important;
  min-height: 55px;
  flex-wrap: wrap;
}

.logo img {
  height: 65px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 25px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: rgb(248, 245, 245);
}



.btn-download {
  background: linear-gradient(to right, #28e78a, #1cc28a);
  /* Updated green gradient */
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-download:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .top-bar .btn {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;

  }

  .nav {
    padding: 10px 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .header-actions {
    width: 100%;
  }

  .btn-download {
    width: 50%;
    text-align: center;
    align-items: center;
    margin-top: 20px;
    margin-left: 70px;
  }
}


  body {
            font-family: Arial, Helvetica, sans-serif;
            margin: 0;
            padding: 0;
            background: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1100px;
            margin: 30px auto;
            background: #fff;
            padding: 40px;
            border-radius: 10px;
        }


        .center-img {
    display: block;
    margin: 20px auto;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

        h1, h2, h3 {
            color: #000000 !important;
            margin-top: 35px;
            margin-bottom: 15px;
            text-decoration: none;           /* underline hata diya */
            border-bottom: none;             /* underline hata diya */
        }
        h1 {
            font-size: 2.5em;
            text-align: center;
          
        }
        h2 {
            font-size: 1.8em;
        }
        h3 {
            font-size: 1.5em;
        }
        p {
            font-size: 1.1em;
            margin: 25px 0;
        }
        ul {
            padding-left: 30px;
        }
        li {
            margin: 15px 0;
            font-size: 1.1em;
        }
        
       
        @media (max-width: 768px) {
            .container { margin: 15px; padding: 20px; }
            h1 { font-size: 2em; }
        }



        .button-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 30px 20px;
            flex-wrap: wrap; /* Makes it responsive on mobile */
        }

        .dam-button {
            padding: 12px 25px;
            font-size: 20px;
            font-weight: bold;
            color: white;
            border: none;
            border-radius: 50px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 140px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .dam-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
        }

        .register-btn  { background: #ff3b30; }   /* Red */
        .download-btn  { background: #34c759; }   /* Green */
        .login-btn     { background: #5856d6; }   /* Purple */

        /* Mobile Responsive */
        @media (max-width: 600px) {
            .button-container {
                flex-direction: column;
                gap: 15px;
            }
            .dam-button {
                width: 80%;
                max-width: 300px;
                padding: 10px 20px;
                font-size: 22px;
           
            }
        }


        .dam-footer {
            background-color: #e96760;
            color: #fcf9f9;
            padding: 20px 15px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .copyright {
            font-weight: bold;
        }

        .footer-links a {
            color: #f5f5f5;
            text-decoration: none;
            margin: 10px 10px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            text-decoration: underline;
            color: #f7e709;
        }

        /* Mobile Responsive */
        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            
            .footer-links a {
                margin: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .footer-links a {
                display: block;
                margin: 8px 0;
                font-size: 15px;
            }
        }