 /* --- 1. VARIABLES & RESET --- */
:root {
    --brand-50: #eef2ff;
    --brand-100: #e0e7ff;
    --brand-500: #6366f1;
    --brand-600: #4f46e5;
    --brand-700: #4338ca;
    --brand-900: #312e81;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    
    --success: #10b981;
    --error: #ef4444;

    /* Category Colors */
    --tag-prod-bg: #e0e7ff; --tag-prod-text: #4338ca;
    --tag-fin-bg: #dcfce7; --tag-fin-text: #15803d;
    --tag-op-bg: #fef9c3; --tag-op-text: #a16207;
    --tag-part-bg: #fee2e2; --tag-part-text: #b91c1c;
    --tag-award-bg: #dbeafe; --tag-award-text: #1d4ed8;
    --tag-sec-bg: #f3e8ff; --tag-sec-text: #7e22ce;

    --font-main: 'Inter', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-main);
    background-color: #f8fafc;
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.2s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 4rem 0; }
.hidden { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--brand-600);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}
.btn-primary:hover { background-color: var(--brand-700); transform: translateY(-2px); }

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}
.btn-outline:hover { border-color: var(--brand-600); color: var(--brand-600); background: var(--brand-50); }

.btn-white {
    background-color: var(--white);
    color: var(--brand-900);
}
.btn-white:hover { background-color: var(--gray-100); }

/* --- 2. HEADER & NAV --- */

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #5325b4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo1 {
    text-decoration: none;
    display: flex;
    align-items: center;
    order: 1;
}

.logo1 img {
    height: 50px;
    width: auto;
}

#menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    order: 3;
}

.navbar1 {
    display: flex;
    align-items: center;
    gap: 2rem;
    order: 2;
}

.navbar1 > a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar1 > a:hover {
    color: #A49AF7;
}

#myUL {
    list-style: none;
    color: var(--white);
    margin: 0;
    padding: 0;
}

#myUL > li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: var(--white);
    font-weight: 500;
}

#myUL > li > span {
    margin-left: 5px;
}

#myUL > li.active > span {
    transform: rotate(180deg);
}

.nested {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 180px;
    margin-top: 10px;
    list-style: none;
    z-index: 100;
}

#myUL > li.active .nested {
    display: block;
}

.nested li {
    display: block;
    padding: 0.5rem 1.5rem;
}

.nested a {
    color: #0f172a;
    text-decoration: none;
    display: block;
}

.nested a:hover {
    color: #5325b4;
}

.btn111 {
    padding: 0.75rem 1.5rem;
    background-color: var( --slate-900);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn111:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}  

/* Login Forms */
.login-form-container,
.login-form-container11 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.login-form-container.active,
.login-form-container11.active {
    display: flex;
}

.login-form-container form,
.login-form-container11 form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.login-form-container .fas,
.login-form-container11 .fas {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.login-form-container h3,
.login-form-container11 h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.box, .box11 {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.button {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.hidden { display: none !important; }

/* --- 3. HERO SECTION --- */
.hero {
    background-color: var(--brand-900);
    color: var(--white);
    padding: 12rem 1rem 8rem 1rem;
    margin-bottom: 7rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.125rem;
    color: var(--brand-100);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}


/* --- 4. FEATURED STORY --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--slate-900); }

.featured-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    border: 1px solid var(--gray-200);
}

.featured-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-img-wrapper { min-height: 300px; position: relative; }
.featured-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }


.btn11 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    margin: 2rem 0rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary11 {
    background-color: var(--brand-600);
    color: var(--white);
}

.btn-primary11:hover {
    background-color: var(--brand-700);
}

.btn-outline11 {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline11:hover {
    background-color: var(--brand-50);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.feat-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--slate-900); margin-bottom: 1rem; line-height: 1.2; }
.feat-desc { color: var(--gray-600); font-size: 1.1rem; margin-bottom: 2rem; }

.meta-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.date-meta { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-500); font-size: 0.9rem; }

/* --- 5. NEWS GRID & FILTERS --- */
.filters-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 2rem;
    text-align: center;
    -ms-overflow-style: none;
        /* scrollbar-width: none; hide scroll */
}
.filters-container::-webkit-scrollbar { display: none; }

.filter-wrapper { display: inline-flex; gap: 0.5rem; }

.filter-btn {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: 0.2s;
}
.filter-btn:hover { background: var(--gray-100); }
.filter-btn.active { background: var(--brand-600); color: white; border-color: var(--brand-600); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 20px -5px rgba(0,0,0,0.1); }

.card-img { height: 200px; width: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.card-meta { display: flex; justify-content: space-between; margin-bottom: 1rem; align-items: center; }
.card-tag { font-size: 0.75rem; font-weight: 700; padding: 2px 10px; border-radius: 20px; }
.card-date { font-size: 0.8rem; color: var(--gray-500); }

.card-title { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.75rem; line-height: 1.3; }
.card-excerpt { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.5; flex: 1; }

.card-link { color: var(--brand-600); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; margin-top: auto; }

.load-more-wrapper { text-align: center; margin-top: 1rem; }

/* --- 6. NEWSLETTER & PRESS --- */
.newsletter-box {
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.form-input {
flex-grow: 1;
padding: 0.75rem 1rem;
border: 1px solid var(--gray-300);
margin: 2rem 0rem;
border-radius: 0.5rem;
font-size: 1rem;
font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.msg-container {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msg-success { color: var(--green-600); }
.msg-error { color: var(--red-600); }

/* Press Contact */
.press-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

/* --- 7. APP DOWNLOAD --- */
.app-section {
    background: var(--slate-900);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}
.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}
.app-content h2 { font-size: 2.5rem; margin-bottom: 1rem; font-family: var(--font-display); }
.app-content p { color: var(--gray-300); margin-bottom: 2rem; font-size: 1.1rem; }
.store-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.store-btn {
    background: var(--slate-800);
    border: 1px solid #334155;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    transition: 0.2s;
}

.store-btn:hover { background: #334155; transform: translateY(-2px); }
.store-text span { display: block; font-size: 0.65rem; opacity: 0.7; }
.store-text strong { display: block; font-size: 1rem; }

.app-img-wrap { position: relative; }
.app-img-wrap img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: rotate(-5deg); transition: 0.3s; }
.app-img-wrap:hover img { transform: rotate(0deg) scale(1.02); }

/* --- 8. FOOTER --- */

.mainback {
    background: #5325b4;
    color: white;
    padding: 3rem 5% 2rem 5%;
}

.low {
    /* max-width: 1400px; */
    display: flex;
    display: inline-block;
    width: 100%;
}

.logo{
	display: inline-block;
	padding: 10px 0px 0px 0px;
}

.logotext{
	display: inline-block;
	font-size: 1.8em;
	color: #fff;
	padding: 0px 45px 0px 0px;
}

.logotext a img{
	width: 45%;
}

.logotext a {
	font-size: 1em;
	color: #fff;
}

.logo2{
	display: inline-block;
	padding: 0px 0px 0px 12rem;
}

.logotext2{
	display: inline-block;
	font-size: 1.8em;
	color: #fff;
	padding: 0px 5px 0px 0px;
}

.logotext2 a {
	font-size: 1em;
	padding-top: 0px;
	color: #fafafa;
}

.logotext2 p {
	font-size: 0.6em;
	padding-top: 0px;
	padding-bottom: 18px;
	color: #fff;
}

.low{
	background-color: var(--second-color); 
	color: white;
	width: 100%; 
	display: inline-block;
	margin: 20px 0px;
	padding: 20px 0px 0px 30px;
	font-size: 1.5rem;
}

.low2{
	display: inline-block;	
	color: #fff;
	font-size: 0.5rem;
	font-weight: 600;
	text-align: left;
	vertical-align: top;
	padding: 20px 1rem 0rem 0rem;
}

.low2 a{
	text-decoration: none;
	font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.low2 :hover{	
	color:  #fff;
}

.line{
	padding: 20px 0px 20px 0px;
	border-bottom: 0.2px groove rgb(118, 115, 115);
	margin: 0px 60px 0px 0px;
}

.low6{
	margin: 3rem 0rem 3rem 19rem;
	padding: 0rem;	
}

.low6 a{
	font-size: 2rem;
	color: #fff;
	padding: 1rem;
    text-decoration: none;
	margin: 0px 0px 0px 2rem;
}

.low6 a :hover{
	color: #ebe6e6;
}

.back {
    text-align: center;
    padding: 1rem 0;
    margin: 0rem 0rem 0rem 0rem;
}

.subtopic {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
}
    /* --- 9. MODALS --- */
    .modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        /* backdrop-filter: blur(5px); */
        z-index: 2000;
        display: flex; justify-content: center; align-items: center;
        opacity: 0; visibility: hidden; transition: 0.3s;
    }
    .modal-overlay.active { opacity: 1; visibility: visible; }
    
    .modal-box {
        background: white;
        padding: 2.5rem;
        border-radius: 16px;
        width: 90%; max-width: 400px;
        position: relative;
        transform: translateY(20px); transition: 0.3s;
    }
    .modal-overlay.active .modal-box { transform: translateY(0); }
    
    .close-modal { position: absolute; top: 1rem; right: 1rem; cursor: pointer; color: var(--gray-500); }
    .modal-title { text-align: center; margin-bottom: 1.5rem; font-size: 1.5rem; color: var(--slate-900); }
    
    .input-group { margin-bottom: 1rem; }
    .input-group input { width: 100%; padding: 0.8rem; border: 1px solid var(--gray-300); border-radius: 8px; }
    .modal-btn { width: 100%; padding: 0.8rem; background: var(--brand-600); color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; }

    /* Scroll Top Btn */
    #scrollTopBtn {
        position: fixed; bottom: 2rem; right: 2rem;
        background: var(--brand-600); color: white;
        width: 50px; height: 50px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; border: none;
        opacity: 0; pointer-events: none; transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 900;
    }
    #scrollTopBtn.show { opacity: 1; pointer-events: auto; }




















    

    /* --- 10. RESPONSIVE MEDIA QUERIES --- */




@media (max-width: 1290px) {
    
    .headings {
        font-size: 4.4rem;
        font-weight: 400;
        margin-bottom: 4rem;
        color: var(--bg-color);
        text-align: left;
        float: left;
        width: 46%;
    }

    .headings p {
        font-size: 1.2rem;
        color: var(--bg-color);
        max-width: 600px;
        padding: 3rem 0rem 1rem 0rem;
    }

    .logo2 {
        display: inline-block;
        padding: 0px 0px 0px 12rem;
    }

    .low6 {
        margin: 3rem 0rem 3rem 20rem;
        padding: 0rem;
    }

}

























 /* Responsive Styles */
@media (max-width: 1028px) {
            
    .container { padding: 0 2rem; }

    .featured-card { grid-template-columns: 2fr 1fr; }

    .featured-image-wrapper { min-height: 100%; }

    .news-grid { grid-template-columns: repeat(3, 1fr); }

    .logo {
        display: inline-block;
        padding: 0px;
    }

    .logotext2 p {
        font-size: 1.4rem;
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .low2 {
        display: inline-block;
        padding: 0px 1rem 0rem 0rem;
    }

    .logo2 {
        padding: 0px;
    }

    .low6 {
        margin: 3rem 0rem 3rem 12rem;
    }

    .subtopic { 
        font-size: 1.2rem;
    }

}
















@media (max-width: 992px) {

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
        .featured-card { grid-template-columns: 2fr; }
        .featured-img-wrapper { height: 250px; order: -1; } /* Image on top */
        .app-container { grid-template-columns: 1fr; text-align: center; }
        .store-btns { justify-content: center; }
        .app-img-wrap { display: none; } /* Hide app image on tablet to save space */
    
         .logo2 {
        display: inline-block;
        padding: 0px 0px 0px 0rem;
    }

    .low6 {
        margin: 3rem 0rem 3rem 9rem;
        padding: 0rem;
    }


    }
    




















    @media (max-width: 780px) {

    #menu-btn {
        display: block;
        color: white;
    }

    .navbar1 {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #5325b4;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: top 0.3s;
        align-items: flex-start;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar1.active {
        left: 0;
    }

    #myUL > li:hover .nested {
        display: none;
    }

    #myUL > li.active .nested {
        display: block;
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .nested {
        position: static;
        box-shadow: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px; left: 0; width: 100%;
        background: white; flex-direction: column;
        padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
        
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .form-group { flex-direction: column; }
    .btn { width: 100%; }

    .mainback {
        background: #5325b4;
        color: white;
        padding: 3rem 5% 2rem 5%;
    }

    .low6 {
        margin: 3rem 0rem 2rem 4rem;
    }

     .logo2 {
        display: inline-block;
        padding: 0px 0px 0px 0rem;
    }

     .low6 {
        margin: 3rem 0rem 3rem 5rem;
        padding: 0rem;
    }

    }

    /* Color Utility Classes */
    .bg-brand { background: var(--tag-prod-bg); color: var(--tag-prod-text); }
    .bg-green { background: var(--tag-fin-bg); color: var(--tag-fin-text); }
    .bg-yellow { background: var(--tag-op-bg); color: var(--tag-op-text); }
    .bg-red { background: var(--tag-part-bg); color: var(--tag-part-text); }
    .bg-blue { background: var(--tag-award-bg); color: var(--tag-award-text); }
    .bg-purple { background: var(--tag-sec-bg); color: var(--tag-sec-text); }






















    

@media (max-width: 580px) {

     .section-title { margin-bottom: 0; }
    
    .featured-card { grid-template-columns: 1fr; }
    .featured-img-wrapper { height: 250px; order: -1; } /* Image on top */
    .app-container { grid-template-columns: 1fr; text-align: center; }
    .store-btns { justify-content: center; }
    .app-img-wrap { display: none; } /* Hide app image on tablet to save space */


    .featured-content { padding: 2rem; flex-direction: column; }

    .news-grid { grid-template-columns: 1fr; }

    .newsletter-box { padding: 3rem; }
    
    .newsletter-form { flex-direction: row; }
    
    .press-box { padding: 3rem; }

    .low {
        margin: 10px 0px;
        padding: 10px 0px 0px 30px;
        font-size: 1.5rem;
    }

    .low2 {
        padding: 0px 1rem 0rem 0rem;
    }

    .logo2 {
        padding: 0px;
    }

    .low6 {
        margin: 3rem 0rem 3rem 1rem;
        padding: 0rem;
    }

    .low6 a {
        font-size: 2rem;
        color: #fff;
        padding: 1rem;
        text-decoration: none;
        margin: 5px; 
    }
    
    .back {
        text-align: center;
        padding: 1rem 0;
        margin: 0rem 3rem 0rem 0rem;
    }
    
}





































/* Mobile Phones - 480px and below */
@media (max-width: 480px) {

.btn {
        width: 100%;
    }

   .logotext2 p {
        font-size: 1.2rem;
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .low {
        margin: 10px 0px;
        padding: 10px 0px 0px 30px;
        font-size: 1.5rem;
    }

    .low2 {
        padding: 0px 1rem 0rem 0rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .logo2 {
        padding: 0px;
    }

    .low6 {
        margin: 3rem 0rem 1rem 1rem;
        padding: 0rem;
    }

    .low6 a {
        font-size: 2rem;
        padding: 0.8rem;
        margin: 2px;
    }

    .line {
        margin: 0px 23px 0px 0px;
        padding-top: 10px;
    }
    
    .back {
        text-align: center;
        padding: 1rem 0;
        margin: 0rem 3rem 0rem 1rem;
    }

    .subtopic {
        font-size: 1.1rem;
    }

}






















/* Mobile Phones - 400px and below */
@media (max-width: 400px) {

    .mainservice {
        display: grid;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 0rem;
        padding: 3rem 5% 18rem 2%;
    }

    .headings {
        font-size: 2.5rem;
        font-weight: 400;
        margin-bottom: 2rem;
        padding: 0rem;
        text-align: center;
	    float: left;
        width: 100%;
    }

    .headings p {
        max-width: 650px;
        padding: 1rem 1rem 2rem 1rem;
        font-size: 1rem; 
    }

    .mainback {
        padding: 2rem 5% 2rem 1%;
    }

    .low {
        margin: 10px 0px;
        padding: 10px 0px 0px 20px;
        font-size: 1.2rem;
    }

}






















/* Mobile Phones - 350px and below */
@media (max-width: 350px) {

    .mainservice {
        display: grid;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 0rem;
        padding: 3rem 5% 18rem 2%;
    }

    .headings {
        font-size: 2.5rem;
        font-weight: 400;
        margin-bottom: 2rem;
        padding: 0rem;
        text-align: center;
	    float: left;
        width: 100%;
    }

    .headings p {
        max-width: 650px;
        padding: 1rem 1rem 2rem 1rem;
        font-size: 1rem; 
    }

    .mainback {
        padding: 2rem 5% 2rem 1%;
    }

    .low {
        margin: 10px 0px;
        padding: 10px 0px 0px 20px;
        font-size: 1.2rem;
    }

}