@media (max-width: 1440px){
    body{
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    header{
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    header i{
        font-size: 25px;
        cursor: pointer;

    }

    #menu-toggle {
        display: none;
    }

    .menu {
        position: absolute;
        top: 60px;
        left: 42.5%;
        width: 15%;
        height: 15%;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        border-radius: 30px;
    }

    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu ul li {
        padding: 15px;
        text-align: center;
        border-bottom: 1.5px solid rgb(186, 186, 186);
        border-radius: 40px;
    }

    .menu ul li a {
        text-decoration: none;
        color: #dedede;
        font-weight: bold;
    }

    #menu-toggle:checked + header + .menu {
        transform: scaleY(1);
    }

    .container1{
        width: 100%;
        height: 90vh;
        background-image: url("https://wallpaperaccess.com/full/12463326.png");
        background-size: cover;
        background-position: center;
        display: flex;
    }

    .cont1-box1{
        width: 50%;
        height: 100%;
    }

    .box1{
        text-align: center;
    }

    .box1 button{
        width: 130px;
        height: 40px;
        border: 0;
        background: darkgoldenrod;
        color: #c4c4c4;
        border-radius: 50px;
        font-size: 12px;
        margin-top: 130px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .box1 h1{
        font-size: 35px;
        color: #ffffff;
    }

    .box1 p{
        font-size: 15px;
        color: #989898;
    }

    .box2 img{
        width: 350px;
        height: 350px;
        margin-left: 20%;
        margin-top: 12%;
    }

    .container2{
        width: 100%;
        height: 120vh;
        text-align: center;
        background: #dedede;
    }

    .cont2-text h1{
        margin: 0;
        padding-top: 40px;
        font-size: 30px;
    }

    .cont2-text p{
        font-size: 15px;
    }

    .cont2-boxes{
        width: 100%;
        height: 80%;
        display: flex;
    }

    .cont2-box1{
        width: 50%;
        height: 100%;
    }

    .cont2-box1 img{
        width: 80%;
        height: 70%;
        object-fit: cover;
        margin-top: 50px;
    }

    .cont2-box1-box{
        width: 60%;
        height: 35%;
        margin-top: 50px;
        text-align: left;
        background: #ffffff;
        margin-left: 20%;
        border-radius: 15px;
    }

    .cont2-box1-box i{
        width: 50px;
        height: 30px;
        font-size: 18px;
        color: #000000;
        background: #ffcc00;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 18px;
        border-radius: 50%;
        margin-left: 83%;
        margin-top: 20px;
    }

    .cont2-box1-box h2{
        margin-left: 10px;
        margin-top: 10px;
        font-size: 20px;
    }

    .cont2-box1-box p{
        margin-left: 10px;
        font-size: 12px;
    }

    .container3{
        width: 100%;
        height: 55vh;
        background: rgb(27, 27, 27);
    }

    .cont3-content{
        width: 90%;
        display: flex;
        margin-left: 5%;
    }

    .cont3-text{
        color: rgb(201, 201, 201);
        padding: 40px;
        margin-left: 1%;
    }

    .cont3-text h1{
        font-size: 35px;
    }

    .cont3-text p{
        color: #989898;
    }

    .container3 button{
        width: 200px;
        height: 40px;
        border: 0;
        background: rgb(255, 185, 9);
        color: #ffffff;
        border-radius: 50px;
        margin-top: 150px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        margin-left: 25%;
    }

    .container3 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .container4{
        width: 100%;
        height: 80vh;
        align-items: center;
        text-align: center;
        padding-top: 50px;
    }

    .cont4-images{
        width: 80%;
        height: 60%;
        margin-left: 10%;
        display: flex;
        gap: 3px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .container5{
        width: 100%;
        height: 100vh;

    }

    .cont5-boxes{
        width: 80%;
        height: 100%;
        display: flex;
        margin-left: 10%;
        gap: 10px;
    }

    .cont5-box{
        width: 33%;
        height: 80%;
        text-align: center;
        background: #efefef;
        /* border: 1px solid rgb(0, 0, 0); */
        border-radius: 20px;
        margin-top: 100px;
    }

    .cont5-box2{
        background: rgb(182, 182, 182);
    }

    .cont5-box button{
        width: 130px;
        height: 40px;
        border: 0;
        color: #3f3f3f;
        border-radius: 50px;
        margin-top: 20px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        border-bottom: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box button:hover{
        background: #898989;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
        border-top: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box i{
        font-size: 40px;
        width: 80px;
        height: 60px;
        color: #000000;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 20px;
        border-radius: 50%;
        margin-top: 20px;
        border-bottom: 1.5px solid #000;
    }

    .cont5-box h1{
        margin-top: 30px;
    }

    .cont5-box p{
        font-size: 14px;
    }

    .container6{
        width: 100%;
        height: 120vh;
        background: rgb(21, 21, 30);
        position: relative;
    }

    .cont6-content{
        width: 83%;
        height: 90%;
        margin-top: 40px;
        margin-left: 8%;
        position: absolute;
        position: relative;
        display: flex;
    }

    .cont6-text{
        width: 50%;
        height: 100%;
        padding: 20px;
    }

    .cont6-text h1{
        color: #efefef;
        font-size: 38px;
        margin-top: 30px;
    }

    .cont6-text p{
        color: #909090;
        font-size: 16px;
    }

    .cont6-text button{
        width: 200px;
        height: 50px;
        border: 1px solid darkgoldenrod;
        color: darkgoldenrod;
        border-radius: 50px;
        margin-top: 50px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        background: rgb(21, 21, 30);
    }

    .cont6-text button:hover{
        background: darkgoldenrod;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
    }

    .cont6-images{
        width: 50%;
        height: 100%;
        margin-top: 40px;
    }

    .cont6-img-box1{
        width: 100%;
        height: 50%;
        display: flex;
        gap: 50px;
        margin-top: 10px;
        margin-left: 20%;
    }

    .cont6-img1{
        text-align: center;
    }

    .cont6-img1 img{
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
    }

    .cont6-img1 h3{
        color: #efefef;
        font-size: 20px;
    }

    .container7{
        width: 100%;
        height: 100vh;
    }

    .cont7-content{
        width: 86%;
        height: 100%;
        margin-left: 7%;
        display: flex;
    } 

    .cont7-box1{
        width: 70%;
        height: 100%;
        padding: 20px;
    }

    .cont7-box1 h1{
        font-size: 40px;
        font-weight: 400;
        margin-top: 100px;
    }

    #message{
        width: 70%;
        height: 20vh;
        font-size: 20px;
        border: 2px solid grey;
        border-radius: 10px;
        padding: 20px;
        margin-top: 30px;
    }

    .cont7-h3{
        margin-top: 50px;
    }

    .cont7-h3 h3{
        font-size: 20px;
    }

    .contact-section {
        width: 30%;
        text-align: center;
    }

    .contact-section img {
        width: 350px;
        height: 350px;
        border-radius: 10px;
        margin-top: 130px;
        object-fit: cover;
        margin-left: 0px;
        margin-right: 33px;
    }

    .contact-section h3 {
        font-size: 22px;
        margin-bottom: 5px;
        margin-left: 0px;
        margin-right: 33px;
    }

    .contact-section p {
        font-size: 17px;
        color: green;
        margin-left: 0px;
        margin-right: 33px;
    }
    
    .container8{
        width: 100%;
        height: 100vh;
        margin-top: 150px;
        background-image: url("https://wallpaperaccess.com/full/12463199.jpg");
        background-size: cover;
    }

    .container9{
        width: 100%;
        height: 140vh;
        text-align: center;
    }

    .cont10{
        width: 100%;
        height: 200px;
        margin-top: -50px;
        text-align: center;
        align-items: center;
        justify-content: center;
        background-image: url("https://i.pinimg.com/originals/39/e9/a9/39e9a957f793c8702656e4af84b2dc3f.jpg");
        background-size: cover;
        background-position: center;
    }
}




@media (max-width: 1200px){
    body{
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    header{
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    header i{
        font-size: 25px;
        cursor: pointer;

    }

    #menu-toggle {
        display: none;
    }

    .menu {
        position: absolute;
        top: 60px;
        left: 42.5%;
        width: 15%;
        height: 15%;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        border-radius: 30px;
    }

    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu ul li {
        padding: 15px;
        text-align: center;
        border-bottom: 1.5px solid rgb(186, 186, 186);
        border-radius: 40px;
    }

    .menu ul li a {
        text-decoration: none;
        color: #dedede;
        font-weight: bold;
    }

    #menu-toggle:checked + header + .menu {
        transform: scaleY(1);
    }

    .container1{
        width: 100%;
        height: 90vh;
        background-image: url("https://wallpaperaccess.com/full/12463326.png");
        background-size: cover;
        background-position: center;
        display: flex;
    }

    .cont1-box1{
        width: 50%;
        height: 100%;
    }

    .box1{
        text-align: center;
    }

    .box1 button{
        width: 120px;
        height: 35px;
        border: 0;
        background: darkgoldenrod;
        color: #c4c4c4;
        border-radius: 50px;
        font-size: 12px;
        margin-top: 130px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .box1 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .box1 h1{
        font-size: 30px;
        color: #ffffff;
    }

    .box1 p{
        font-size: 12px;
        color: #989898;
    }

    .box2 img{
        width: 350px;
        height: 350px;
        margin-left: 20%;
        margin-top: 12%;
    }

    .container2{
        width: 100%;
        height: 130vh;
        text-align: center;
        background: #dedede;
    }

    .cont2-text h1{
        margin: 0;
        padding-top: 40px;
        font-size: 30px;
    }

    .cont2-text p{
        font-size: 15px;
    }

    .cont2-boxes{
        width: 100%;
        height: 80%;
        display: flex;
    }

    .cont2-box1{
        width: 50%;
        height: 100%;
    }

    .cont2-box1 img{
        width: 80%;
        height: 80%;
        object-fit: cover;
        margin-top: 50px;
    }

    .cont2-box1-box{
        width: 60%;
        height: 35%;
        margin-top: 50px;
        text-align: left;
        background: #ffffff;
        margin-left: 20%;
        border-radius: 15px;
    }

    .cont2-box1-box i{
        width: 50px;
        height: 30px;
        font-size: 18px;
        color: #000000;
        background: #ffcc00;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 18px;
        border-radius: 50%;
        margin-left: 83%;
        margin-top: 20px;
    }

    .cont2-box1-box h2{
        margin-left: 10px;
        margin-top: 10px;
        font-size: 20px;
    }

    .cont2-box1-box p{
        margin-left: 10px;
        font-size: 12px;
    }

    .container3{
        width: 100%;
        height: 55vh;
        background: rgb(27, 27, 27);
    }

    .cont3-content{
        width: 90%;
        display: flex;
        margin-left: 5%;
    }

    .cont3-text{
        color: rgb(201, 201, 201);
        padding: 40px;
        margin-left: 1%;
    }

    .cont3-text h1{
        font-size: 32px;
    }

    .cont3-text p{
        color: #989898;
        font-size: 15px;
    }

    .container3 button{
        width: 200px;
        height: 35px;
        border: 0;
        background: rgb(255, 185, 9);
        color: #ffffff;
        border-radius: 50px;
        margin-top: 120px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        margin-left: 17%;
    }

    .container3 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .container4{
        width: 100%;
        height: 100vh;
        align-items: center;
        text-align: center;
        padding-top: 50px;
    }


    .cont4-images{
        width: 80%;
        height: 70%;
        margin-left: 10%;
        display: flex;
        gap: 3px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .cont4-images img{
        width: 23.8%;
        height: 50%;
        object-fit: cover;
        border-radius: 30px;
    }

    .container5{
        width: 100%;
        height: 100vh;

    }

    .cont5-boxes{
        width: 80%;
        height: 90%;
        display: flex;
        margin-left: 10%;
        gap: 10px;
    }

    .cont5-box{
        width: 33%;
        height: 85%;
        text-align: center;
        background: #efefef;
        /* border: 1px solid rgb(0, 0, 0); */
        border-radius: 20px;
        margin-top: 100px;
    }

    .cont5-box2{
        background: rgb(182, 182, 182);
    }

    .cont5-box button{
        width: 130px;
        height: 40px;
        border: 0;
        color: #3f3f3f;
        border-radius: 50px;
        margin-top: 20px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        border-bottom: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box button:hover{
        background: #898989;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
        border-top: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box i{
        font-size: 40px;
        width: 80px;
        height: 60px;
        color: #000000;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 20px;
        border-radius: 50%;
        margin-top: 20px;
        border-bottom: 1.5px solid #000;
    }

    .cont5-box h1{
        margin-top: 30px;
        font-size: 25px;
    }

    .cont5-box p{
        font-size: 12px;
    }

    .container6{
        width: 100%;
        height: 100vh;
        background: rgb(21, 21, 30);
        position: relative;
    }

    .cont6-content{
        width: 83%;
        height: 90%;
        margin-top: 40px;
        margin-left: 8%;
        position: absolute;
        position: relative;
        display: flex;
    }

    .cont6-text{
        width: 50%;
        height: 100%;
        padding: 20px;
    }

    .cont6-text h1{
        color: #efefef;
        font-size: 30px;
        margin-top: 30px;
    }

    .cont6-text p{
        color: #909090;
        font-size: 14px;
    }

    .cont6-text button{
        width: 200px;
        height: 40px;
        border: 1px solid darkgoldenrod;
        color: darkgoldenrod;
        border-radius: 50px;
        margin-top: 50px;
        font-size: 13px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        background: rgb(21, 21, 30);
    }

    .cont6-text button:hover{
        background: darkgoldenrod;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
    }

    .cont6-images{
        width: 50%;
        height: 100%;
        margin-top: 40px;
    }

    .cont6-img-box1{
        width: 100%;
        height: 50%;
        display: flex;
        gap: 50px;
        margin-top: 10px;
        margin-left: 20%;
    }

    .cont6-img1{
        text-align: center;
    }

    .cont6-img1 img{
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 15px;
    }

    .cont6-img1 h3{
        color: #efefef;
        font-size: 16px;
    }

    .container7{
        width: 100%;
        height: 80vh;
    }

    .cont7-content{
        width: 86%;
        height: 100%;
        margin-left: 7%;
        display: flex;
    } 

    .cont7-box1{
        width: 70%;
        height: 100%;
        padding: 20px;
    }

    .cont7-box1 h1{
        font-size: 35px;
        font-weight: 400;
        margin-top: 50px;
    }

    #message{
        width: 60%;
        height: 20vh;
        font-size: 20px;
        border: 2px solid grey;
        border-radius: 10px;
        padding: 20px;
        margin-top: 30px;
    }

    .cont7-h3{
        margin-top: 50px;
    }

    .cont7-h3 h3{
        font-size: 17px;
    }

    .contact-section {
        width: 40%;
        text-align: center;
    }

    .contact-section img {
        width: 300px;
        height: 300px;
        border-radius: 10px;
        margin-top: 80px;
        object-fit: cover;
        margin-left: 0px;
        margin-right: 0px;
    }

    .contact-section h3 {
        font-size: 22px;
        margin-bottom: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .contact-section p {
        font-size: 17px;
        color: green;
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .container8{
        width: 100%;
        height: 100vh;
        margin-top: 150px;
        background-image: url("https://wallpaperaccess.com/full/12463199.jpg");
        background-size: cover;
    }

    .cont8-content{
        width: 90%;
        height: 100%;
        display: flex;
        margin-left: 5%;
    }

    .cont8-boxes{
        width: 50%;
        height: 100%;
        padding-left: 50px;
    }

    .cont8-boxes h1{
        color: #ffcc00;
        font-size: 180px;
        margin-top: -2%;
    }

    .cont8-boxes p{
        width: 80%;
        text-align: justify;
        font-size: 13px;
        margin-top: -10%;
        color: #c5c5c5;
    }

    .cont8-boxes img{
        width: 80%;
        height: 100%;
        object-fit: cover;
        margin-left: 18%;
    }

    .container9{
        width: 100%;
        height: 120vh;
        text-align: center;
    }

    .container9 h1{
       padding-top: 30px;
    }

    .cont9-content{
        width: 90%;
        height: 80%;
        display: flex;
        margin-left: 5%;  
    }

    .cont9-box1{
        display: flex;
        flex-wrap: wrap;
    }

    .cont9-box1-boxes{
        width: 48%;
        height: 48%;
    }

    .cont9-box1-boxes h1{
        text-align: start;
        padding-left: 40px;
        font-size: 23px;
    }

    .cont9-box1-boxes p{
        text-align: start;
        padding-left: 40px;
        font-size: 13px;
    }

    .cont9-box1, .cont9-box2{
        width: 50%;
    }

    .cont9-box2{
        text-align: start;
        justify-content: start;
        align-items: start;
    }

    .cont9-box2-content{
        padding-left: 50px;
        padding-top: 50px;
    }

    .cont9-inp1{
        width: 85%;
        height: 40px;
        border: 0.5px solid rgb(4, 4, 4);
        border-radius: 5px;
        font-size: 15px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    .cont9-twoinp{
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .cont9inp2{
        width: 41.5%;
        height: 40px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 13px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    #message2{
        width: 85%;
        height: 180px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 15px;
        background: rgb(232, 232, 232);
        color: #000;
        margin-top: 20px;   
    }

    .glow-on-hover {
        width: 85%;
        height: 50px;
        border: none;
        outline: none;
        color: #fff;
        margin-top: 20px;
        background: #111;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
    }

    .cont10{
        width: 100%;
        height: 150px;
        margin-top: -50px;
        text-align: center;
        align-items: center;
        justify-content: center;
        background-image: url("https://i.pinimg.com/originals/39/e9/a9/39e9a957f793c8702656e4af84b2dc3f.jpg");
        background-size: cover;
        background-position: center;
    }

    .cont10 h1{
        color: #c3c3c3;
        padding-top: 70px;
        font-size: 20px;
    }
}






@media (max-width: 998px){
    body{
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    header{
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    header i{
        font-size: 22px;
        cursor: pointer;

    }

    #menu-toggle {
        display: none;
    }

    .menu {
        position: absolute;
        top: 60px;
        left: 42.5%;
        width: 15%;
        height: 15%;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        border-radius: 30px;
    }

    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu ul li {
        padding: 15px;
        text-align: center;
        border-bottom: 1.5px solid rgb(186, 186, 186);
        border-radius: 40px;
        font-size: 10px;
    }

    .menu ul li a {
        text-decoration: none;
        color: #dedede;
        font-weight: bold;
    }

    #menu-toggle:checked + header + .menu {
        transform: scaleY(1);
    }

    .container1{
        width: 100%;
        height: 90vh;
        background-image: url("https://wallpaperaccess.com/full/12463326.png");
        background-size: cover;
        background-position: center;
        display: flex;
    }

    .cont1-box1{
        width: 50%;
        height: 100%;
    }

    .box1{
        text-align: center;
    }

    .box1 button{
        width: 110px;
        height: 30px;
        border: 0;
        background: darkgoldenrod;
        color: #c4c4c4;
        border-radius: 50px;
        font-size: 10px;
        margin-top: 100px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .box1 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .box1 h1{
        font-size: 30px;
        color: #ffffff;
    }

    .box1 p{
        font-size: 13px;
        color: #989898;
    }

    .box2 img{
        width: 330px;
        height: 330px;
        margin-left: 20%;
        margin-top: 12%;
    }

    .container2{
        width: 100%;
        height: 130vh;
        text-align: center;
        background: #dedede;
    }

    .cont2-text h1{
        margin: 0;
        padding-top: 40px;
        font-size: 30px;
    }

    .cont2-text p{
        font-size: 15px;
    }

    .cont2-boxes{
        width: 100%;
        height: 80%;
        display: flex;
    }

    .cont2-box1{
        width: 50%;
        height: 100%;
    }

    .cont2-box1 img{
        width: 80%;
        height: 80%;
        object-fit: cover;
        margin-top: 50px;
    }

    .cont2-box1-box{
        width: 60%;
        height: 35%;
        margin-top: 50px;
        text-align: left;
        background: #ffffff;
        margin-left: 20%;
        border-radius: 15px;
    }

    .cont2-box1-box i{
        width: 50px;
        height: 30px;
        font-size: 18px;
        color: #000000;
        background: #ffcc00;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 18px;
        border-radius: 50%;
        margin-left: 80%;
        margin-top: 20px;
    }

    .cont2-box1-box h2{
        margin-left: 10px;
        margin-top: 10px;
        font-size: 20px;
    }

    .cont2-box1-box p{
        margin-left: 10px;
        font-size: 10px;
    }

    .container3{
        width: 100%;
        height: 55vh;
        background: rgb(27, 27, 27);
    }

    .cont3-content{
        width: 86%;
        display: flex;
        margin-left: 5%;
    }

    .cont3-text{
        color: rgb(201, 201, 201);
        padding: 40px;
        margin-left: 1%;
    }

    .cont3-text h1{
        font-size: 30px;
    }

    .cont3-text p{
        color: #989898;
        font-size: 13px;
    }

    .container3 button{
        width: 180px;
        height: 34px;
        border: 0;
        background: rgb(255, 185, 9);
        color: #ffffff;
        border-radius: 50px;
        margin-top: 120px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        margin-left: 8%;
    }

    .container3 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .container4 h1{
       
    }

    .container4{
        width: 100%;
        height: 80vh;
        align-items: center;
        text-align: center;
        padding-top: 10px;
    }


    .cont4-images{
        width: 80%;
        height: 70%;
        margin-left: 10%;
        display: flex;
        gap: 3px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .cont4-images img{
        width: 23.8%;
        height: 50%;
        object-fit: cover;
        border-radius: 30px;
    }

    .container5{
        width: 100%;
        height: 95vh;
    }

    .cont5-boxes{
        width: 80%;
        height: 90%;
        display: flex;
        margin-left: 10%;
        gap: 10px;
    }

    .cont5-box{
        width: 33%;
        height: 70%;
        text-align: center;
        background: #efefef;
        /* border: 1px solid rgb(0, 0, 0); */
        border-radius: 20px;
        margin-top: 100px;
    }

    .cont5-box2{
        background: rgb(182, 182, 182);
    }

    .cont5-box button{
        width: 110px;
        height: 30px;
        border: 0;
        color: #3f3f3f;
        border-radius: 50px;
        margin-top: 20px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        font-size: 13px;
        border-bottom: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box button:hover{
        background: #898989;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
        border-top: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box i{
        font-size: 30px;
        width: 70px;
        height: 50px;
        color: #000000;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 20px;
        border-radius: 50%;
        margin-top: 20px;
        border-bottom: 1.5px solid #000;
    }

    .cont5-box h1{
        margin-top: 20px;
        font-size: 20px;
    }

    .cont5-box p{
        font-size: 10px;
    }

    .container6{
        width: 100%;
        height: 90vh;
        background: rgb(21, 21, 30);
        position: relative;
    }

    .cont6-content{
        width: 83%;
        height: 90%;
        margin-top: 40px;
        margin-left: 8%;
        position: absolute;
        position: relative;
        display: flex;
    }

    .cont6-text{
        width: 50%;
        height: 100%;
        padding: 20px;
    }

    .cont6-text h1{
        color: #efefef;
        font-size: 25px;
        margin-top: 30px;
    }

    .cont6-text p{
        color: #909090;
        font-size: 12px;
    }

    .cont6-text button{
        width: 170px;
        height: 35px;
        border: 1px solid darkgoldenrod;
        color: darkgoldenrod;
        border-radius: 50px;
        margin-top: 50px;
        font-size: 13px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        background: rgb(21, 21, 30);
    }

    .cont6-text button:hover{
        background: darkgoldenrod;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
    }

    .cont6-images{
        width: 50%;
        height: 100%;
        margin-top: 40px;
    }

    .cont6-img-box1{
        width: 100%;
        height: 50%;
        display: flex;
        gap: 50px;
        margin-top: 10px;
        margin-left: 5%;
    }

    .cont6-img1{
        text-align: center;
    }

    .cont6-img1 img{
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 15px;
    }

    .cont6-img1 h3{
        color: #efefef;
        font-size: 16px;
    }

    .container7{
        width: 100%;
        height: 70vh;
    }

    .cont7-content{
        width: 86%;
        height: 100%;
        margin-left: 7%;
        display: flex;
    } 

    .cont7-box1{
        width: 85%;
        height: 100%;
        padding: 20px;
    }

    .cont7-box1 h1{
        font-size: 25px;
        font-weight: 400;
        margin-top: 50px;
    }

    #message{
        width: 60%;
        height: 15vh;
        font-size: 15px;
        border: 2px solid grey;
        border-radius: 10px;
        padding: 20px;
        margin-top: 30px;
    }

    .cont7-h3{
        margin-top: 50px;
    }

    .cont7-h3 h3{
        font-size: 13px;
    }

    .contact-section {
        width: 40%;
        text-align: center;
    }

    .contact-section img {
        width: 220px;
        height: 220px;
        border-radius: 15px;
        margin-top: 80px;
        object-fit: cover;
        margin-left: 0px;
        margin-right: 0px;
    }

    .contact-section h3 {
        font-size: 20px;
        margin-bottom: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .contact-section p {
        font-size: 15px;
        color: green;
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .container8{
        width: 100%;
        height: 80vh;
        margin-top: 150px;
        background-image: url("https://wallpaperaccess.com/full/12463199.jpg");
        background-size: cover;
    }

    .cont8-content{
        width: 90%;
        height: 100%;
        display: flex;
        margin-left: 5%;
    }

    .cont8-boxes{
        width: 50%;
        height: 100%;
        padding-left: 50px;
    }

    .cont8-boxes h1{
        color: #ffcc00;
        font-size: 130px;
        margin-top: -2%;
    }

    .cont8-boxes p{
        width: 80%;
        text-align: justify;
        font-size: 10px;
        margin-top: -10%;
        color: #c5c5c5;
    }

    .cont8-boxes img{
        width: 70%;
        height: 100%;
        object-fit: cover;
        margin-left: 22%;
    }

    .container9{
        width: 100%;
        height: 120vh;
        text-align: center;
    }

    .container9 h1{
       padding-top: 20px;
       font-size: 25px;
    }

    .cont9-content{
        width: 90%;
        height: 80%;
        display: flex;
        margin-left: 5%;  
    }

    .cont9-box1{
        display: flex;
        flex-wrap: wrap;
    }

    .cont9-box1-boxes{
        width: 48%;
        height: 48%;
    }

    .cont9-box1-boxes h1{
        text-align: start;
        padding-left: 40px;
        font-size: 23px;
    }

    .cont9-box1-boxes p{
        text-align: start;
        padding-left: 40px;
        font-size: 13px;
    }

    .cont9-box1, .cont9-box2{
        width: 50%;
    }

    .cont9-box2{
        text-align: start;
        justify-content: start;
        align-items: start;
    }

    .cont9-box2-content{
        padding-left: 50px;
        padding-top: 50px;
    }

    .cont9-inp1{
        width: 85%;
        height: 40px;
        border: 0.5px solid rgb(4, 4, 4);
        border-radius: 5px;
        font-size: 15px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    .cont9-twoinp{
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .cont9inp2{
        width: 41.5%;
        height: 40px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 13px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    #message2{
        width: 85%;
        height: 180px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 15px;
        background: rgb(232, 232, 232);
        color: #000;
        margin-top: 20px;   
    }

    .glow-on-hover {
        width: 85%;
        height: 50px;
        border: none;
        outline: none;
        color: #fff;
        margin-top: 20px;
        background: #111;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
    }

    .cont10{
        width: 100%;
        height: 150px;
        margin-top: -50px;
        text-align: center;
        align-items: center;
        justify-content: center;
        background-image: url("https://i.pinimg.com/originals/39/e9/a9/39e9a957f793c8702656e4af84b2dc3f.jpg");
        background-size: cover;
        background-position: center;
    }

    .cont10 h1{
        color: #c3c3c3;
        padding-top: 70px;
        font-size: 20px;
    }
}






@media (max-width: 768px){
    body{
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    header{
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    header i{
        font-size: 20px;
        cursor: pointer;

    }

    #menu-toggle {
        display: none;
    }

    .menu {
        position: absolute;
        top: 60px;
        left: 42.5%;
        width: 15%;
        height: 15%;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        border-radius: 30px;
    }

    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu ul li {
        padding: 15px;
        text-align: center;
        border-bottom: 1.5px solid rgb(186, 186, 186);
        border-radius: 40px;
        font-size: 10px;
    }

    .menu ul li a {
        text-decoration: none;
        color: #dedede;
        font-weight: bold;
    }

    #menu-toggle:checked + header + .menu {
        transform: scaleY(1);
    }

    .container1{
        width: 100%;
        height: 70vh;
        background-image: url("https://wallpaperaccess.com/full/12463326.png");
        background-size: cover;
        background-position: center;
        display: flex;
    }

    .cont1-box1{
        width: 50%;
        height: 100%;
    }

    .box1{
        text-align: center;
    }

    .box1 button{
        width: 110px;
        height: 30px;
        border: 0;
        background: darkgoldenrod;
        color: #c4c4c4;
        border-radius: 50px;
        font-size: 10px;
        margin-top: 100px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .box1 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .box1 h1{
        font-size: 25px;
        color: #ffffff;
    }

    .box1 p{
        font-size: 10px;
        color: #989898;
    }

    .box2 img{
        width: 260px;
        height: 260px;
        margin-left: 20%;
        margin-top: 12%;
    }

    .container2{
        width: 100%;
        height: 85vh;
        text-align: center;
        background: #dedede;
    }

    .cont2-text h1{
        margin: 0;
        padding-top: 40px;
        font-size: 20px;
    }

    .cont2-text p{
        font-size: 13px;
    }

    .cont2-boxes{
        width: 100%;
        height: 80%;
        display: flex;
    }

    .cont2-box1{
        width: 55%;
        height: 100%;
    }

    .cont2-box1 img{
        width: 300px;
        height: 69%;
        object-fit: cover;
        margin-top: 30px;
        margin-left: 50px;
    }

    .cont2-box1-box{
        width: 60%;
        height: 30%;
        margin-top: 30px;
        text-align: left;
        background: #ffffff;
        margin-left: 20%;
        border-radius: 15px;
    }

    .cont2-box1-box i{
        width: 40px;
        height: 25px;
        font-size: 13px;
        color: #000000;
        background: #ffcc00;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 15px;
        border-radius: 50%;
        margin-left: 75%;
        margin-top: 10px;
    }

    .cont2-box1-box h2{
        margin-left: 10px;
        margin-top: 0px;
        font-size: 15px;
    }

    .cont2-box1-box p{
        margin-left: 10px;
        font-size: 7px;
        margin-top: -5px;
    }

    .container3{
        width: 100%;
        height: 50vh;
        background: rgb(27, 27, 27);
    }

    .cont3-content{
        width: 86%;
        display: flex;
        margin-left: 3.5%;
    }

    .cont3-text{
        color: rgb(201, 201, 201);
        padding: 40px;
        margin-left: 1%;
    }

    .cont3-text h1{
        font-size: 30px;
    }

    .cont3-text p{
        color: #989898;
        font-size: 10px;
    }

    .container3 button{
        width: 150px;
        height: 30px;
        font-size: 10px;
        border: 0;
        background: rgb(255, 185, 9);
        color: #ffffff;
        border-radius: 50px;
        margin-top: 120px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        margin-left: 5%;
    }

    .container3 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .container4{
        width: 100%;
        height: 65vh;
        align-items: center;
        text-align: center;
        padding-top: 10px;
    }

    .cont4-images{
        width: 80%;
        height: 70%;
        margin-left: 10%;
        display: flex;
        gap: 3px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .cont4-images img{
        width: 23.8%;
        height: 50%;
        object-fit: cover;
        border-radius: 30px;
    }

    .container5{
        width: 100%;
        height: 70vh;
    }

    .cont5-boxes{
        width: 80%;
        height: 90%;
        display: flex;
        margin-left: 10%;
        gap: 5px;
    }

    .cont5-box{
        width: 33%;
        height: 70%;
        text-align: center;
        background: #efefef;
        /* border: 1px solid rgb(0, 0, 0); */
        border-radius: 20px;
        margin-top: 100px;
    }

    .cont5-box2{
        background: rgb(182, 182, 182);
    }

    .cont5-box button{
        width: 70px;
        height: 20px;
        border: 0;
        color: #3f3f3f;
        border-radius: 50px;
        margin-top: 20px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        font-size: 13px;
        border-bottom: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box button:hover{
        background: #898989;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
        border-top: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box i{
        font-size: 15px;
        width: 50px;
        height: 30px;
        color: #000000;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 20px;
        border-radius: 50%;
        margin-top: 10px;
        border-bottom: 1.5px solid #000;
    }

    .cont5-box h1{
        margin-top: 10px;
        font-size: 13px;
    }

    .cont5-box p{
        font-size: 8px;
    }

    .container6{
        width: 100%;
        height: 90vh;
        background: rgb(21, 21, 30);
        position: relative;
    }

    .cont6-content{
        width: 83%;
        height: 90%;
        margin-top: 40px;
        margin-left: 8%;
        position: absolute;
        position: relative;
        display: flex;
    }

    .cont6-text{
        width: 50%;
        height: 100%;
        padding: 20px;
        padding-top: 50px;
    }

    .cont6-text h1{
        color: #efefef;
        font-size: 20px;
        margin-top: 30px;
    }

    .cont6-text p{
        color: #909090;
        font-size: 10px;
    }

    .cont6-text button{
        width: 130px;
        height: 35px;
        border: 1px solid darkgoldenrod;
        color: darkgoldenrod;
        border-radius: 50px;
        margin-top: 0px;
        font-size: 8px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        background: rgb(21, 21, 30);
    }

    .cont6-text button:hover{
        background: darkgoldenrod;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
    }

    .cont6-images{
        width: 50%;
        height: 100%;
        margin-top: 70px;
        margin-left: 30px;
    }

    .cont6-img-box1{
        width: 100%;
        height: 50%;
        display: flex;
        gap: 20px;
        margin-top: -10px;
        margin-left: 5%;
    }

    .cont6-img1{
        text-align: center;
    }

    .cont6-img1 img{
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 15px;
    }

    .cont6-img1 h3{
        color: #efefef;
        font-size: 12px;
    }

    .container7{
        width: 100%;
        height: 60vh;
    }

    .cont7-content{
        width: 86%;
        height: 100%;
        margin-left: 7%;
        display: flex;
    } 

    .cont7-box1{
        width: 85%;
        height: 100%;
        padding: 20px;
    }

    .cont7-box1 h1{
        font-size: 25px;
        font-weight: 400;
        margin-top: 50px;
    }

    #message{
        width: 60%;
        height: 15vh;
        font-size: 15px;
        border: 2px solid grey;
        border-radius: 10px;
        padding: 20px;
        margin-top: 30px;
    }

    .cont7-h3{
        margin-top: 50px;
    }

    .cont7-h3 h3{
        font-size: 13px;
    }

    .contact-section {
        width: 40%;
        text-align: center;
    }

    .contact-section img {
        width: 190px;
        height: 190px;
        border-radius: 15px;
        margin-top: 80px;
        object-fit: cover;
        margin-left: -35px;
        margin-right: 0px;
    }

    .contact-section h3 {
        font-size: 18px;
        margin-bottom: 5px;
        margin-left: -35px;
        margin-right: 0px;
    }

    .contact-section p {
        font-size: 15px;
        color: green;
        margin-left: -35px;
        margin-right: 0px;
    }
    
    .container8{
        width: 100%;
        height: 80vh;
        margin-top: 150px;
        background-image: url("https://wallpaperaccess.com/full/12463199.jpg");
        background-size: cover;
    }

    .cont8-content{
        width: 90%;
        height: 100%;
        display: flex;
        margin-left: 5%;
    }

    .cont8-boxes{
        width: 60%;
        height: 100%;
        padding-left: 50px;
    }

    .cont8-boxes h1{
        color: #ffcc00;
        font-size: 110px;
        margin-top: 5%;
    }

    .cont8-boxes p{
        width: 80%;
        text-align: justify;
        font-size: 10px;
        margin-top: -10%;
        color: #c5c5c5;
    }

    .cont8-boxes img{
        width: 90%;
        height: 100%;
        object-fit: cover;
        margin-left: 5%;
    }

    .container9{
        width: 100%;
        height: 90vh;
        text-align: center;
    }

    .container9 h1{
       padding-top: 20px;
       font-size: 20px;
    }

    .cont9-content{
        width: 90%;
        height: 80%;
        display: flex;
        margin-left: 5%;  
    }

    .cont9-box1{
        display: flex;
        flex-wrap: wrap;
    }

    .cont9-box1-boxes{
        width: 48%;
        height: 48%;
    }

    .cont9-box1-boxes h1{
        text-align: start;
        padding-left: 40px;
        font-size: 15px;
    }

    .cont9-box1-boxes p{
        text-align: start;
        padding-left: 40px;
        font-size: 10px;
    }

    .cont9-box1, .cont9-box2{
        width: 50%;
    }

    .cont9-box2{
        text-align: start;
        justify-content: start;
        align-items: start;
    }

    .cont9-box2-content{
        padding-left: 50px;
        padding-top: 30px;
    }

    .cont9-inp1{
        width: 85%;
        height: 30px;
        border: 0.5px solid rgb(4, 4, 4);
        border-radius: 5px;
        font-size: 10px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    .cont9-twoinp{
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .cont9inp2{
        width: 40%;
        height: 30px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 10px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    #message2{
        width: 85%;
        height: 150px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 15px;
        background: rgb(232, 232, 232);
        color: #000;
        margin-top: 10px;   
    }

    .glow-on-hover {
        width: 88%;
        height: 40px;
        border: none;
        outline: none;
        color: #fff;
        margin-top: 10px;
        background: #111;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
    }

    .cont10{
        width: 100%;
        height: 150px;
        margin-top: -50px;
        text-align: center;
        align-items: center;
        justify-content: center;
        background-image: url("https://i.pinimg.com/originals/39/e9/a9/39e9a957f793c8702656e4af84b2dc3f.jpg");
        background-size: cover;
        background-position: center;
    }

    .cont10 h1{
        color: #c3c3c3;
        padding-top: 70px;
        font-size: 20px;
    }
}







@media (max-width: 568px){
    body{
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    header{
        width: 100%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    header i{
        font-size: 20px;
        cursor: pointer;

    }

    #menu-toggle {
        display: none;
    }

    .menu {
        position: absolute;
        top: 60px;
        left: 42.5%;
        width: 15%;
        height: 15%;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        border-radius: 30px;
    }

    .menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 20px;
    }

    .menu ul li {
        padding: 15px;
        text-align: center;
        border-bottom: 1.5px solid rgb(186, 186, 186);
        border-radius: 40px;
        font-size: 10px;
    }

    .menu ul li a {
        text-decoration: none;
        color: #dedede;
        font-weight: bold;
    }

    #menu-toggle:checked + header + .menu {
        transform: scaleY(1);
    }

    .container1{
        width: 100%;
        height: 60vh;
        background-image: url("https://wallpaperaccess.com/full/12463326.png");
        background-size: cover;
        background-position: center;
        display: flex;
    }

    .cont1-box1{
        width: 50%;
        height: 100%;
    }

    .box1{
        text-align: center;
    }

    .box1 button{
        width: 80px;
        height: 20px;
        border: 0;
        background: darkgoldenrod;
        color: #c4c4c4;
        border-radius: 50px;
        font-size: 7px;
        margin-top: 90px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }

    .box1 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .box1 h1{
        font-size: 15px;
        color: #ffffff;
    }

    .box1 p{
        font-size: 8px;
        color: #989898;
    }

    .box2 img{
        width: 210px;
        height: 210px;
        margin-left: 20%;
        margin-top: 20%;
    }

    .container2{
        width: 100%;
        height: 75vh;
        text-align: center;
        background: #dedede;
    }

    .cont2-text h1{
        margin: 0;
        padding-top: 40px;
        font-size: 20px;
    }

    .cont2-text p{
        font-size: 13px;
    }

    .cont2-boxes{
        width: 100%;
        height: 80%;
        display: flex;
    }

    .cont2-box1{
        width: 55%;
        height: 100%;
    }

    .cont2-box1 img{
        width: 200px;
        height: 60%;
        object-fit: cover;
        margin-top: 30px;
        margin-left: 50px;
    }

    .cont2-box1-box{
        width: 60%;
        height: 30%;
        margin-top: 30px;
        text-align: left;
        background: #ffffff;
        margin-left: 20%;
        border-radius: 15px;
    }

    .cont2-box1-box i{
        width: 30px;
        height: 20px;
        font-size: 13px;
        color: #000000;
        background: #ffcc00;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 10px;
        border-radius: 50%;
        margin-left: 75%;
        margin-top: 10px;
    }

    .cont2-box1-box h2{
        margin-left: 10px;
        margin-top: 0px;
        font-size: 10px;
    }

    .cont2-box1-box p{
        margin-left: 10px;
        font-size: 6px;
        margin-top: -5px;
    }

    .container3{
        width: 100%;
        height: 40vh;
        background: rgb(27, 27, 27);
    }

    .cont3-content{
        width: 86%;
        display: flex;
        margin-left: 3.5%;
    }

    .cont3-text{
        color: rgb(201, 201, 201);
        padding: 40px;
        margin-left: 1%;
    }

    .cont3-text h1{
        font-size: 22px;
    }

    .cont3-text p{
        color: #989898;
        font-size: 8px;
    }

    .container3 button{
        width: 130px;
        height: 30px;
        font-size: 8px;
        border: 0;
        background: rgb(255, 185, 9);
        color: #ffffff;
        border-radius: 50px;
        margin-top: 100px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        margin-left: 5%;
    }

    .container3 button:hover{
        background: #ffcc00;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .container4{
        width: 100%;
        height: 105vh;
        align-items: center;
        text-align: center;
        padding-top: 10px;
    }

    .cont4-images{
        width: 80%;
        height: 40%;
        margin-left: 20%;
        display: flex;
        gap: 3px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .cont4-images img{
        width: 35.8%;
        height: 40%;
        object-fit: cover;
        border-radius: 30px;
    }

    .container5{
        width: 100%;
        height: 60vh;
    }

    .cont5-boxes{
        width: 80%;
        height: 90%;
        display: flex;
        margin-left: 10%;
        gap: 5px;
    }

    .cont5-box{
        width: 33%;
        height: 70%;
        text-align: center;
        background: #efefef;
        /* border: 1px solid rgb(0, 0, 0); */
        border-radius: 20px;
        margin-top: 100px;
    }

    .cont5-box2{
        background: rgb(182, 182, 182);
    }

    .cont5-box button{
        width: 70px;
        height: 20px;
        border: 0;
        color: #3f3f3f;
        border-radius: 50px;
        margin-top: 20px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        font-size: 8px;
        border-bottom: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box button:hover{
        background: #898989;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
        border-top: 0.5px solid rgb(0, 0, 0);
    }

    .cont5-box i{
        font-size: 15px;
        width: 50px;
        height: 30px;
        color: #000000;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 20px;
        border-radius: 50%;
        margin-top: 10px;
        border-bottom: 1.5px solid #000;
    }

    .cont5-box h1{
        margin-top: 10px;
        font-size: 10px;
    }

    .cont5-box p{
        font-size: 6px;
    }

    .container6{
        width: 100%;
        height: 60vh;
        background: rgb(21, 21, 30);
        position: relative;
    }

    .cont6-content{
        width: 83%;
        height: 90%;
        margin-top: 40px;
        margin-left: 8%;
        position: absolute;
        position: relative;
        display: flex;
    }

    .cont6-text{
        width: 50%;
        height: 100%;
        padding: 20px;
        padding-top: 50px;
    }

    .cont6-text h1{
        color: #efefef;
        font-size: 12px;
        margin-top: 20px;
    }

    .cont6-text p{
        color: #909090;
        font-size: 7px;
    }

    .cont6-text button{
        width: 70px;
        height: 20px;
        border: 1px solid darkgoldenrod;
        color: darkgoldenrod;
        border-radius: 50px;
        margin-top: 0px;
        font-size: 6px;
        transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
        background: rgb(21, 21, 30);
    }

    .cont6-text button:hover{
        background: darkgoldenrod;
        color: #000;
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        border: 0;
    }

    .cont6-images{
        width: 50%;
        height: 100%;
        margin-top: 70px;
        margin-left: 30px;
    }

    .cont6-img-box1{
        width: 100%;
        height: 50%;
        display: flex;
        gap: 20px;
        margin-top: -20px;
        margin-left: 5%;
    }

    .cont6-img1{
        text-align: center;
    }

    .cont6-img1 img{
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 15px;
    }

    .cont6-img1 h3{
        color: #efefef;
        font-size: 10px;
    }

    .container7{
        width: 100%;
        height: 30vh;
    }

    .cont7-content{
        width: 86%;
        height: 100%;
        margin-left: 7%;
        display: flex;
    } 

    .cont7-box1{
        width: 85%;
        height: 100%;
        padding: 20px;
    }

    .cont7-box1 h1{
        font-size: 20px;
        font-weight: 400;
        margin-top: 50px;
    }

    #message{
        width: 60%;
        height: 5vh;
        font-size: 10px;
        border: 2px solid grey;
        border-radius: 10px;
        padding: 20px;
        margin-top: 5px;
    }

    .cont7-h3{
        margin-top: 20px;
    }

    .cont7-h3 h3{
        font-size: 9px;
        font-weight: 600;
    }

    .contact-section {
        width: 40%;
        text-align: center;
    }

    .contact-section img {
        width: 100px;
        height: 100px;
        border-radius: 15px;
        margin-top: 80px;
        object-fit: cover;
        margin-left: 30px;
        margin-right: 0px;
    }

    .contact-section h3 {
        font-size: 10px;
        margin-bottom: 5px;
        margin-left: 30px;
        margin-right: 0px;
    }

    .contact-section p {
        font-size: 8px;
        color: green;
        margin-left: 30px;
        margin-right: 0px;
    }
    
    .container8{
        width: 100%;
        height: 40vh;
        margin-top: 150px;
        background-image: url("https://wallpaperaccess.com/full/12463199.jpg");
        background-size: cover;
    }

    .cont8-content{
        width: 90%;
        height: 100%;
        display: flex;
        margin-left: 5%;
    }

    .cont8-boxes{
        width: 60%;
        height: 100%;
        padding-left: 50px;
    }

    .cont8-boxes h1{
        color: #ffcc00;
        font-size: 50px;
        margin-top: 5%;
    }

    .cont8-boxes p{
        width: 80%;
        text-align: justify;
        font-size: 6px;
        margin-top: -10%;
        color: #c5c5c5;
    }

    .cont8-boxes img{
        width: 90%;
        height: 100%;
        object-fit: cover;
        margin-left: 10%;
    }

    .container9{
        width: 100%;
        height: 60vh;
        text-align: center;
    }

    .container9 h1{
       padding-top: 10px;
       font-size: 15px;
    }

    .cont9-content{
        width: 90%;
        height: 80%;
        display: flex;
        margin-left: 5%;  
    }

    .cont9-box1{
        display: flex;
        flex-wrap: wrap;
    }

    .cont9-box1-boxes{
        width: 48%;
        height: 48%;
    }

    .cont9-box1-boxes h1{
        text-align: start;
        padding-left: 40px;
        font-size: 10px;
    }

    .cont9-box1-boxes p{
        text-align: start;
        padding-left: 40px;
        font-size: 6px;
    }

    .cont9-box1, .cont9-box2{
        width: 50%;
    }

    .cont9-box2{
        text-align: start;
        justify-content: start;
        align-items: start;
    }

    .cont9-box2-content{
        padding-left: 50px;
        padding-top: 15px;
    }

    .cont9-inp1{
        width: 85%;
        height: 20px;
        border: 0.5px solid rgb(4, 4, 4);
        border-radius: 5px;
        font-size: 8px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    .cont9-twoinp{
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .cont9inp2{
        width: 39%;
        height: 20px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 8px;
        background: rgb(232, 232, 232);
        color: #000;
    }

    #message2{
        width: 85%;
        height: 80px;
        border: 0.5px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 8px;
        background: rgb(232, 232, 232);
        color: #000;
        margin-top: 10px;   
    }

    .glow-on-hover {
        width: 88%;
        height: 25px;
        border: none;
        outline: none;
        font-size: 8px;
        color: #fff;
        margin-top: 10px;
        background: #111;
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 10px;
    }

    .cont10{
        width: 100%;
        height: 100px;
        margin-top: -50px;
        text-align: center;
        align-items: center;
        justify-content: center;
        background-image: url("https://i.pinimg.com/originals/39/e9/a9/39e9a957f793c8702656e4af84b2dc3f.jpg");
        background-size: cover;
        background-position: center;
    }

    .cont10 h1{
        color: #c3c3c3;
        padding-top: 50px;
        font-size: 10px;
    }
}