*{
    margin: 0;
    padding: 0;
}
html {  
    scroll-behavior: smooth;  
}
body{
    background-color: #050909;
    font-family: "Inter", sans-serif;
    color: white;
}
.headersection{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8%;
    height: 68px;
}
.headerbtnsection{
    border: 1px solid #404040;
    padding: 6px;
    border-radius: 12px;
}
.headerbtncontainer{
    display: flex;
    gap: 4px;
}
.headerlogo{
    width: 70%;
    height: auto;
}
.logbtn{
    background-color: white;
    box-shadow: 0px 0px 6px 3px rgba(255, 154, 154, 0.25) inset;
    border: none;
    font-size: 14px;
    padding: 2px 15px;
    border-radius: 8px;
    color: black;
    font-weight: 500;
    line-height: 36px;
}
.subbtn{
    background-color: #3D6B6B;
    box-shadow: 0px 0px 6px 3px rgba(255, 154, 154, 0.25) inset;
    border: none;
    font-size: 20px;
    padding: 2px 15px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    line-height: 36px;
}
a{
    text-decoration: none;
}
h1{
    font-size: 82px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
}
h2{
    font-size: 32px;
    font-weight: 500;
}
h3{
    font-size: 16px;
    font-weight: 600;
}
p{
    font-weight: 400;
    font-size: 16px;
}
.firstsection{
    display: flex;
    margin: 24px;
    gap: 48px;
    align-items: flex-start;
}
.leftsection{
    flex: 20%;
    background-color: #142424;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.heading{

}
.subheading{
    color: rgba(255, 255, 255, 0.7);
}
.listing{
    margin-left: 24px;
    color: rgba(255, 255, 255, 0.7);
}
.rightsection{  
    flex: 80%;
}
.formsection{
    margin: 40px;
}
.formrow{
    display: flex;
    gap: 32px;
}
.formcontent{
    flex: 1;
}
label{
    color: rgba(255, 255, 255, 0.7);
}
input[type=text],input[type=email],input[type=number]{
    border: none;
    border-bottom: 1px solid #8D8D8D;
    background-color: transparent;
    color: white;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
    font-size: 1em;
    font-weight: 500;
}
input:focus{
    outline: none;
}
form{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.selecttitle{
    margin-bottom: 16px;
}
input[type=radio]{
    margin-bottom: 16px;
}
.footersection{
    display: flex;
    margin: 5%;
    color: white;
    justify-content: space-between;
    align-items: center;
}
.footerdetail{
    display: flex;
    flex-direction: column;
    gap: 33px;
}
.footerphonenum{
    font-weight: 500;
    font-size: 20px;
}
.footeremail{
    font-weight: 400;
}
.footerlinktitle{
    font-weight: 900;
    font-size: 18px;
}
.footerlink{
    display: flex;
    gap: 25px;
    flex-direction: column;
}
.footerlinkrow{
    display: flex;
    gap: 60px;
    text-align: left;
}
.footerlinkrow a{
    flex: 1;
}
hr{
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 8%;
}
.footersection1{
    display: flex;
    color: white;
    justify-content: center;
}
.copyrightsection{
    margin: 2% 8%;
}
a{
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}
.mobiletablehead{
    display: none;
}
@media only screen and (max-width: 480px){
    .pricingbtntd{
        padding: 20px 0;
    }
    .mobiletablehead{
        border-bottom: none;
        font-size: 12px;
        display: table-cell;
        background-color: #142424;
        padding: 6px;
    }
    td{
        font-size: 14px;
    }
    .rowheader{
        display: none;
    }
    .addonrow{
        flex-direction: column;
    }
    .footersection{
        flex-direction: row;
        gap: 24px;
    }
    .footerlink{
        gap: 8px;
    }
    .footerlinkrow{
        flex-direction: column;
        gap: 8px;
    }
    .maincontainer{
        overflow: hidden;
    }
    .midtablecontent{
        background-color: transparent;
    }
    .midtable{
        background-color: transparent;
    }
    .footerphonenum{
        font-size: 14px;
    }
    .footersection{
        align-items: start;
    }
    .linkmobile{
        display: none;
    }
    .titlecontainer{
        margin: 30% 8% 5% 8%;
    }
}
a{
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.titlecontainer{
    display: flex;
    justify-content: center;
    text-align: center;
    background-image: url(../image/titleheaderbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 4% 15%;
    border-radius: 8px;
}
.titlesection{
    display: flex;
    flex-direction: column;
    margin: 4% 8%;
    gap: 24px;
}

/* Mobile Menu Icon */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    margin-left: auto;
    padding: 10px;
  }
  
  .mobile-menu-icon i {
    font-size: 24px;
    color: white;
  }
  
  /* Mobile Navigation Overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #050909;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    display: none;
  }
  
  .mobile-nav-overlay.active {
    transform: translateY(0);
  }
  
  .mobile-nav-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .mobile-nav-logo {
    width: 40%;
  }
  
  .mobile-nav-close {
    cursor: pointer;
  }
  
  .mobile-nav-close i {
    font-size: 24px;
    color: white;
  }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
  }
  
  .mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  
  .mobile-nav-btn {
    display: block;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
  }
  
  .mobile-nav-btn:first-child {
    background-color: #f5f5f5;
    color: #000;
  }
  
  .mobile-nav-btn:last-child {
    background-color: #000;
    color: #fff;
  }
  
  @media screen and (max-width: 768px) {
    .mobile-menu-icon {
      display: block;
    }
    
    .mobile-nav-overlay {
      display: block;
    }
    
    .headerbtncontainer {
      display: none;
    }
    .firstsection{
        flex-direction: column;
    }
    .titlelogo{
        display: none;
    }
  }