* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
        }

        /* Floating Navbar */
        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 55px;
            padding: 12px 30px;
            border: 1px solid #333;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #ffffff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: #ffffff;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Auth buttons */
        .auth-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .auth-btn {
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .mobile-auth-buttons {
            display: none;
            flex-direction: column;
            gap: 10px;
        }

        .login-btn {
            color: #e0e0e0;
            border: 1px solid #333;
        }

        .login-btn:hover {
            color: #ffffff;
            border-color: #555;
        }

        .signup-btn {
            background: #ffffff;
            color: #000000;
            white-space: nowrap;
        }

        .signup-btn:hover {
            background: #f0f0f0;
            transform: translateY(-1px);
        }
        


 /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
        }




        /* Section Styling */
        .section {
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .section h1 {
            font-size: 5rem;
            font-weight: 800;
            text-align: center;
            letter-spacing: -2px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .section-info {
            font-size: 1.1rem;
            color: #eae5e5;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        

/* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                top: 15px;
                padding: 10px 20px;
                width: calc(100% - 30px);
                max-width: 500px;
            }

            .nav-container {
                justify-content: space-between;
                gap: 0;
            }

            .nav-center {
                gap: 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 26, 0.95);
                flex-direction: column;
                padding: 20px;
                border-radius: 15px;
                margin-top: 10px;
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .auth-buttons {
                display: none;
            }

            .mobile-auth-buttons {
                display: flex !important;
                flex-direction: column;
                gap: 10px;
            }
            .mobile-auth-buttons .auth-btn {
                width: 100%;
                text-align: center;
            }
            
            .mobile-auth-buttons .auth-btn.signup-btn {
                background: #ffffff;
                color: #000000;
            }

            .menu-toggle {
                display: block;
            }

            .section h1 {
                font-size: 3.5rem;
                padding: 0 20px;
            }

        
        }

        @media (max-width: 480px) {
            .section h1 {
                font-size: 2.5rem;
            }

            .navbar {
                padding: 8px 15px;
            }

            .logo {
                font-size: 1.3rem;
            }
        }

        /* Smooth scroll enhancement */
        @media (prefers-reduced-motion: no-preference) {
            html {
                scroll-behavior: smooth;
            }
        }





:root {
	--color-bg: #050505;
	--color-text: #ffffff;
	--color-primary: #ff3366;
	--color-secondary: #3366ff;
	--color-tertiary: #33ddff;
	--color-accent: #ffcc00;
	--card-radius: 16px;
	--card-bg: rgba(255, 255, 255, 0.03);
	--card-border: rgba(255, 255, 255, 0.1);
	--card-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.5);
	--transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: var(--color-bg);
	color: var(--color-text);
	min-height: 100vh;
	overflow-x: hidden;
	line-height: 1.5;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.gradient-blob {
	position: absolute;
	border-radius: 100%;
	filter: blur(40px);
	opacity: 0.3;
	animation: float 20s infinite alternate ease-in-out;
}

.gradient-blob:nth-child(1) {
	background: linear-gradient(
		to right,
		var(--color-primary),
		var(--color-secondary)
	);
	width: 150vw;
	height: 150vw;
	top: -100%;
	left: -25%;
	animation-delay: 0s;
}

.gradient-blob:nth-child(2) {
	background: linear-gradient(
		to right,
		var(--color-tertiary),
		var(--color-secondary)
	);
	width: 150vw;
	height: 150vw;
	bottom: -100%;
	right: -25%;
	animation-delay: -5s;
}

.gradient-blob:nth-child(3) {
	background: linear-gradient(
		to right,
		var(--color-accent),
		var(--color-primary)
	);
	width: 100vw;
	height: 100vw;
	top: 30%;
	left: -50%;
	animation-delay: -10s;
}

@keyframes float {
	0% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(2%, 2%) scale(1.02);
	}
	100% {
		transform: translate(-2%, -2%) scale(0.98);
	}
}

main {
	width: 100%;
	padding: 2rem 1rem;
	position: relative;
	z-index: 1;
}

h1 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	line-height: 1.1;
	background: linear-gradient(
		to right,
		var(--color-text),
		rgba(255, 255, 255, 0.7)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

.subtitle {
	font-size: 1rem;
	text-align: center;
	margin-bottom: 3rem;
	opacity: 0.8;
}

.cards-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	perspective: 1000px;
}

.card {
	position: relative;
	height: 320px;
	border-radius: var(--card-radius);
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	box-shadow: var(--card-shadow);
	transform-style: preserve-3d;
	transition: var(--transition);
	cursor: pointer;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at var(--x, 50%) var(--y, 50%),
		rgba(255, 255, 255, 0.1) 0%,
		transparent 50%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.card:hover::before {
	opacity: 1;
}

.card-content {
	position: relative;
	height: 100%;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	transform-style: preserve-3d;
	transition: transform 0.5s ease;
}

.card h2 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
	transform: translateZ(20px);
	background: linear-gradient(
		to right,
		var(--color-text),
		rgba(255, 255, 255, 0.8)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.card p {
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	opacity: 0.8;
	transform: translateZ(15px);
}

.card-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transform: translateZ(15px);
}

.card-button {
	padding: 0.6rem 1.2rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 100px;
	color: var(--color-text);
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

.card-button:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.card-icon {
	font-size: 1.25rem;
	opacity: 0.7;
	transition: transform 0.3s ease;
}

.card:hover .card-icon {
	transform: translateX(5px);
	opacity: 1;
}

@media (min-width: 640px) {
	main {
		padding: 5vh 2rem;
	}

	h1 {
		font-size: 3.5rem;
		margin-bottom: 0.75rem;
	}

	.subtitle {
		font-size: 1.1rem;
		margin-bottom: 4rem;
	}

	.card {
		height: 350px;
	}

	.card-content {
		padding: 1.75rem;
	}

	.card-tag {
		font-size: 0.75rem;
		padding: 0.5rem 1rem;
		margin-bottom: 1.25rem;
	}

	.card h2 {
		font-size: 1.6rem;
	}

	.card p {
		font-size: 1rem;
	}

	.card-button {
		padding: 0.7rem 1.4rem;
		font-size: 0.9rem;
	}

	.gradient-blob {
		filter: blur(50px);
		opacity: 0.35;
	}
}

@media (min-width: 768px) {
	.cards-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.gradient-blob {
		filter: blur(60px);
		opacity: 0.4;
	}

	.gradient-blob:nth-child(1) {
		width: 120vw;
		height: 120vw;
		top: -70%;
		left: -20%;
	}

	.gradient-blob:nth-child(2) {
		width: 120vw;
		height: 120vw;
		bottom: -70%;
		right: -20%;
	}

	.gradient-blob:nth-child(3) {
		width: 80vw;
		height: 80vw;
		top: 30%;
		left: -30%;
	}

	.card-content {
		padding: 2rem;
	}

	.card h2 {
		transform: translateZ(25px);
	}

	.card-tag {
		transform: translateZ(20px);
	}

	.card p {
		transform: translateZ(20px);
	}
}

@media (min-width: 1024px) {
	main {
		max-width: 1200px;
		margin: 0 auto;
		padding: 10vh 2rem;
	}

	h1 {
		font-size: 4.5rem;
	}

	.subtitle {
		font-size: 1.25rem;
	}

	.cards-container {
		grid-template-columns: repeat(3, 1fr);
	}

	.card {
		height: 400px;
		border-radius: 24px;
	}

	.gradient-blob {
		filter: blur(80px);
		opacity: 0.5;
	}

	.gradient-blob:nth-child(1) {
		width: 60vw;
		height: 60vw;
		top: -20%;
		left: -10%;
	}

	.gradient-blob:nth-child(2) {
		width: 60vw;
		height: 60vw;
		bottom: -30%;
		right: -10%;
	}

	.gradient-blob:nth-child(3) {
		width: 40vw;
		height: 40vw;
		top: 40%;
		left: 30%;
	}

	.card h2 {
		font-size: 1.75rem;
		transform: translateZ(30px);
	}

	.card-tag {
		transform: translateZ(20px);
	}

	.card p {
		transform: translateZ(25px);
	}

	.card-footer {
		transform: translateZ(20px);
	}
}
























/* keybord  enghindi*/

    

      html, body {
        font-family: "Montserrat", sans-serif;
        overflow-x: hidden;
        font-size:17px;
      }

    a {
        color:#0051C3;
    }
    a:hover{
        color:#013a8a;
    }
    
#button {
  display: inline-block;
  background-color: #4800ff;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 130px;
  right: 10px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 35px;
  color: #ffffff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}


      .sticky {
  position: fixed;
  bottom: 0px;
  width:100%;
  right:.1%;
  left:.1%;
}

.fancy-font {
    font-size:18px;
    
}



   
  .shadow-box{
      margin-top:10px;margin-right:0px;text-align:left; border: 1px solid;
      padding: 8px;
     -webkit-box-shadow: 0 10px 6px -6px #777;
     -moz-box-shadow: 0 10px 6px -6px #777;
          box-shadow: 0 10px 6px -6px #777;
      margin-left:0px;
      border-radius: 8px;
}

 .shadow-box1{
      margin-top:10px;margin-right:0px;text-align:left; border: 1px solid;
      padding: 8px;
     -webkit-box-shadow: 0 10px 6px -6px #777;
     -moz-box-shadow: 0 10px 6px -6px #777;
          box-shadow: 0 10px 6px -6px #777;
      margin-left:0px;
      border-radius: 8px;
}

.shadow-box:hover {
  
  background:yellow;
}
.copy-txt:hover {
    cursor:pointer;
}

	
#info {
    font-size: 20px;
    }
    #div_start {
    float: right;
    }
    #headline {
    text-decoration: none
    }
    #results {
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    min-height: 150px;
    }
    #start_button {
    border: 0;
    background-color:transparent;
    padding: 0;
    }
    .interim {
    color: gray;
    }
    .final {
    color: black;
    padding-right: 3px;
    }
    .button {
    display: none;
    }
    .marquee {
    margin: 20px auto;
    }

    #buttons {
    margin: 10px 0;
    position: relative;
    top: -50px;
    }

    #copy {
    margin-top: 20px;
    }

    #copy > div {
    display: none;
    margin: 0 70px;
    }
  
a.c1 {font-weight: normal;}
    
.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('https://lab.iamrohit.in/loader/loader.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}
#tp{
	color: #0a0a0a;
}








/* buttons of the text to voice css */


    /* Dono buttons ke liye common style */
    .btn-voice {
        height: 35px;
        width: 100px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 5px;
        border: none;
        cursor: pointer;
        outline: none;
        color: white;
        transition: all 0.3s ease; /* Smooth hover effect */
    }

    /* Speak button (Text-to-Voice) */
    #btn {
        background-color: #007BFF; /* Blue */
    }

    #btn:hover {
        background-color: #0056b3;
        color: #ffffff;
    }

    /* Listen button (Voice-to-Text) */
    #listenBtn {
        background-color: #28a745; /* Green */
    }

    #listenBtn:hover {
        background-color: #218838;
    }

    /* JAB SUN RAHA HO (Listening State) */
    #listenBtn.listening {
        
        background-color: #dc3545; /* Red */
        color: #ffffff;
        animation: pulse 1.2s infinite; /* Animation add kiya */
       
    }





