*{
    margin: 0;
    padding: 0;
    // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 300 to 800

.open-sans-<uniquifier> {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/landing.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
NAV{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;   
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: aliceblue;
    text-decoration: none;
    font-size: 18px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 3px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color:beige;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 55px;
}
.text-box p{
    margin: 20px 0 45px;
    font-size: 16px;
    color: beige;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: aliceblue;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}
nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
    font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color:aliceblue;
        margin: 20px;
        font-size: 32px;
        cursor:pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}

<!----------------SERVICES----------------->

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header styling */
h1 {
    font-size: 36px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    color: #777;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

/* Services Section */
.service {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.range-of-services {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.container-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Adjust spacing between items */
    gap: 20px; /* Gap between items */
    padding: 40px;
}
.container-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Adjust spacing between items */
    gap: 20px; /* Gap between items */
    padding: 40px;
    
}

.block {
    flex: 1 1 calc(20% - 20px); /* Adjust width to account for gap */
    box-sizing: border-box; /* Include padding and border in width */
    display: block;
    height: 150px; /* Adjust height as needed */
    background-color: #ccc; /* Background color for visibility */
    /* Add any other styling you need here */
}

.course-col {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    display: block;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.course-col h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.course-col p {
    font-size: 14px;
    color: #555;
}

.course-col:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Partners Section */
.atbms {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    overflow: hidden;
}

.scrolling-partners {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

.scrolling-partners::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.atbms-col {
    flex: 0 0 200px;
    margin-right: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.atbms-col img {
    width: 100%;
    height: auto;
}

.layer {
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover {
    background: rgba(240, 0, 0, 0.2);
}

.layer h3 {
    font-weight: 500;
    color: darkgreen;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3 {
    bottom: 50%;
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 50px 0;
}


.column-testimonials {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials-col {
    background: #fff3f3;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    display: flex;
    align-items: center;
    text-align: left;
}

.testimonials-col img {
    height: 60px;
    margin-right: 20px;
    border-radius: 50%;
}

.testimonials-col h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-col p {
    font-size: 14px;
    color: #555;
}

.testimonials-col:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Responsive Layout */
@media (max-width: 700px) {
    .row, .container {
        flex-direction: column;
    }

    .column, .column-testimonials, .course-col, .testimonials-col {
        flex-basis: 100%;
    }
}

/*----------------------------------------fff-------------------------*/

.cta{
    margin: 100px auto;
    width: 80;
    background-image: url(images/wallpaper.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color:aliceblue;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

    
/*----------------------------------------footer------------------------*/

/*-------------------------------about--------------------------*/

    .sub-header{
        height: 50vh;
        width: 100%;
        background-color: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7));
        background-image: url(images/about.png);
        background-position: center;
        background-size: cover;
        text-align: center;
        color:azure;
    } 
.footer{
    text-align: center;
}
    
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    text-align: center;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: aliceblue;
    transition: 0.5s;
}

/*-----------------------Pvt------------------*/
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-section {
    width: 60%;
}

.content-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-section ul {
    padding-left: 20px;
}

.image-section {
    width: 35%;
    display: flex;
    align-items: flex-start;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
    background-color: #e9e9e9;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 10px;
}

.form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input,
.form-section form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-section form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section form button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section,
    .image-section {
        width: 100%;
    }

    .image-section {
        margin-top: 20px;
    }

    .form-section {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }
}
/* Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .content-section {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .form-section {
        width: 100%;
        padding: 15px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 14px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .form-section {
        padding: 10px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 12px;
    }
}


/*---------------------------------------------List of Services-------------------------------------*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.service-block {
    position: relative;
    width: 22%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-block:hover {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.service-block:hover .service-overlay {
    background-color: rgba(247, 193, 215, 0.3); /* Lighter transparent overlay on hover */
}

.service-overlay h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.service-block:hover .service-overlay h2 {
    transform: scale(1.1);
}
/* Mobile View */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .service-block {
        width: 90%; /* Make the blocks take most of the width on mobile */
        height: 150px; /* Adjust height for mobile */
        margin-bottom: 20px; /* Add space between the blocks */
    }

    .service-overlay h2 {
        font-size: 18px; /* Slightly smaller font size for mobile */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .service-block {
        height: 120px; /* Further adjust height for smaller screens */
    }

    .service-overlay h2 {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
}

/*-------------------------------LLP---------------------------------*/
    
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-section {
    width: 60%;
}

.content-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    padding-left: 20px;
}

.image-section {
    width: 35%;
    display: flex;
    align-items: flex-start;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
    background-color: #e9e9e9;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 10px;
}

.form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input,
.form-section form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-section form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section form button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section,
    .image-section {
        width: 100%;
    }

    .image-section {
        margin-top: 20px;
    }

    .form-section {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }
}
/* Mobile View */
@media (max-width: 768px) {
    /* Stack content and image vertically */
    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    /* Adjust content section width */
    .content-section {
        width: 100%;
        padding: 10px;
    }

    /* Adjust image section width and margin */
    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    /* Resize image to fit the screen */
    .image-section img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* Adjust form section padding and width */
    .form-section {
        width: 100%;
        margin-top: 20px;
        padding: 20px;
    }
}

/* Extra small devices (smaller than 480px) */
@media (max-width: 480px) {
    /* Further adjust padding for smaller screens */
    .container {
        padding: 5px;
    }

    .content-section,
    .image-section,
    .form-section {
        padding: 10px;
    }

    /* Adjust text sizes for smaller screens */
    .content-section h1,
    .form-section h2 {
        font-size: 22px;
    }

    .content-section p,
    .content-section ul,
    .content-section ol,
    .form-section label {
        font-size: 14px;
    }
}

/*-----------------------------------------------Section 8-----------------------------------*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-section {
    width: 60%;
}

.content-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-section ul {
    padding-left: 20px;
}

.image-section {
    width: 35%;
    display: flex;
    align-items: flex-start;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
    background-color: #e9e9e9;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 10px;
}

.form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input,
.form-section form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-section form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section form button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .form-section {
        width: 100%;
        padding: 15px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 14px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .form-section {
        padding: 10px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 12px;
    }
}
/* Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .content-section {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .form-section {
        width: 100%;
        padding: 15px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 14px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .form-section {
        padding: 10px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 12px;
    }
}

/*------------------------Partnership------------------------------------------------*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-section {
    width: 60%;
}

.content-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 22px;
    margin-top: 20px;
}

.content-section ul {
    padding-left: 20px;
}

.image-section {
    width: 35%;
    display: flex;
    align-items: flex-start;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
    background-color: #e9e9e9;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 10px;
}

.form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input,
.form-section form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-section form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section form button:hover {
    background-color: #555;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .form-section {
        width: 100%;
        padding: 15px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 14px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .form-section {
        padding: 10px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 12px;
    }
}

/*---------------------------------------Public Limited Company------------------------------------*/
    
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-section {
    width: 60%;
}

.content-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 22px;
    margin-top: 20px;
}

.content-section p {
    margin-bottom: 15px;
}

.image-section {
    width: 35%;
    display: flex;
    align-items: flex-start;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
    background-color: #e9e9e9;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 10px;
}

.form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input,
.form-section form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-section form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section form button:hover {
    background-color: #555;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .form-section {
        width: 100%;
        padding: 15px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 14px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .form-section {
        padding: 10px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 12px;
    }
}
/* Base Styles (from previous CSS) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .form-section {
        width: 100%;
        padding: 15px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 14px;
    }

    .form-section form button {
        font-size: 14px;
        padding: 8px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 5px;
    }

    .content-section h1 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 18px;
    }

    .content-section p {
        font-size: 14px;
    }

    .form-section {
        padding: 10px;
    }

    .form-section h2 {
        font-size: 18px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 12px;
    }

    .form-section form button {
        font-size: 12px;
        padding: 6px;
    }
}
/*------------------------------------OPC-----------------------------------*/

    
/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
}

.content-section {
    width: 60%;
}

.image-section {
    width: 35%;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

ul, ol {
    margin-left: 20px;
}

/* Form Section */
.form-section {
    padding: 20px;
    background-color: #e0e0e0;
    margin-top: 20px;
}

.form-section h2 {
    margin-bottom: 15px;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input,
.form-section form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-section form button {
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.form-section form button:hover {
    background-color: #0056b3;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section {
        width: 100%;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .form-section {
        padding: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .content-section h1 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .content-section p,
    .form-section form input,
    .form-section form textarea,
    .form-section form button {
        font-size: 14px;
    }

    .form-section form button {
        padding: 8px;
    }
}
/* Mobile View (for screens up to 768px) */
@media (max-width: 768px) {
    /* Container Flex Direction */
    .container {
        flex-direction: column;
        padding: 15px;
    }

    /* Content Section takes full width */
    .content-section {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Image Section takes full width */
    .image-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    /* Form Section Padding Adjustment */
    .form-section {
        padding: 15px;
        margin-top: 20px;
    }

    /* Font Size Adjustments */
    .content-section h1 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .content-section p, ul, ol {
        font-size: 16px;
    }

    /* Form Input Adjustments */
    .form-section form input,
    .form-section form textarea {
        font-size: 16px;
        padding: 8px;
    }

    /* Submit Button Adjustment */
    .form-section form button {
        font-size: 16px;
        padding: 10
    }
    
    
/*-------------------------------------------Proprietorship---------------------------------------------------*/
    
/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

/* Content Section */
.content-section {
    flex-basis: 60%;
    padding-right: 20px;
}

.content-section h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.content-section h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section p, ul {
    font-size: 18px;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Image Section */
.image-section {
    flex-basis: 35%;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Form Section */
.form-section {
    background-color: #f5f5f5;
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
}

.form-section h2 {
    margin-bottom: 15px;
}

.form-section form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input,
.form-section form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-section form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.form-section form button:hover {
    background-color: #0056b3;
}

/* Mobile View (for screens up to 768px) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .content-section, .image-section {
        flex-basis: 100%;
    }

    .content-section {
        padding-right: 0;
    }
}
    /* Mobile View (for screens up to 768px) */
@media (max-width: 768px) {
    /* Adjust container to stack elements vertically */
    .container {
        flex-direction: column;
        padding: 10px;
    }

    /* Full width for content and image sections */
    .content-section, .image-section {
        flex-basis: 100%;
    }

    /* Remove padding on the right for content section */
    .content-section {
        padding-right: 0;
    }

    /* Center-align headings and paragraphs for better readability on mobile */
    .content-section h1,
    .content-section h2 {
        text-align: center;
        font-size: 22px; /* Slightly reduce font size */
    }

    .content-section p, .content-section ul {
        font-size: 16px; /* Slightly reduce font size */
        text-align: justify; /* Justify text for a cleaner look */
    }

    /* Adjust image to fit within mobile screen width */
    .image-section img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    /* Adjust form section for better spacing on mobile */
    .form-section {
        padding: 15px;
        margin-top: 20px;
        border-radius: 5px;
    }

    .form-section h2 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .form-section form input,
    .form-section form textarea {
        font-size: 16px;
        padding: 8px;
    }

    .form-section form button {
        width: 100%;
        padding: 12px;
        font-size: 18px;
    }
}

/*----------------------------------------------NIdhi--------------------------------------------------*/
    
    /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-section {
    flex-basis: 60%;
    padding-right: 20px;
}

.content-section h1, .content-section h2 {
    color: #333;
}

.content-section p, .content-section ul {
    color: #555;
}

.image-section {
    flex-basis: 35%;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
}

/* Form Section */
.form-section {
    background-color: #e0e0e0;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
}

.form-section h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 5px;
    color: #333;
}

.form-section form input, 
.form-section form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-section form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.form-section form button:hover {
    background-color: #555;
}

/* Mobile View */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .content-section, .image-section {
        flex-basis: 100%;
        padding-right: 0;
    }

    .content-section h1, .content-section h2 {
        text-align: center;
        font-size: 22px;
    }

    .content-section p, .content-section ul {
        font-size: 16px;
        text-align: justify;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .form-section {
        padding: 15px;
        margin-top: 20px;
    }

    .form-section h2 {
        font-size: 20px;
    }

    .form-section form input, 
    .form-section form textarea {
        font-size: 16px;
        padding: 8px;
    }

    .form-section form button {
        padding: 12px;
        font-size: 18px;
    }
}
/* General Mobile Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    max-width: 100%;
    margin: auto;
}

.content-section {
    padding: 10px;
    text-align: center;
}

.content-section h1, .content-section h2 {
    font-size: 24px;
    color: #333;
}

.content-section p, .content-section ul {
    font-size: 16px;
    color: #555;
    text-align: justify;
}

.content-section ul {
    padding-left: 20px;
}

.image-section {
    margin-top: 15px;
    text-align: center;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Form Section */
.form-section {
    background-color: #e0e0e0;
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
}

.form-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.form-section form {
    display: flex;
    flex-direction: column;
}

.form-section form label {
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.form-section form input, 
.form-section form textarea {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-section form button {
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.form-section form button:hover {
    background-color: #555;
}
/*------------------------------------NGO Registration-------------------------------------------------*/

   /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Desktop-specific styling */
body {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header styling */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Main content container */
main {
    padding: 20px;
}

/* Content section styling */
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* Text content styling */
.text-content {
    width: 60%;
}

.text-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.text-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

/* Image content styling */
.image-content {
    width: 35%;
    display: flex;
    justify-content: center;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
}

/* Contact form section styling */
.contact-form-section {
    background-color: #333; /* Dark grey background */
    padding: 20px;
    border-radius: 10px;
    color: #fff; /* Text color changed to white for better contrast */
}

.contact-form-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff; /* Text color changed to white */
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #ddd; /* Light grey label text */
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333; /* Input text color */
}

.contact-form button {
    padding: 10px;
    background-color: #555;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #777;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Desktop-specific styling */
body {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header styling */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Main content container */
main {
    padding: 20px;
}

/* Content section styling */
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* Text content styling */
.text-content {
    width: 60%;
}

.text-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.text-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

/* Image content styling */
.image-content {
    width: 35%;
    display: flex;
    justify-content: center;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
}

/* Contact form section styling */
.contact-form-section {
    background-color: #333; /* Dark grey background */
    padding: 20px;
    border-radius: 10px;
    color: #fff; /* Text color changed to white for better contrast */
}

.contact-form-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff; /* Text color changed to white */
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 10px;
    font-weight: bold;
    color: #ddd; /* Light grey label text */
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333; /* Input text color */
}

.contact-form button {
    padding: 10px;
    background-color: #555;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #777;
}

/* Mobile-specific styling */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .content {
        flex-direction: column;
    }

    .text-content {
        width: 100%;
    }

    .image-content {
        width: 100%;
        margin-top: 20px;
    }

    .image-content img {
        width: 100%;
    }

    .contact-form-section {
        margin-top: 20px;
    }
}
/*-------------------------------------Startup Assistance------------------------------------------*/
  
    /* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjust gap between boxes */
}

.box {
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ffcccb); /* Linear gradient color */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: scale(1.05); /* Slightly scale up on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    


