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

:root {
    --bg: white;
    --textcolor: black;
    --accentcolor1: #1c2b39;
    --accentcolor2: #00FF77;
    --accentcolor3: #ff9d00;
    --accentcolor4: #0047ab;
}

@font-face {
    font-family: 'web';
    src: url('../Assets/fonts/Font.ttf') format('truetype');
    font-display: swap;
}

body {
    background-color: var(--bg);
    font-family: "web", Arial;
    scroll-behavior: smooth;
}
section {
    margin: 0px auto 50px auto !important;
}
/* DESKTOP NAVBAR */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--accentcolor1);
    position: sticky;
    border-bottom: 2px solid var(--accentcolor3);
    top: 0;
    width: 100%;
    z-index: 100;
}
.hidden {
    display: none;
}
.logo img {
    max-width: 90%;
    height: auto;
}

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

.nav-link {
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    color: var(--bg);
    padding: 10px;
    align-self: center;
    transition: all 0.3s ease-in-out;
}

.navbutton {
    text-decoration: none;
    font-size: 19px;
    color: var(--accentcolor1);
    align-self: center;
    padding: 2px 12px;
    border-radius: 15px;
    border: 2px solid var(--accentcolor3);
    background-color: var(--accentcolor3);
    transition: all 0.3s ease-in-out;
}
.navbutton:hover {
    background-color: var(--accentcolor1);
    border: 2px solid var(--accentcolor3);
    color: var(--accentcolor3);
}

.nav-link:hover {
    color: var(--accentcolor3);
}

.nav-link.active {
    color: var(--accentcolor3);
}

/* DRAWER MENU FOR MOBILE */
.drawer {
    position: fixed;
    left: -100%;
    width: 100vw;
    padding: 1rem;
    transition: 0.3s all ease;
    z-index: 100;
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    height: 100vh;
}

.drawer.open {
    left: 0%;
    top: 0;
    text-align: center;
}

.drawer .nav-link {
    text-decoration: none;
    color: var(--bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
    transition: all 0.3s ease-in-out;

}

.drawer .nav-link:hover {
    color: var(--orange);
}
.mobilenav{
    display: flex;
    justify-content: space-between;
    align-items: start;
    background-color: var(--accentcolor1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.menu-icon {
    position: absolute;
    top: 1.7rem;
    left: 1.5rem;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    background: var(--bg);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
    bottom: 0;
}

/* Transform Menu Icon into Cross Icon */
.menu-icon.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
    opacity: 0;
}

.menu-icon.open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-logo {
    display: none;
    text-align: center;
    padding: 5px 10px;
    position: sticky;
    top: 0;
    width: 100vw;
    z-index: 100;
    border-bottom: 2px solid var(--accentcolor3);
}

.mobile-logo a img {
    max-width: 80%;
    height: auto;
    padding: 10px;
}

.promobar {
    position: relative;
    background: var(--accentcolor3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 2rem;
    transition: all 0.5s ease;
}

.promobar p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 400;
    color: var(--textcolor);
    text-align: center;
    flex: 1;
}

.promobar span {
    font-weight: 800;
}

.promobar svg {
    width: 20px;
    height: 20px;
    fill: var(--textcolor);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promobar svg:hover {
    transform: scale(1.1);
}

.promobar.fade-out {
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.heading {
    font-size: 3.5rem;
    line-height: 1.4;
    font-weight: 900;
    text-align: center;
    color: var(--textcolor);
}

.mainpara {
    font-size: 1.3rem;
    color: var(--textcolor);
    line-height: 1.7;
    padding: 10px;
    max-width: 80%;
}

.maincontent {
    background-color: rgba(28, 43, 57, 0.7);
    padding: 3rem 2rem 3rem 2rem;
    width: 100%;
    min-height: 92vh;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.maincontent img { 
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    overflow: hidden;
}
.maincontent h1{
    font-size: 4rem;
    line-height: 1.4;
    color: var(--bg);
}
.maincontent > p {
    color: var(--bg);
    padding: 0;
    margin-bottom: 3vw;
}
.maincontent .hyperlink { 
    color: var(--accentcolor3);
}
#bookingIframe {
    max-width: 90vw;
    width: 100%;
    min-height: 71px;
    display: block;
    z-index: 10;
    margin-bottom: 3vw;
    border: none;
    transition: height 0.25s ease;
}
.iconslist{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2rem;
    max-width: 90vw;
}

.iconbanner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.iconbanner svg {
    flex-shrink: 0;
    width: 100%;
    height: 3rem;
}
.iconbanner p{
    font-size: 1.5rem;
    color: var(--bg);
}

.featurelist {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 3vw auto 2vw auto;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


.featurebanner {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.25rem;
    max-width: 30vw;
    text-align: left;
}

.featurebanner svg {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    fill: var(--accentcolor3);
}

.boxheading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--bg);
}

.boxpara {
    font-size: 1rem;
    color: var(--bg);
}
.reviews{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90%;
    margin: 5rem auto;
}
.reviewscontainer{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
}
.reviewcard{
    background-color: var(--accentcolor1);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: var(--bg);
}
.reviewcard svg {
    flex-shrink: 0; 
    width: 8rem;
}

.about {
    max-width: 90%;
    margin: 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.imagesection {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.imagesection p {
    max-width: 100%;
    font-size: 1.4rem;
    padding: 0;
}
.imagesection img {
    width: 30%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px;
}

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

.hyperlink {
    color: var(--accentcolor4);
    font-weight: 800;
    text-decoration: none;
}

.cardscontainer {
    margin-block: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    background-color: var(--accentcolor1);
    border-radius: 15px;
    padding: 2rem;
}
.fleetheader{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.fleetheading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg);
}
.fleettag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg,red, color-mix(in srgb, var(--accentcolor3), #000 15%));
    color: var(--bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.fleettag svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.fleeticonslist{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin:-0.5rem auto 2rem auto;
}
.fleeticonsbanner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.fleeticonsbanner svg {
    flex-shrink: 0;
    fill: var(--bg);
    width: 2rem;
    height: auto;
    margin-bottom: 0px;
}
.cardetails{
   display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    justify-content: start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.detail{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.detail svg {
    flex-shrink: 0;
    width: 2rem;
}
.fleetbtn{    
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--accentcolor1);
    align-self: center;
    padding: 2px 16px;
    border-radius: 15px;
    border: 2px solid var(--accentcolor2);
    background-color: var(--accentcolor2);
    transition: all 0.3s ease-in-out;
}
.fleetbtn:hover {
    background-color: var(--accentcolor3);
    border: 2px solid var(--accentcolor3);
    color: var(--bg);
}
.car svg {
    width: 100%;
    height: 100%;
}
.cardh2 {
    font-size: 1rem;
    font-weight: 400;
    padding: 5px 0px;
    color: var(--bg);
}

.features{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1.5rem;
    width: 90%;
    margin: 5rem auto;
}
.features img {
    width: 30%;
    height:auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px;
}
.featurerightsection{
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}
.featurecard{
    display: flex;
    justify-content: start;
    gap: 1rem;
}
.featurecard svg {
    flex-shrink: 0;
    height: 4rem;
    width: 5rem;
    fill: var(--accentcolor3);
}
.featuretext p, .featuretext h3{
    color: var(--textcolor);
}

.servicessection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 90%;
    margin: 5rem auto;
}

.servicescontainer{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1500px;
}
.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--accentcolor1);
    color: var(--bg);
    transition: all 0.2s ease;
}
.service-card svg{
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
}
.service-card:hover {
    background-color: var(--accentcolor3);
    color: var(--textcolor);
}

.featuredblogs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    max-width: 90%;
}

/* Carousel */
.blogscarousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
}

/* Viewport */
.blogsviewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.blogsviewport::-webkit-scrollbar {
    display: none;
}
.blogsviewport {
    scrollbar-width: none;
}

.blogscontainer {
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 6px;
    width: 100%;
}

.blogcard {
    max-width: 33%;
    flex: 0 0 33.3333%;
    padding: 10px;
    border-radius: 15px;
    border: 5px solid var(--accentcolor1);
    text-decoration: none;
    color: var(--bg);
}
.blogcard h3 , .blogcard p {
    color: var(--textcolor);
}

.blogcard img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

/* Buttons */
.carouselbtn {
    background-color: var(--accentcolor1);
    color: var(--bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.carouselbtn svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--bg);
}

.popularlocations{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 5rem auto;
}

.locationbox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 90%;
    background-color: var(--accentcolor1);
    border-radius: 15px;
    padding: 2rem;
}

.link {
    font-size: 1rem;
    color: var(--bg);
    cursor: pointer;
}
/* General Footer Styling */
footer {
    background-color: var(--accentcolor1);
    color: var(--bg);
    padding: 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100vw;
    margin: 0 auto;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--bg);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
}

.footer-section ul li a {
    text-decoration: none;
    color: var(--bg);
    padding-left: 4px;
    transition: all 0.3s ease;
}

.footer-section span {
    align-self: center;
}

.footer-section ul li a:hover {
    color: var(--accentcolor3);
}

.active {
    color: var(--accentcolor3);
}


/* Logo and Social Icons */
.logo-section .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialicons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
}

.socialicons a {
    text-decoration: none;
}

.socialicons svg {
    fill: var(--accentcolor3);
    width: 40px;
    transition: all 0.3s ease;
}

.socialicons svg:hover {
    fill: var(--bg);
}


.bottomrow {
    display: flex;
    color: var(--bg);
    justify-content: center;
    width: 100%;
    gap: 2rem;
    align-items: center;
    padding: 5px 2rem;
    font-size: 1rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 100;
    bottom: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.textcontent{
    background-color: var(--accentcolor1);
    text-align: center;
    width: 100%;
    margin: 5rem auto;
    padding: 5rem 2rem;
}
.textcontent p{
    margin: auto;
    font-size: 1.2rem;
    color: var(--bg);
    line-height: 1.7;
}

.faqsection {
    max-width: 1200px;
    margin: 5rem auto;
}

.faqsection .heading {
    text-align: center;
    margin-bottom: 2rem;
}
.accordion {
    display: flex;
    flex-direction: column;
}
.accordion-item {
    overflow: hidden;
}

.accordion-item.top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.accordion-item.bottom {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom: none;
}

.accordion-header {
    background-color: var(--accentcolor1);
    color: var(--bg);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1.5rem 1.5rem;
    text-align: left;
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;   
}
.accordion-icon {
    font-size: 1.5rem;
    transition: all 0.5s ease;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    background-color: var(--accentcolor3);
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body p {
    margin: 0.8rem 1.5rem;
    color: var(--textcolor) !important;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media only screen and (max-width:1400px) {
    .maincontent h1{
        font-size: 3.7rem;
    }
    .maincontent > p {
        font-size: 1.2rem;
    }
    .iconbanner svg{
        width: 70%;
    }
    .iconbanner p{
        font-size: 1.3rem;
    }
    .heading{
        font-size: 3rem;
    }
    .mainpara{
        font-size: 1.2rem;
    }
    .boxheading{
        font-size: 1.3rem;
    }
    .boxpara{
        font-size: 0.9rem;
    }
    .cardscontainer {
        gap: 0.5rem;
    }
    .card{
        padding: 1.5rem;
    }
    .fleetheading{
        font-size: 1.3rem;
    }
    .fleettag{
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
    }
    .servicescontainer{
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .blogscontainer{
        gap: 3px;
    }
    .imagesection { 
        gap: 2rem;
    }

}


@media only screen and (max-width:1200px) {
    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 0rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem 0.8rem;
    }
    .logo img {
        max-width: 90%;
        height: auto;
    }
    .faqsection {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width:1024px) {
    .maincontent{
        padding: 5vw 2vw 5vw 2vw;
    }
    .iconslist{
        max-width: 100%;
    }
    .line {
        display: none;
    }
    .card{
        width: 45%;
    }
    .servicescontainer {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    .faqsection {
        max-width: 95%;
    }
}

@media only screen and (min-width: 821px) {
    .drawer {
        display: none;

    }

    .footerline {
        display: none !important;
    }

    .menu-icon {
        display: none;
    }
}

@media only screen and (max-width: 820px) {
    header{
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .mobile-logo {
        display: block;
    }
    .maincontent{
        padding: 5vw 2vw 3vw 2vw;
    }
    .maincontent h1{
        font-size: 3rem;
    }
    .maincontent > p {
        font-size: 1.1rem;
        margin-bottom: 5vw;
    }
    #bookingIframe{
        margin-bottom: 5vw;
    }
    .iconslist{
        width: 100%;
        flex-wrap: nowrap;
    }
    .iconbanner{
        width: 20%;
        gap: 0.5rem;
    }
    .iconbanner svg {
        height: 2.5rem;
    }
    .iconbanner p{
        font-size: 1.1rem;
    }
    .featurelist {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2rem;
    }
    .featurebanner {
        max-width: 100%;
    }
    .boxheading{
        font-size: 1.4rem;
    }
    .boxpara{
        font-size: 1rem;
    }
    .features{
        flex-direction: column;
    }
    .features img , .featurerightsection{
        flex: 1 1 100%;
        width: 100%;
    }
    .featurerightsection .heading{
     align-self: center;
    }
    .blogscontainer{
        gap: 1rem;
    }
    .blogcard{
        max-width: 49%;
        flex: 0 0 50%;
    }
    .carouselbtn{
     display: none;
    }

    .bottomrow {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0rem;
    }

    .contact-info a {
        color: #ffffff;
        text-decoration: none;
    }

    .promobar {
        z-index: 3;
    }

    .promobar p {
        font-size: 15px;
    }

    .reviewscontainer{
        flex-direction: column;
    }

    .mainpara {
        max-width: 100%;
        padding: 10px;
        text-align: center;
    }
    .about{
        max-width: 95%;
    }

    
    .cardscontainer {
        width: 100%;
        margin: auto;
        justify-content: center;
    }

    .car {
        display: flex;
        justify-content: center;
    }

    .logo img {
        max-width: 100%;
        height: auto;
    }

    .socialicons {
        padding-top: 1.5rem;
        justify-content: center;
    }

    .footer-container {
        justify-content: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footernav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footernavlinks {
        padding: 0px 12px;
    }

    .footercontact {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .bottomrow {
        margin-top: 1rem;
        align-items: center;
    }
    .locationbox {
        max-width: 90%;
        margin: 10px auto;
    }
    .imagesection {
        gap: 1.5rem;
        flex-direction: column-reverse;
    }
    .imagesection img {
        flex: 1 1 100%;
        width: 100%;
        height: auto;
    }

}

@media only screen and (max-width: 600px) {
    section {
        margin: 0rem auto 2.5rem auto !important;
    }
    .maincontent{
        padding: 2.5rem 2vw 3vw 2vw;
    }
    .maincontent h1{
        font-size: 2.5rem;
        line-height: 1.1;
    }
    .maincontent > p {
        font-size: 1rem;
    }
    .iconslist{
        max-width: 95%;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2vw;
    }
    .iconbanner{
        width: 23%;
    }
    .iconbanner svg {
        width: 100%;
    }
    .iconbanner p{
        font-size: 0.8rem;
    }
    .card{
        padding: 2rem;
        width: 95%;
        margin: auto;
    }
    .featurerightsection{
        text-align: center;
        align-items: center;
    }
    .featurecard{
        flex-direction: column;
        align-items: center;

    }
    .blogscontainer{
        max-width: 90vw;
    }
    .blogcard{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .accordion-header{
        font-size: 1.1rem;
        gap: 0.7rem;
    }
}

@media only screen and (max-width: 376px) {
    .heading {
        font-size: 2.5rem;
    }

    .footernavlinks {
        padding: 0px 10px;
    }
}