*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgb(12, 0, 22);
    font-family: 'Inter', sans-serif;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    gap: 16px;
    padding: 16px 64px;
    border: 0 solid #e5e7eb;
    border-bottom: #343434 solid 1px;
}
.navbar .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.navbar .logo .symbol{
    color:  rgb(12, 0, 22);
    background-color: #A65EED;
    font-size: 18px;
    font-weight: 700;
    width: 32px;
    height: 32px;  
    padding: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .logo .text{
    color: white;
    font-size: 16px;
    font-weight: 700;
}
.navbar ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.navbar ul li a{
    color: rgb(167, 165, 168);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}
.navbar ul .get-started
{
    padding: 0px;
}
.navbar ul .get-started button{
    background-color: #A65EED;
    color: #2f134b;
    padding: 8px;
    border: none;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 400;
}
.navbar ul .get-started button:hover{
    background-color: rgb(48, 0, 78);
    color: rgb(255, 255, 255);
}
.navbar ul li a:hover{
    color: white;
    font-weight: 500;
}
@media (max-width: 768px){
.navbar{
    flex-direction: column;
    align-self:center;
    gap: 16px;
    padding: 16px 16px;
}
.navbar .logo .symbol{
    font-size: 16px;
    font-weight: 700;
    width: 24px;
    height: 24px;  
    padding: 8px; 
}
.navbar .logo .text{
    font-size: 16px;
    font-weight: 700;
}
.navbar ul li a{
    font-size: 13px;
    font-weight: 400;
}
.navbar ul{
    flex-direction: column;
    align-self:center;
    gap: 16px;
}
}
.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px;
    color: white;
    text-align: center;
}
.hero .hero_content {
    max-width: 600px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.hero .hero_content .subheading{
    color: #A65EED;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero .hero_content .heading{
    font-size: 88px;
    font-weight: 700;
}
.hero .hero_content .description{
    color: rgb(106, 104, 106);
    font-size: 16px;
    font-weight: 400;
    width: 400px;
}
.hero .hero_content .features{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    font-weight: 300;
    color: #A65EED;
}
@media (max-width: 768px) {
    .hero{
        padding: 32px;
    }
    .hero .hero_content .subheading{
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero .hero_content .heading{
    font-size: 40px;
    font-weight: 700;
}
.hero .hero_content .description{
    font-size: 16px;
    font-weight: 400;
}
.hero .hero_content .features{
    gap: 20px;
    font-size: 14px;
    font-weight: 300;
}
.hero .hero_content {
    min-height: 200px;
    gap: 8px;
}
}
.companies {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 64px;
}
.companies .title{
    color:rgb(99, 97, 100);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.companies .company_names{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px ;
    gap: 40px;
    color: rgb(99, 97, 100);
}
.companies .company_names h3:hover{
    color: #89868a;
    font-weight: 300px;
}
@media (max-width: 786px){
    .companies{
        gap: 16px;
        padding: 32px;
        font-size: 13px;
    }
    .companies .company_names{
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
}
}
.capabilities{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 64px;
    gap: 64px;
}
.capabilities .capability-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px ;
}
.capabilities .capability-content .subheading{
   color: #A65EED;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.capabilities .capability-content .heading{

    font-size: 40px;
    font-weight: 700;
    color: white;
}
.capabilities .capability-content .description{

    color: rgb(106, 104, 106);
    font-size: 16px;
    font-weight: 400;
}
.capabilities .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.capabilities .container .card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    border: #343434 solid 1px;
    border-radius: 8px;
    padding: 24px;
    gap: 8px;
}
.capabilities .container #card1 {
    grid-column: span 2;
    grid-row: span 2;
}
.capabilities .container #card4 {
    grid-column: span 2;
}
.capabilities .container #card5{
    grid-column: span 2;
}
.capabilities .container #card6{
    grid-column: span 2;
}
.capabilities .container .card h2 {
    color: white;
}
.capabilities .container .card .subheading{
    color: #A65EED;
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.capabilities .container .card .heading{
    font-size: 18px;
    font-weight: 700;
    color: white;
}
.capabilities .container .card .description{
    color: rgb(122, 120, 122);
    font-size: 14px;
    font-weight: 400;
}
.capabilities .container .card:hover {
border: #A65EED solid 1px;
box-shadow: 0 0 2px #a65eed,
            0 0 4px #a65eed,
            0 0 8px #a65eed;
            cursor:pointer;
            transform: translateY(-5px);
}
.capabilities .container .card .image{
    width: 100%;
    min-height: 150px;
    object-fit: cover;
}
@media (max-width: 768px)
{
    .capabilities{
    gap: 48px;
    padding: 32px;
}
 .capabilities .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
 }
.capabilities .capability-content{
    justify-content: center;
    align-items: center;
     text-align: center;
}
.capabilities .capability-content .subheading{
font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.capabilities .capability-content .heading{
    font-size: 32px;
    font-weight: 300;
    color: white;
}
.capabilities .capability-content .description{
font-size: 14px;
    font-weight: 400;
}
.capabilities .container .card{
    border-radius: 8px;
    padding: 16px;
}
   .capabilities .container .card .subheading{
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
}
.capabilities .container .card .heading{
    font-size: 16px;
    font-weight: 700;
}
.capabilities .container .card .description{
    font-size: 14px;
    font-weight: 400;
}
}
.social-proof{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 64px;
    padding: 64px;
}
.social-proof .proof-content .subheading{
color: #A65EED;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.social-proof .proof-content .heading{
font-size: 40px;
    font-weight: 700;
    color: white;
}
.social-proof .container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.social-proof .container .card{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    border: #474548 solid 1px;
    border-radius: 5px;
    background-color: #17111e;
    width: 350px;
    min-height: 100px;
    padding:16px;
    text-align: left;
    
}
.social-proof .container .card p{
     color: rgb(145, 145, 146);
    font-size: 14px;
    font-weight: 400;
   
}
.social-proof .container .card h3{
     color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 786px) {
    .social-proof{
   gap: 64px;
    padding: 32px;
}
.social-proof .proof-content .subheading{
    font-size: 13px;
    font-weight: 300;
}
.social-proof .proof-content .heading{
font-size: 32px;
    font-weight: 700;
    color: white;
}
.social-proof .container{
    flex-direction: column;
    gap: 16px;
}  
.social-proof .container .card p{
    font-size: 13px;
}
.social-proof .container .card h3{
    font-size: 14px;
}
}
.pricing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 64px;
}
.pricing .subheading{
color: #A65EED;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pricing .heading{
    font-size: 40px;
    font-weight: 700;
    color: white;
}
.pricing .description{
color: rgb(106, 104, 106);
    font-size: 16px;
    font-weight: 400;
}
.pricing .container{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 24px;
}
.pricing .container .card{
    flex: 1; /* Teeno cards barabar jagah lenge */
    max-width: 600px; /* Ek limit set karein */
    padding: 40px; /* Inside spacing barhaein */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    border: #a65eed solid 1px;
    border-radius: 5px;
    background-color: rgb(10, 0, 16);
    box-shadow: 0px 0px 12px 2px #2f134b;
    gap: 10px;
}
.pricing .container .card .heading{
    color: white;
    font-size: 18px;
    font-weight: 700;
}
.pricing .container .card p{
   color: rgb(106, 104, 106);
    font-size: 12px;
    font-weight: 300;
}
.pricing .container .card .Subheading{
 color: white;
 font-size: 20px;
    font-weight: 300;
}
.pricing .container .card ul{
display: flex;
flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.pricing .container .card ul li{
    
    list-style:disc;
    color: rgb(102, 101, 103);
    font-size: 12px;
    font-weight: 300;
}
.pricing .container button{
    padding: 12px;
    width: 100%;
    background-color: #A65EED;
    color: white;
    border: none;
    border-radius: 7px;
    cursor: pointer;
     font-weight: bold;
     margin-top: auto;
}
.pricing .container button:hover{
    background-color: rgb(48, 0, 78);
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: white solid 1px;
}
@media (max-width: 786px){
    .pricing {
    margin-bottom: 32px;
}
.pricing .subheading{
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.pricing .heading{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing .description{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}
.pricing .container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}
.pricing .container .card{
    flex: 1; /* Teeno cards barabar jagah lenge */
    max-width: 300px; /* Ek limit set karein */
    padding: 16px 24px; /* Inside spacing barhaein */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: #a65eed solid 1px;
}
.pricing .container .card .heading{
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing .container .card p{
    color: rgb(145, 145, 146);
    font-size: 14px;
    font-weight: 300;
}
.pricing .container .card .Subheading{
 color: white;
 font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    margin-top: 16px;
}
.pricing .container .card ul li{
    list-style:disc;
    color: rgb(102, 101, 103);
    font-size: 12px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 16px;
}
.pricing .container button{
    padding: 12px;
    width: 100%;
    background-color: #A65EED;
    color: white;
    border: none;
    border-radius: 7px;
    cursor: pointer;
     font-weight: bold;
     margin-top: auto;
}
.pricing .container button:hover{
    background-color: rgb(48, 0, 78);
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: white solid 1px;
}
}
.get-started{
    padding: 64px;
}
.get-started .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border: solid 1px #A65EED;
    border-radius: 7px;
    background-color: #4c00ff0d;
    padding: 64px;
    text-align: center;
}
.get-started .container .subheading{
color: #A65EED;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.get-started .container .heading{
    font-size: 40px;
    font-weight: 700;
    color: white;
}
.get-started .container .description{

    color: rgb(106, 104, 106);
    font-size: 14px;
    font-weight: 400;
    width: 300px;
    word-spacing: 2px;
}

.get-started .container .input #email{
    padding: 8px;
    background-color: #160328;
    color: #ffffff;
    border-radius: 15px;
    margin-right: 26px;
    width: 200px;
    border: solid 1px #89868a ;
    font-size: 14px;
}

.get-started .container .input button{
    padding: 4px;
    background-color: #a65eed;
    color: #ffffff;
    border-radius: 15px;
    margin-right: 26px;
    width: 150px;
    border: solid 1px #ffffff ;
    font-size: 14px;
    font-weight: 400;
}
.get-started .container .input button:hover{
 background-color: rgb(48, 0, 78);
    color: rgb(255, 255, 255);
}
.get-started .container .subscription{
font-size: 13px;
font-weight: 300;
color: #484848;
margin-top: 8px;
word-spacing: 2px;
}
@media (max-width: 768px)
{
    .get-started{
    padding: 16px;
}
 .get-started .container{
    padding: 16px;
}
.get-started .container .subheading{
font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.get-started .container .heading{
    font-size: 32px;
    font-weight: 300;
    color: white;
}
.get-started .container .description{
font-size: 14px;
    font-weight: 400;
}
.get-started .container .subscription{
font-size: 13px;
font-weight: 300;
color: #484848;
margin-top: 8px;
word-spacing: 2px;
}
}
.footer{
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 64px;
    border: 0 solid #e5e7eb;
    border-top: #343434 solid 1px;
}
.footer .teams{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}
.footer .teams .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.footer .teams .logo .symbol{
    color:  rgb(12, 0, 22);
    background-color: #A65EED;
    font-size: 18px;
    font-weight: 700;
    width: 32px;
    height: 32px;  
    padding: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .teams .logo .text{
    color: white;
    font-size: 16px;
    font-weight: 700;
}
.footer .teams p{
    color: rgb(99, 97, 100);
    font-size: 12px;
    font-weight: 300;
    width: 200px;
}
.footer .teams .options{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.footer .teams .options a{
    background-color: #474548;
    color: #160328;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    border: none;
    font-size: 10px;
    text-align: center;
    padding: 4px;
}
.footer .teams .options a:hover{
    color: #ffffff;
    font-weight: 400;
}
.footer .items{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}
.footer .items h6{
    color: white;
    font-weight: 700;
}
.footer .items ul{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}
.footer .items ul li{
    color: rgb(99, 97, 100);
    font-size: 12px;
    font-weight: 300;
    list-style: none;
}
@media (max-width: 768px){
    .footer{
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px;
    }
    .footer .teams{
        align-items: center;
        text-align: center;
    }
    .footer .teams p{
        width: 100%;
    }
     .footer .items ul{
    flex-direction: column;
    align-items: center;
    gap: 8px;
    }
    .footer .items{
        justify-content: center;
        align-items: center;
    }

}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 80px;
    border: 0 solid #e5e7eb;
    border-top: #343434 solid 1px;
}
footer p{
    color: rgb(99, 97, 100);
    font-size: 12px;
    font-weight: 300;
}
footer .highlight{
    color: #A65EED;
    font-weight: 500;
}
@media (max-width: 768px){
    footer{
        justify-content: center;
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    footer p{
        font-size: 13px;
    }
}