  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }

    body {
        background: #fff;
        color: #333;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Header */
    .header {
      background: linear-gradient(135deg, #d9232d, #b91c27);
      padding: 12px 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      box-shadow: 0 4px 15px rgba(217, 35, 45, 0.3);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo img {
      height: 70px;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
      transition: transform 0.3s ease;
    }
    .logo img:hover {
      transform: scale(1.05);
    }

    .nav, .dropdown {
      list-style: none;
    }
    .nav {
      display: flex;
      align-items: center;
    }
    .nav li {
      position: relative;
      margin: 0 12px;
    }
    .nav a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      padding: 10px 12px;
      display: block;
      transition: all 0.3s ease;
      border-radius: 5px;
    }
    .nav a:hover {
      background-color: rgba(255,255,255,0.15);
      transform: translateY(-2px);
    }

    /* Dropdown */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 210px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-15px);
      transition: all 0.35s ease;
      border-radius: 10px;
      overflow: hidden;
    }
    .nav li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown li {
      margin: 0;
    }
    .dropdown a {
      padding: 14px 20px;
      color: #333;
      font-weight: 600;
      border-bottom: 1px solid #eee;
      background: #fff;
      transition: background 0.3s;
    }
    .dropdown a:hover {
      background: #f7f7f7;
      color: #d9232d;
    }

    /* ✅ Header Buttons */
    .header-buttons {
      display: flex;
      gap: 12px;
    }
    .header-buttons button {
      padding: 10px 22px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-size: 15px;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .login-btn {
      background: linear-gradient(135deg, #ff6347, #ff4500);
      color: white;
    }
    .download-btn {
      background: linear-gradient(135deg, #4169e1, #0000cd);
      color: white;
    }
    .header-buttons button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    /* Toggle Button */
    .toggle-btn {
      display: none;
      font-size: 28px;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
      margin-top: -5px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .toggle-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
      }
      .nav,
      .header-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: linear-gradient(135deg, #d9232d, #b91c27);
        border-radius: 0 0 10px 10px;
        padding: 10px 0;
      }
      .nav.active,
      .header-buttons.active {
        display: flex;
      }
      .nav li {
        margin: 5px 0;
        width: 100%;
      }
      .nav a {
        padding: 15px;
        font-size: 17px;
      }

      /* Mobile dropdown */
      .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #fff;
      }
      .nav li.open .dropdown {
        display: block;
      }
      .dropdown a {
        color: #000;
      }

      .header-buttons button {
        width: 90%;
        margin: 6px auto;
        font-size: 17px;
      }
      .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
      }
      .logo {
        margin-bottom: 8px;
      }
    }

    /* Arrow rotate animation */
    .has-dropdown > a::after {
      content: " ▼";
      font-size: 12px;
      transition: transform 0.3s ease;
      display: inline-block;
    }
    .nav li.open > a::after {
      transform: rotate(180deg);
    }

    


        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        .main-content h1 {
            font-size: 2.5rem;
            color: #d9232d;
            margin-bottom: 15px;
            animation: fadeIn 1s ease-in-out;
        }

        .main-content p {
            font-size: 1.1rem;
            max-width: 1100px;
            margin: 0 auto 20px;
        }

        .buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin: 20px 0;
    }

    .btn {
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 25px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        color: #fff;
    }
    .btn-register { background: #d9232d; }
    .btn-login { background: #1a73e8; }
    .btn-download { background: #2ca02c; }

    .btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
    }


     @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    
          .tech-specs {
            background: rgba(217, 35, 45, 0.1);
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
            animation: slideIn 1s ease-in-out;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .tech-specs strong {
            font-size: 1.5rem;
            color: #d9232d;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }

        .tech-specs strong::after {
            content: '';
            width: 60px;
            height: 3px;
            background: #b91c27;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .spec-table {
            display: table;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-collapse: collapse;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .spec-table div {
            display: table-row;
            transition: background 0.3s ease;
        }

        .spec-table div:nth-child(odd) {
            background: rgba(217, 35, 45, 0.05);
        }

        .spec-table div:nth-child(even) {
            background: rgba(217, 35, 45, 0.02);
        }

        .spec-table div:hover {
            background: rgba(217, 35, 45, 0.15);
        }

        .spec-table span {
            display: table-cell;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(217, 35, 45, 0.1);
        }

        .spec-table span:first-child {
            font-weight: bold;
            color: #b91c27;
            width: 40%;
            text-align: left;
        }

        .spec-table span:last-child {
            color: #333;
            text-align: left;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @media (max-width: 768px) {
            .main-content h1 {
                font-size: 1.8rem;
            }

            .main-content p {
                font-size: 1rem;
            }

            .buttons {
                flex-direction: column;
                align-items: center;
                width: 70%;
                margin: 40px auto;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .tech-specs h2 {
                font-size: 1.5rem;
            }

            .spec-table {
                font-size: 0.9rem;
            }

            .spec-table span {
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .main-content h1 {
                font-size: 1.5rem;
            }

            .main-content p {
                font-size: 0.9rem;
            }

            .tech-specs {
                padding: 20px;
            }

            .spec-table span {
                display: block;
                padding: 10px;
                text-align: center;
            }

            .spec-table span:first-child {
                width: 100%;
                border-bottom: none;
            }

            .spec-table span:last-child {
                border-bottom: 1px solid rgba(217, 35, 45, 0.1);
            }
        }


         .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

         /* Common styling for H3 and H4 only */
.daman-section h3,
.daman-section h4 {
    color: #fff;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* H2 styling with custom animation */
.daman-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
   
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInFromLeft 1s ease-in-out; /* Custom animation */
}

/* H3 styling */
.daman-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* H4 styling */
.daman-section h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Example H2 animation */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}





         .daman-section h2::after, h3::after, h4::after {
            content: '';
            width: 50px;
            height: 3px;
            background: #fff;
            position: absolute;
            bottom: -5px;
            left: 0;
            border-radius: 2px;
        }

         

        .daman-section {
            background: linear-gradient(135deg, #c91824, #ff4c4c);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideUp 1s ease-in-out;
            transition: transform 0.3s ease;
        }

        .daman-section:hover {
            transform: translateY(-5px);
        }

        
      /* Paragraph styling inside .daman-section */
.daman-section p {
    font-size: 18px;
    margin-bottom: 15px;
    animation: slideIn 1s ease-in-out;
    color: #fff;
    line-height: 1.8;
}

/* List item styling inside .daman-section */
.daman-section ul {
    padding-left: 20px; /* ensure bullets aligned properly */
}

.daman-section ul li {
    font-size: 18px; /* Default font size */
    color: #fff; 
    margin-bottom: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    list-style-type: disc;
    cursor: default;
}

/* Hover effect */
.daman-section ul li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .daman-section ul li {
    font-size: 16px;   /* thoda chhota font */
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .daman-section ul li {
    font-size: 15px;   /* aur chhota font very small devices ke liye */
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: 8px;
  }
}



        

      
        .daman-section ul li strong {
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }


      

        @keyframes fadeIn {
            from { 
                opacity: 0; 
                transform: scale(0.9);
            }
            to { 
                opacity: 1; 
                transform: scale(1);
            }
        }

        @keyframes slideIn {
            from { 
                transform: translateX(-30px); 
                opacity: 0; 
            }
            to { 
                transform: translateX(0); 
                opacity: 1; 
            }
        }

        @keyframes slideUp {
            from { 
                transform: translateY(30px); 
                opacity: 0; 
            }
            to { 
                transform: translateY(0); 
                opacity: 1; 
            }
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 1.8rem;
            }

            h3, h4 {
                font-size: 1.4rem;
            }

            p, li {
                font-size: 15px;
            }

            .daman-section {
                padding: 20px;
                margin-bottom: 20px;
            }

           
        }

        @media (max-width: 480px) {
            h2 {
                font-size: 1.5rem;
            }

            h3, h4 {
                font-size: 1.2rem;
            }

            p, li {
                font-size: 14px;
            }

            .daman-section {
                padding: 15px;
                margin-bottom: 15px;
            }

            a.daman-login {
                width: 100%;
                text-align: center;
                padding: 12px;
            }

            
        }


        .center-img {
  display: block;
  margin: 40px auto; 
  max-width: 300px; 
  height: auto; 
}

.banner-img {
  display: block;
  margin: 40px auto; /* centers horizontally */
  max-width: 50%; /* makes image responsive */
  height: auto; /* keeps aspect ratio */
}


 .faq-section {
            background: linear-gradient(135deg, #c91824, #ff4c4c);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.3);
            animation: slideUp 1s ease-in-out;
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
            opacity: 0.3;
            z-index: 0;
        }
  

       .faq-section h2 {
    color: #fff;
    text-shadow: 1px 1px 2px #000; /* added missing value and color */
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
    font-size: 2rem;
}


        .faq-item {
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            border-left: 5px solid #fff;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .faq-item h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 12px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            animation: slideIn 1.2s ease-in-out;
        }

        .faq-item p {
            color: #fff;
            font-size: 1.1rem;
            animation: slideIn 1.4s ease-in-out;
        }

        a.daman-login {
            display: inline-block;
            background: #fff;
            color: #ff5c5c;
            padding: 12px 28px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin: 10px 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        a.daman-login:hover {
            background: #ff5c5c;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        @keyframes fadeIn {
            from { 
                opacity: 0; 
                transform: scale(0.95);
            }
            to { 
                opacity: 1; 
                transform: scale(1);
            }
        }

        @keyframes slideIn {
            from { 
                transform: translateX(-40px); 
                opacity: 0; 
            }
            to { 
                transform: translateX(0); 
                opacity: 1; 
            }
        }

        @keyframes slideUp {
            from { 
                transform: translateY(40px); 
                opacity: 0; 
            }
            to { 
                transform: translateY(0); 
                opacity: 1; 
            }
        }

        @media (max-width: 768px) {
            h2 {
                font-size: 2.2rem;
            }

            .faq-item h3 {
                font-size: 1.3rem;
            }

            .faq-item p {
                font-size: 1rem;
            }

            .faq-section {
                padding: 25px;
                margin-bottom: 25px;
            }

            a.daman-login {
                padding: 10px 20px;
            }
        }

        @media (max-width: 480px) {
            h2 {
                font-size: 1.8rem;
            }

            h2::after {
                width: 60px;
                height: 4px;
            }

            .faq-item h3 {
                font-size: 1.1rem;
            }

            .faq-item p {
                font-size: 0.9rem;
            }

            .faq-section {
                padding: 20px;
                margin-bottom: 20px;
            }

            a.daman-login {
                width: 100%;
                text-align: center;
                padding: 12px;
            }

            .faq-item {
                padding: 15px;
                margin-bottom: 15px;
            }
        }


        /* ess page */


         .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

       .main-title {
    text-align: center;
    padding: 60px 20px; /* changed horizontal padding to 20px for small screens */
    max-width: 1200px; /* allows it to shrink on smaller screens */
    margin: 20px auto;
    border-radius: 20px;
    background: #d9232d;
    color: #fff;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInTitle 1.5s ease-out;
    position: relative;
    z-index: 1;
}

        .content-block {
            padding: 50px 20px;
            margin-bottom: 30px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: slideInBlock 1s ease-out forwards;
            opacity: 0;
        }

        .content-block:nth-child(2) { animation-delay: 0.2s; }
        .content-block:nth-child(3) { animation-delay: 0.4s; }
        .content-block:nth-child(4) { animation-delay: 0.6s; }
        .content-block:nth-child(5) { animation-delay: 0.8s; }
        .content-block:nth-child(6) { animation-delay: 1s; }
        .content-block:nth-child(7) { animation-delay: 1.2s; }
        .content-block:nth-child(8) { animation-delay: 1.4s; }
        .content-block:nth-child(9) { animation-delay: 1.6s; }
        .content-block:nth-child(10) { animation-delay: 1.8s; }

        .content-block h2 {
            font-size: 2.2rem;
            color: #d9232d;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }

         .content-block h3 {
            font-size: 1.5rem;
            color: #d9232d;
            
            margin-bottom: 25px;
            position: relative;
        }

        .content-block h2::after {
            content: '';
            width: 60px;
            height: 3px;
            background: #d9232d;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .content-block p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #000;
            text-align: justify;
        }

         .content-block ul {
            list-style: none;
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .content-block ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
            font-size: 1.1rem;
            color: #000;
        }

        .content-block ul li::before {
            content: '✔';
            color: #d9232d;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .content-block a {
            color: #d9232d;
          
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .content-block a:hover {
            background: #fff;
            color: #d9232d;
            box-shadow: 0 0 8px rgba(217, 35, 45, 0.4);
        }

        @keyframes fadeInTitle {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes slideInBlock {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
          

            .content-block h2 {
                font-size: 1.8rem;
            }

           .content-block p, .content-block ul li {
                font-size: 1rem;
            }

            .content-wrapper {
                padding: 15px;
            }
        }


       

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem; /* smaller font for tablets/mobiles */
        padding: 40px 15px; /* reduced padding */
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem; /* even smaller on small phones */
        padding: 30px 10px;
        border-radius: 10px;
    }
}

          .footer {
      background-color: #272626; /* Black background */
      color: #fff;
      text-align: center;
      padding: 20px 10px;
    }
    .footer-nav {
      margin-bottom: 10px;
    }
    .footer-nav a {
      color: #fff;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    .footer-nav a:hover {
      color: #b91d1d; /* Green hover */
    }
    .footer p {
      margin: 5px 0 0;
      font-size: 14px;
      color: #ccc;
    }

    /* Mobile responsive */
    @media (max-width: 600px) {
      .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
    }