* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    margin:0;
    background: linear-gradient(
        to bottom,
        #4a1b08 0%,
        #2b0c01 35%,
        #140501 65%,
        #000000 100%
    );
    background-attachment: fixed;
    color:#fff;
    font-family: Arial, Helvetica, sans-serif;
}


nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: sticky;
    box-shadow: 0 0 10px #000;
}

.logo {
    font-size: 15px;
    font-weight: bold;
    color: #ff6a00;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    text-decoration: underline;
    font-style: italic;

}

ul {
    display: flex;
    list-style: none;
}

ul li {
    margin: 0 20px;
}

ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

ul li a:hover{
    color: #ff6a00;
}

.search {
    display: flex;
}

.search input {
    padding: 8px;
    width: 250px;
    border: 1px solid #fff;
    outline: none;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.search input:focus{
    outline: none;
    border: 1px solid #ff6a00;
}

.search input:hover{
    outline: none;
    border: 1px solid #ff6a00;
}

.search button {
    padding: 10px;
    font-size: 15px;
    text-transform: uppercase;
    width: 100px;
    border: none;
    outline: none;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.search button:hover {
    background: #ff6a00;
    color: #000;
}

.hero {
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: relative;

}

.hero .content {
    width: 50%;
}

.hero .content h1 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.7;

}

.white {
    color: #fff;
}

.orange {
    color: #ff6a00;
}

.hero .content p {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-style: italic;
    line-height: 1.9;


}

.sub {
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    color: #ff6a00;
}

.hero .content button {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-style: italic;
    background: #2b1e16;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;

}

.hero .content button:hover {
    background: #ff6a00;
    color: #fff;
}

.form-box {
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(141, 137, 137, 0.12); /* transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* safari */   
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 10px;
}

.form-box h1 {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.7;
    background-color: #ff6a00;
    width: 80%;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-box input {
    padding: 10px;
    margin: 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ff6a00;
    color: #fff;
    cursor: pointer;
    width: 80%;
}



.form-box button {
    width: 80%;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    background-color: #ff6a00;
    border: none;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    cursor: pointer;
}

.form-box button:hover{
    background: #2b0c01;
    color: #fff;
}

.form-box p {
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    cursor: pointer;
}

.form-box p span {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    cursor: pointer;
    color: #ff6a00;
}

.form-box p span:hover{
    color: #2b0c01;
}

.social {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px;
}

.social img:hover{
    transform: scale(1.2);
}

.social img {
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    cursor: pointer;
}

.intro-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 100px;
    width: 100vw;
   
}
.intro-container .content{
    width: 50%;

}
.intro-container .content h1{
    font-size: 40px;
    font-weight: bold;
    color: #f9d423;
    text-shadow: 0 0 4px #f9d423;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.7;
}
.intro-container .content p{
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #ccc;
    text-transform: capitalize;
    font-style: italic;
    line-height: 1.7;

}
.intro-container .content button{
    font-size: 20px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-style: italic;
    background: #2b1e16;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.intro-container .content button:hover{
    background: #ff6a00;
    color: #fff;
}
.intro-container .image img {
    border-radius: 50%;
    box-shadow: 0 0 30px #000;
}

.cards-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
  margin-top: 100px;
}

.card {
  background: #1e1e1e;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.card img {
  width: 80px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffa500;
}

.card p {
  font-size: 0.9rem;
}

.footer {
  background-color: #111; /* Dark background */
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  color: #f9d423; /* Yellowish accent color */
  margin-bottom: 15px;
}

.footer p, .footer a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer a:hover {
  color: #f9d423;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 25px;
  filter: invert(1); /* White icons for dark background */
  transition: 0.3s;
}

.social-icons img:hover {
  filter: invert(0.7) sepia(1) saturate(5) hue-rotate(40deg);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}





