* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    position: relative;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/keenbackground image.jpg') no-repeat center center;
    background-size: contain;
    opacity: 0.1; /* Adjust the opacity value here */
    z-index: -1; /* Ensure the pseudo-element stays in the background */
}


.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.container h1{
   /* width: 60%;
    margin: 20px auto;
    */
    font-size: 48px;
    justify-content: center;
    text-align: center;
}
.abt_container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    display: flex;
}
.abt_containerlft{
     width: 30%;
     margin: none;
     margin-left: 15%;
}
.abt_containerlft img{
    max-width:100%;
    max-height: 100%;
}
.abt_containerrght{
    width: 40%;
    margin-left: 7.5%;
}
header {
    /*background: #333;
    color: #fff;
    */
    padding-top: 30px;
    min-height: 70px;
    /*  border-bottom: #77aaff 3px solid;
    */
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header ul li {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

header nav {
    float: right;
    margin-top: 10px;

}

#home {
    /*background: #77aaff;
    color: #fff;
    */
    padding: 60px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

#about, #services, #contact {
    padding: 60px 0;
    text-align: center;
}


form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

 #area {
        padding: 60px 0;
        text-align: center;
      }

#area p{
    width: 60%;
    margin: 20px auto;
    justify-content: center;
}

/* Pricing Table CSS */
#pricing h1{
    width: 60%;
    margin: 20px auto;
     font-size: 48px;
    justify-content: center;
    text-align: center;
}

#pricing p{
    width: 60%;
    margin: 20px auto;
    justify-content: center;
}
.pricing-table {
    width: 50%; /* Adjust the width as needed */
    margin: 20px auto; /* Center the table */
    border-collapse: collapse;
    font-size: 18px;
    text-align: left;
}
.pricing-table th, .pricing-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.pricing-table th {
    background-color: #f4f4f4;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f1f1f1;
}
.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f1f1f1;
}


.social-media-icons {
            display: flex;
            gap: 30px;
            justify-content: center;


}
.social-media-icons a {
            text-decoration: none;
            color: inherit;
            font-size: 40px;
            transition: transform 0.3s;
}
.social-media-icons img {
            width: 40px;
            height: 40px;
            transition: transform 0.3s;
}
.social-media-icons img:hover {
            transform: scale(1.1);
 }

.hamburger{
    position: relative;
    display: block;
    width: 35px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
}

.hamburger .bar, .hamburger:after, .hamburger:before{
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: #000000;
    margin: 6px 0px;
    transition: 0.4s;
}
.hamburger.is-active:before{
    transform: rotate(-45deg) translate(-9px, 6px);
    
}
.hamburger.is-active:after{
    transform: rotate(45deg) translate(-9px, -8px);
}

.hamburger.is-active .bar{
    opacity: 0;
    
}
.mobile-nav{
    opacity: 50%;
    position:fixed;
    top:0;
    left:100%;
    width:100%;
    min-height:100vh;
    display:block;
    z-index:98;
    background-color:#dddddd;
    padding-top:120px;
    -webkit-transition:0.4s;
    transition:0.4s
}
.mobile-nav.is-active{
    left:0
}
.mobile-nav a{
    display:block;
    width:100%;
    max-width:200px;
    margin:0 auto 16px;
    text-align:center;
    padding:12px 16px;
    background-color:#1f103F;
    color:#FFF;
    text-decoration:none
}
.mobile-nav a:hover{
    background-color:#24104f
}
@media (min-width: 768px){
    .mobile-nav{display:none;}
    .hamburger{display:none;}
}

@media (max-width: 1024px){
.container{padding-left:64px;padding-right:64px}
}
@media (max-width: 767px){.container{padding-left:32px;padding-right:32px}}