
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #f1eaea;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    /* padding: 10px 20px 22px 20px; */
}

.logo img{
    height: 109px; /* Adjust the height of your logo */
    width: 100px;
    margin-right: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar-left, .navbar-right {
    display: flex;
}

.navbar-left a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

.navbar-right a {
    margin-left: 20px; /* Adjust the spacing between categories */
}

/* Style for colorful boxes */
.navbar a {
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.navbar-left a {
    background-color: #e74c3c;
}

.navbar-right a {
    background-color: #e74c3c;
}

.navbar a:hover {
    background-color: #633a99;
}

/* Adjust the spacing between the logo and the first box */
.navbar-left a:first-child {
    margin-left: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: block;
}

.hero-section img {
    width: 100%;
    height: 98%;
    opacity: 20;
}



.hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #000000;
}

.hero-text p {
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/*Css typewriter animation*/
.hero-text{ display: inline-block;}

.autotext{
    font-size: 5em;
    font-family: verdana;
    letter-spacing: 10px;
    /*border-right: 5px solid; ----> This part is giving a cursor*/
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation:
         typing 4s,
         showSecondParagraph 4s; /* Animation to reveal the second paragraph after the delay */
}

@keyframes typing {
    0% { width: 0 }
    50% { width: 100% }
    55% { border-color: transparent } /* Hide cursor briefly after first paragraph */
    60% {
        font-size: 2em; /* Adjust font size for the second paragraph */
        width: 100%;
    }
    100% { width: 100% }
}

/* Additional keyframes for the second paragraph */
@keyframes typing2 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes showSecondParagraph {
    to {
        opacity: 1; /* Make the second paragraph visible */
    }
}

.small-text {
    font-size: 1em; /* Adjust the font size for the second paragraph */
    white-space: nowrap;
    overflow: hidden;
    position: relative; /* Position the second paragraph relative to the container */
    top: 70%; /* Align the second paragraph with the top of the container */
    left: 0; /* Align the second paragraph with the left of the container */
    opacity: 0; /* Initially hide the second paragraph */
    animation: typing2 2s ease-in-out 4s, fadeIn 1s 4s forwards; /* Delay the second paragraph animation by 4 seconds and fade it in */
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Initially hidden */
    }
    to {
        opacity: 1; /* Faded in */
    }
}

/*glass-effect*/
.glass-effect {
    position: absolute;
    border-radius: 30px;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 80%;
    max-width: 800px;
    max-height: 200px;
    background: rgba(255, 255, 255, 0.2); /* Adjust the alpha value for transparency */
    z-index: 2; /* Place it above the hero image and behind the text */
    backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
}







.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    padding: 20px;
}

/* Adjust column width for larger screens if needed */
@media screen and (min-width: 768px) {
    .column {
        width: 50%;
    }
}




.row {
    display: flex;
    /* flex-wrap: wrap; */
}

.column {
    flex: 1;
    padding: 20px;
}

/* Adjust column width for larger screens if needed */
/* @media screen and (min-width: 768px) {
    .column {
        width: 50%;
    }
} */

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="submit"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}
