*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.inter-font{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}
body{
    background-color: #1A0B2E;
}

/* Navbar Section */
.nav{
    display: flex;
    background-color:#1A0B2E ;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0px;
    height: 92px;
    border-bottom: 2px solid rgba(65, 37, 103, 1)
}
.nav h1{
    color: #FFFFFF;
    background-color: #1A0B2E;
}
#Tech-Wave{
    font-size: 3rem;
    font-weight: 700;
    margin-left: 200px;
}
#Wave{
    background: linear-gradient(to bottom,
        #9d26d1 38%,
        #ff1f8e 60%,  
        #ff8e5e  81%     
    );
    
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent;  
}
nav .menu{
    display: flex;
    margin-left: 314px;
    list-style-type: none;
    gap: 2rem;
}
nav .menu a{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
}
.hamburger-icon {
    display: none;
}

/* Button Related Style */
.btn{
    background: linear-gradient(30deg,
     rgba(247, 233, 63, 1),
     rgba(251, 9, 180, 1),
     rgba(145, 0, 248, 1));

    padding: 12px 16px;
    border-radius: 100px;
    margin-left: 314px;
    font-size: 16px;
    font-weight: 600;
    gap:4px;
}

/* Banner Related Styles*/
#banner{
    background-image: url(assets/hero-bg.png);
    background-repeat: no-repeat;
    max-width: 1600px;
    margin: 0 auto;
    height: 760px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}
#banner-content{
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
}
#banner-image-2{
    position: absolute;
    top: 89px;
    left: 50%;
    transform: translateX(-50%); 
}
.new-badge {
    position: absolute;
    top: 20px;
    margin-left: 240px;
    background-color: #00FF88;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);  
    color: #1A0B2E;
    
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    z-index: 10; 
    
}
.banner-txt{
    margin-top: 40px;   
}
.banner-txt h1{
    font-size: 4rem;
    font-weight: 1500;
    color: #FFFFFF;
}
.banner-txt p{
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    padding: 8px 24px ;
}
.banner-buttons{
    display: flex;
    gap: 8px;
}
.btn-1{
    background: linear-gradient( 30deg,
     rgba(247, 233, 63, 1),
     rgba(251, 9, 180, 1),
     rgba(145, 0, 248, 1));

    color: aliceblue;
     padding: 12px 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    gap:8px;
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); 
    }
    100% {
        transform: scale(1);
    }
}
.btn-1 {
    animation: pulse-animation 2s infinite ease-in-out; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.btn-1:hover {
    animation-play-state: paused; 
    box-shadow: 0 0 20px rgba(251, 9, 180, 0.6);
    background: linear-gradient(30deg, #ff8e5e, #ff1f8e, #9d26d1); 
}
.btn-2{
     background-color: #1A0B2E;
     color: #00FF88;
     border: 2px solid #00FF88;
     padding: 12px 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    gap:8px;
    display: inline-flex;
    align-items: center;
}

/* About Section Related Styles */
#about{
    height:646px;
    background: #1A0B2E; 
    max-width: 1600px;
    margin: 0 auto;
}
#about-txt{
    width:1200px;
    height: 222px;
    padding-top: 40px;
    margin-left: 200px;
    background: #1A0B2E;
    align-items: center;
    text-align: center;
    color: #ffffff; 
}
#about-txt h1{
    font-size: 48px;
    font-weight: 800;
}
#about-txt p{
    font-size: 16px;
    font-weight: 400;
    margin-top:16px ;
    line-height: 2;  
}
.txt-bottom{
    padding-top: 15px;
}
.about-line {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 80px auto; 
    width: 1200px;
    display: block;
}
#about-box{
    display: flex;
    width: 1200px;
    height: 94px;
    margin-top: 80px;
    margin-left: 200px;
    gap:180px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#box1,#box2,#box3,#box4{
    width:240px ;
    height:94px ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap:16px;
}
#about-box h1{
    font-size: 48px;
    font-weight: 1000;
    color: #00FF88;
}
#about-box p{
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}
#choose{
    height: 1121px;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 0px;
    background: #230E3D;
    display: flow-root;
}
.choose-heading {
    height: 58px;
    margin-left:200px;
    width: 1200px;
    margin-top: 120px;
    text-align: center;
    background: #230E3D;
}
.choose-heading h1{
    font-size: 48px;
    font-weight: 1000;
    color: #ffffff;
}
.box-grid{
    width: 1200px;
    height: 783px;
    margin-top: 40px;
    margin-left: 200px;
    background: #230E3D;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;    
}
.box-grid > div {
    background:  rgb(53, 16, 99,.3); 
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;  
}
#choose-box1 {
    grid-row: span 2; 
}
#choose-box2, #choose-box3 {
    grid-column: span 2;   
}
#choose-box4 {
    grid-column: span 2;
}
.box-grid img {
    width: 45px;
    margin-bottom: 20px;
}
#choose-box2 img, #choose-box3 img {
    margin-bottom: 0;
}
.box-grid h1 {
    font-size: 24px;
    padding-top: 16px;
    color: #ffffff;
}
.box-grid p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.7);
}
