/* Gilroy Font */
@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Gilroy-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #35005C;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.row {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;

}

.form-control {
    height: 50px;
}

.navbar {
    padding: 19px 32px;
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid #DDDDDB;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 200px;
    background: #FFFFFF52;
    max-height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 6px;
}

.logo-img {}

.logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #ffffff !important;
    margin: 0 1rem;
    font-size: 18px;
    font-weight: 500;
}

.nav-link:hover {
    opacity: 0.8;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.btn-login {
    background: transparent;
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-sub-class {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btn-grow {
    background: linear-gradient(90deg, #0092D0 0%, #3CB8ED 100%);
    border: 1px solid #FFFFFF;
    color: #ffffff;
    padding: 17px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    max-height: 48px;
}

.arrow-icon {
    font-style: normal;
}



.navbar-toggler-icon {
    border: 1px solid #DDDDDB;
    background: #FFFFFF52;
    border-radius: 100px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;


}

/* Side Menu Styles */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.side-menu.active {
    transform: translateX(0);
    background-color: #35005C;
}

@media (max-width: 992px) {
    .side-menu-overlay {
        display: block;
    }

    .side-menu {
        display: block;
    }
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.side-menu-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 6px;
}

.side-menu-logo-img {
    width: auto;
    height: auto;
}

.side-menu-logo-text {
    color: #35005C;
    font-size: 24px;
    font-weight: 800;
}

.side-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: opacity 0.3s;
}

.side-menu-close:hover {
    opacity: 0.7;
}

.close-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.side-menu-nav {
    padding: 20px 0;
}

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

.side-menu-item {
    margin: 0;
}

.side-menu-link {
    display: block;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 0;
}

.side-menu-link:hover {
    background-color: #f5f5f5;
    color: #35005C;
}

.side-menu-link.active {
    background-color: #764ba2;
    color: #ffffff;
    border-radius: 8px;
    margin: 0 12px;
}

.side-menu-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn-side-login {
    background: transparent;
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #ffffff;
    padding: 12px 24px;
    border-radius: 100px;
    transition: background 0.3s, color 0.3s;
}

.btn-side-login:hover {
    background: #35005C;
    color: #ffffff;
}

.btn-side-grow {
    background: linear-gradient(90deg, #0092D0 0%, #3CB8ED 100%);
    border: 1px solid #FFFFFF;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.btn-side-grow:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    /* min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1) 0%, #35005C 70%);
    overflow: hidden; */
    position: relative;
    padding: 248px 0 100px 0;
}

.first_section_gradient {
    position: absolute;
    top: 0;

}

.second_section_gradient {
    position: absolute;
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

.third_section_gradient {
    position: absolute;
    right: 0;
    transform: scaleX(-1);
}

.last_section_gradient {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: scaleX(-1);
}

.fourth_section_gradient {
    position: absolute;
    top: 50%;
}


.hero-background-shapes {
    position: absolute;
    right: 0;
    top: 79px;
    /* bottom: 165px; */
    z-index: 10;
}

.bg-shape {
    position: absolute;
    opacity: 1;
    width: auto;
    height: auto;
    right: 0;
    bottom: 72px;
    /* max-width: 300px; */
}

.shape-1 {
    /* top: 10%;
    left: 5%;
    transform: rotate(-15deg); */
}

.shape-2 {
    top: 50%;
    right: 10%;
    transform: rotate(20deg);
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    transform: rotate(10deg);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 52px 0 0 0;
}

.hero-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.gradient-text {
    color: #3CB8ED;
    font-style: italic;
}

.gradient-text-new {
    background: #3CB8ED;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 24px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 523px;
    font-weight: 300;
}

/* Enquiry Form Card */
.enquiry-form-card {
    background: radial-gradient(48.36% 104.62% at 75.28% 42.95%, #4D0E7B 0%, #35005C 100%)
        /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    ;
    max-width: 583px;
    border: 1px solid #FFFFFF;
    border-radius: 16px;
    padding: 50px 42px;
    position: relative;
    z-index: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    position: relative;
    z-index: 20;
}

.form-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 0.5px solid #FFFFFF33;
    padding-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
    padding: 0;
}

.form-group label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.form-col {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.form-control {
    background: #FFFFFF2B;
    border: 1px solid #FFFFFF1A;
    border-radius: 6px;
    color: #FFFFFF99;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 500;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(90deg, #0092D0 0%, #3CB8ED 100%);
    border: 1px solid #FFFFFF;
    box-shadow: 0px 6px 4px 0px #FFFFFF40 inset;
    max-height: 48px;
    color: #ffffff;
    padding: 18px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

}


/* Features Section */
.features-section {
    padding: 64px 0;
    background: #FFFFFF1C;
    position: relative;
}

.features-header {
    margin-bottom: 4rem;
}

.features-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.features-description {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 485px;
    margin: 12px auto 0 auto;
}

.feature-card-wrapper {

    height: 100%;
    display: flex;
    justify-content: center;

}

.features-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 64px;
}

.feature-card {
    background-image: url('../assets/images/pngs/cards-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #35005CB8;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #FFFFFF66;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
    max-height: 373px;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #35005CB8;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.icon-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    z-index: 2;
    ;

}

.menu_cards {
    gap: 24px;
}

.icon-circle {
    display: flex;
    justify-content: center;
}

.icon-svg {
    width: 67px;
    height: 67px;
}

/* Services Cards Section */
.services-cards-section {
    padding: 80px 0;
    background: #35005C;
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #DDDDDB;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.feature-title {
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    color: white;
    opacity: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    text-align: left;


}

.enq-btn {
    margin-top: 64px;
    background: linear-gradient(90deg, #0092D0 0%, #3CB8ED 100%);
    border: 1px solid #FFFFFF;
    color: #ffffff;
    padding: 17px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    max-height: 48px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(250deg);
}

.service-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.btn-enquire {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-enquire:hover {
    opacity: 0.9;
}

/* Middle Section */
.middle-section {
    padding: 100px 0;
    background: #35005C;
    position: relative;
    overflow: hidden;
}

.middle-content-desc {
    margin-right: 200px;
}

.abstract-elements {
    /* position: relative;
    /* height: 400px;
    width: 100%; */
}

.gradient-text-third {
    background: #3CB8ED;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.middle-section-container {
    position: relative;
    padding: 242px 0;
}

.abstract-shape {
    position: absolute;
    opacity: 1;

}
.about-img-container{
    position: absolute;
    top: 0;
    opacity: 0.5;
    height:auto;
}
.about-img-container2{
    position: absolute;
    right: 0;
    top: 0;

}
.about-img{
    height: 100%;
}


.abs-1 {
    top: 0;
    right: -54px;

}

.abs-2 {
    top: 30%;
    right: 10%;

}

.abs-3 {
    bottom: 0;
    left: 20%;
    transform: rotate(-15deg);
}



.middle-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 13px;
    color: #ffffff;
    position: relative;
}

.middle-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 487px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Footer */
.main-footer {
    padding: 60px 0 0 0;
    background: #35005C;
    border-top: 1px solid #FFFFFF33
}


.footer-content {
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    width: 111px;
    height: 76px;
    margin: 0 auto 90px auto;
    display: block;
}

.footer-divider {

    border: 1px solid #FFFFFF4D
}

.footer-nav {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 64px;
    margin-bottom: 32px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
    color: #ffffff;
    text-decoration: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 37px;
    margin-bottom: 28px;
}

.footer-copyright-container {
    background-color: #1B1B1B;
    padding: 8px 0;
    ;
}

.footer-copyright {
    font-weight: 400;

    font-size: 16px;
    color: #FFFFFF;
    text-align: center;


}
.hero-background-shapes-container{
    position: relative;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #FFFFFF;
}

.hero-content-row {
    gap: 30px;
}

.desc_container {
    justify-content: end;
    align-items: end;
}

.btn-grow:hover,.btn-submit:hover,.enq-btn:hover,
.btn-grow:focus,
.btn-grow:active {
    background: linear-gradient(90deg,
            #2b7db2 0%,
            #3da1cc 100%);
    border: 1px solid #ffffff;
    color: #ffffff;

}


/* Responsive Styles */
@media (max-width: 1440px) {
    .container {
        max-width: 1240px;
    }
    .middle-content-desc {
        margin-right: 89px;
    }
    .navbar {
        max-width: 1200px;
    }
}


@media (max-width: 1240px) {
    .container {
        max-width: 1120px;
    }

    .navbar {
        max-width: 1160px;
    }

    .middle-title {
        font-size: 44px;
    }

    .middle-section {
        padding: 70px 0;
    }

    .middle-section-container {
        padding: 206px 0;
    }

    .middle-title {
        font-size: 48px;
    }
    .about-img-container{
       
        height:100%;
    }
}

@media (max-width: 1024px) {

    .bg-shape {
        width: 57%;
        height: 100%;
        right: 0;
        bottom: 135px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 22px;
    }

    .features-title {
        font-size: 42px;
    }

    .feature-title {
        font-size: 24px;
    }

    .menu_cards {
        gap: 18px;
    }

    .icon-svg {
        width: 62px;
        height: 62px;
    }

    .icon-container {
        padding: 14px;
    }

    .features-main {
        column-gap: 32px;
        row-gap: 42px;
    }

    .abs-1 {
        top: 0;
        right: 22px;
        width: 100%;
        height: 100%;
    }

    .middle-title {
        font-size: 41px;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 57px auto;
        width: 98px;
        height: 64px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        max-width: 860px;
    }

    .form-col {
        display: flex;
        gap: 18px;
        flex-wrap: nowrap;
        flex-direction: column;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 0;
        padding: 0;

    }

    .btn-submit {
        margin-top: 24px;
    }

    .enquiry-form-card {

        padding: 32px 32px;
        width: 360px;
    }

    .features-main {
        column-gap: 23px;
        row-gap: 24px;
    }

    .feature-title {
        font-size: 22px;
    }

    .icon-svg {
        width: 54px;
        height: 54px;
    }

    .icon-container {
        padding: 8px;
    }

    .feature-card {
        padding: 20px;
    }

    .navbar {
        padding: 19px 32px;
        max-width: 880px;
        margin: 0 auto;
        border: none;
        -webkit-backdrop-filter: 0;
        backdrop-filter: 0;
        border-radius: 200px;
        background: transparent;
        max-height: 80px;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .middle-title {
        font-size: 2.5rem;
    }

    .header-buttons {
        margin-left: 0;
        margin-top: 1rem;
    }

   
    .middle-content-desc {
        margin-right: 0;
    }

    .middle-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar-collapse {
        display: none !important;
    }

    /* Show side menu on small screens */
    .side-menu {
        display: block;
    }

    .hero-section {
        position: relative;
        padding: 193px 0 100px 0;
    }

    .first_section_gradient {
        display: none;
    }

    .footer-nav {
        gap: 52px;
    }

}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .desc_container {
        justify-content: center;
    }

    .container {
        max-width: 640px;
    }

    .hero-content-row {
        flex-direction: column;
    }

    .bg-shape,
    .first_section_gradient {
        display: none;
    }

    .enquiry-form-card {
        margin-top: 0;
        width: 100%;
    }

    .navbar {
        padding: 19px 20px;
        max-width: 680px;
    }
.hero-background-shapes{
    display: none;
}
    .form-col {
        display: flex;
        gap: 18px;
        flex-wrap: nowrap;
        flex-direction: row;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .features-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .enq-btn {
        margin-top: 40px;
    }

    .desc_container {
        justify-content: center;

    }

    .features-title {
        font-size: 2rem;
    }

    .middle-title {
        font-size: 2rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }


    .middle-section {
        padding: 60px 0;
    }




    .middle-content-desc {
        margin-left: 110px;
    }

    .middle-section-container {
        padding: 145px 0;
    }

    .middle-subtitle {
        font-size: 22px;
    }

    .form-group {
        width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .footer-nav {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 24px;
        margin-bottom: 32px;
    }

    .footer-link {

        font-size: 17px;
    }

    .footer-logo-img {
        margin: 0 auto 37px auto;
        width: 89px;
        height: 54px;
    }

    .fourth_section_gradient {
        display: none;
    }
}


@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .fourth_section_gradient {
        display: none;
    }

    .features-main {
        grid-template-columns: repeat(1, 1fr);
        column-gap: 16px;
        row-gap: 20px;
    }

    .icon-svg {
        width: 48px;
        height: 48px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-card {
        padding: 16px;
    }

    .menu_cards {
        gap: 12px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        max-width: 510px;
    }

    .navbar {
        max-width: 520px;
    }

    .features-title {
        font-size: 1.75rem;
    }

    .middle-title {
        font-size: 1.75rem;
    }

    .middle-subtitle {
        font-size: 1rem;
    }

    .header-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-login,
    .btn-grow {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }

    .form-col{
        flex-direction: column;
    }
    .nav-sub-class,
    .navbar {
        background-color: #35005C;
    }

    /* Side menu adjustments for very small screens */
    .side-menu {
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        position: relative;
        padding: 111px 0 100px 0;
    }
    .middle-content-desc {
        margin-left: 0;
    }

}

@media (max-width: 375px) {
    .container {
        max-width: 95%;
        padding: 0 16px;
    }

    .hero-content {
        padding: 32px 0 0 0;
    }

    .second_section_gradient {
        display: none;
    }

    .form-col {
        flex-direction: column;
    }

    .form-group label {

        margin-bottom: 12px;
    }

    .enquiry-form-card {
        padding: 24px 20px;
    }

    .hero-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 16px;
        text-align: center;
        font-weight: 300;
    }

    .features-main {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .middle-subtitle {
        font-size: 16px;
    }

    .middle-content-desc {
        margin-left: 0;
    }

    .middle-title {
        text-align: center;
    }

    .abs-1 {
        top: 0;
        right: 22px;
        width: 103%;
        height: 81%;
    }

    .middle-section-container {
        padding: 59px 0;
    }
}

@media (max-width: 320px) {
    .container {
        max-width: 95%;
    }
    .navbar {
        max-width: 95%;
    }

}
