* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    
html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}
:root {
    --primary: #4F46E5; /* Indigo 600 */
    --primary-dark: #4338ca;
    --primary-light: #EEF2FF;
    --secondary: #10B981; /* Emerald 500 */
    --accent: #F59E0B; /* Amber 500 */
    --dark: #0f172a; /* Slate 900 */
    --text-gray: #475569;
    --light-bg: #F8FAFC;
    --white: #ffffff;
            
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
            
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
            
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; object-fit: cover; }

/* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section { padding: 60px 0; }
        
        .badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 700;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
            line-height: 1.2;
        }

        .section-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--secondary); /* Changed to Secondary for earning focus */
            color: white;
            box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
        }

        .btn-primary:hover {
            background: #059669; /* Darker Emerald */
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.4);
        }
        
        .btn-secondary {
            background: var(--primary); 
            color: white;
            box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.3);
        }

        .btn-secondary:hover {
            background: var(--primary-dark); 
            transform: translateY(-2px);
            box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--white);
            color: white;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

/* 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: var(--dark);
    text-decoration: none;
    display: block;
}

.nested a:hover {
    color: #5325b4;
}

.btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn: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;
}

/* Main Content *//* --- HERO SECTION --- */
        .hero {
            position: relative;
            padding: 140px 0 100px;
            background-color: #fff;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background: linear-gradient(to right, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.7) 100%), 
                        url('https://images.unsplash.com/photo-1556740758-90de374c12ad?auto=format&fit=crop&q=80&w=1600');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--dark);
        }
        
        .hero-content h1 span { color: var(--primary); }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 32px;
            max-width: 500px;
        }

        .hero-image-card {
            background: white;
            padding: 20px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
            transform: rotate(-2deg);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(-2deg); }
            50% { transform: translateY(-15px) rotate(-2deg); }
            100% { transform: translateY(0px) rotate(-2deg); }
        }

        .hero-image-card img { border-radius: var(--radius-md); }

        /* --- WHY CHOOSE BYWORKR --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-box {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius-md);
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-card);
            border-color: var(--primary-light);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .feature-box h3 { margin-bottom: 10px; font-size: 1.25rem; }
        .feature-box p { color: var(--text-gray); font-size: 0.95rem; }

        /* --- FEATURE SPOTLIGHT (Bargaining & Safety) --- */
        .spotlight-section {
            background: #fff;
            overflow: hidden;
        }

        .spotlight-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 100px;
        }
        
        .spotlight-row:last-child { margin-bottom: 0; }

        .spotlight-row.reverse { direction: rtl; }
        .spotlight-row.reverse .spotlight-content { direction: ltr; }

        .spotlight-img {
            position: relative;
        }

        .spotlight-img img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
        }

        .spotlight-content h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .spotlight-content p {
            color: var(--text-gray);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-weight: 500;
            color: var(--dark);
        }

        .feature-list li i { color: var(--secondary); }

        /* --- SERVICES CAROUSEL (SWIPEABLE) --- */
        .services-section { background: var(--light-bg); }

        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* The scrolling wrapper */
        .services-wrapper {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding: 20px 5px 40px 5px; /* Bottom padding for shadow */
            /* -webkit-overflow-scrolling: touch; Smooth scroll on iOS */
            scroll-behavior: smooth;
        }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .services-wrapper::-webkit-scrollbar {
            display: none;
        }
        /* Hide scrollbar for IE, Edge and Firefox */
        .services-wrapper {
            -ms-overflow-style: none;  /* IE and Edge */
            /* scrollbar-width: none;  Firefox */
        }

        /* Service Cards in Carousel */
        .service-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: 0.3s;
            box-shadow: var(--shadow-sm);
            /* Fixed width for carousel items */
            flex: 0 0 300px; 
            scroll-snap-align: start;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-card);
        }

        .service-img-container {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .service-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        
        .service-card:hover .service-img-container img { transform: scale(1.1); }

        .service-icon-float {
            position: absolute;
            bottom: -20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .service-body { padding: 30px 20px 20px; }
        .service-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
        .service-body p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.5; }

        /* Navigation Arrows */
        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: var(--shadow-card);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            color: var(--primary);
            font-size: 1.2rem;
            border: none;
            transition: 0.3s;
        }

        .scroll-btn:hover {
            background: var(--primary);
            color: white;
        }

        .scroll-btn.left { left: -20px; }
        .scroll-btn.right { right: -20px; }

        /* --- PROCESS STEPS --- */
        .process-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .step-item {
            display: flex;
            gap: 25px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .step-item:last-child { margin-bottom: 0; }

        .step-item::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 50px;
            bottom: -40px;
            width: 2px;
            background: #E2E8F0;
            z-index: 0;
        }
        
        .step-item:last-child::before { display: none; }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            z-index: 1;
            flex-shrink: 0;
        }

        .step-content {
            background: white;
            padding: 25px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            flex-grow: 1;
        }

        .step-content h4 { font-size: 1.15rem; margin-bottom: 8px; }
        .step-content p { font-size: 0.95rem; color: var(--text-gray); }

        /* --- PROMOTION BANNER --- */
        .promo-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #818CF8 100%);
            border-radius: var(--radius-lg);
            padding: 60px;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .promo-text { max-width: 600px; position: relative; z-index: 2; }
        .promo-text h3 { font-size: 2rem; margin-bottom: 15px; font-weight: 800; }
        .promo-text p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 25px; }
        
        .promo-decoration {
            font-size: 15rem;
            position: absolute;
            right: -50px;
            bottom: -80px;
            color: rgba(255,255,255,0.1);
            transform: rotate(20deg);
        }


.subtitles {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

 /* FAQ Section */
.faq {
    padding: 5rem 5%;
    background: white;
    text-align: center;
	width: 100%;
}

.faq h2 {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    font-weight: bold;
    color: #1a1a1a;
}

.faq .subtitle {
    color: #666;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9ff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
}

.faq-question:hover {
    background: #eef0ff;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C5CE7;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #333;
    text-align: left;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.btnx {
    padding: 0.75rem 1.5rem;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btnx:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

/* --- DOWNLOAD APP --- */
.app-download {
    background: var(--dark);
    color: white;
    padding: 80px 0;
    margin-top: 80px;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.app-content h2 { font-size: 2.8rem; margin-bottom: 20px; font-weight: 800; }
.app-content p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 40px; }
        
.app-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
        
.store-btn {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    color: white;
}
        
.store-btn:hover { background: #334155; transform: translateY(-3px); }
.store-icon { font-size: 1.8rem; }
.store-text span { display: block; font-size: 0.7rem; color: #94a3b8; }
.store-text strong { font-size: 1.1rem; }


/* 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);
}

/* Swipeable Container for Mobile */
.swipeable-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    /* -webkit-overflow-scrolling: touch; */
    /* scrollbar-width: none; */
    -ms-overflow-style: none;
}

.swipeable-container::-webkit-scrollbar {
    display: none;
}




























@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 15rem;
    }

    .low6 {
        margin: 3rem 0rem 3rem 20rem;
        padding: 0rem;
    }

}

























 /* Responsive Styles */
@media (max-width: 1028px) {
            
    .mainservice {
        display: grid;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 0rem;
        padding: 3rem 5% 27rem 5%;
        background-color: #5325b4;
    }

    .headings {
        font-size:  4.4rem;
        font-weight: 400;
        margin-bottom: 2rem;
        padding: 0rem;
        text-align: center;
	    float: left;
        width: 100%;
    }

    .headings p {
        max-width: 750px;
        padding: 1rem 0rem 0rem 12rem; 
        width: 100%; 
    }

    .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: 950px) {

    .headings p {
        max-width: 700px;
        padding: 1rem 0rem 0rem 8rem;
        width: 100%;
    }

    .hero-content h1 { font-size: 2.4rem; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-image-card { display: none; } /* Hide 3D card on smaller tablet screens for neatness */
    .spotlight-row { grid-template-columns: 1fr; gap: 40px; }
    .spotlight-row.reverse { direction: ltr; }
    .promo-banner { flex-direction: column; text-align: center; }
    .app-grid { grid-template-columns: 1fr; text-align: center; }
    .app-buttons { justify-content: center; }
    .app-image { display: none; } /* Hide app image on mobile for less clutter */
    
    .mainback {
        background: #5325b4;
        color: white;
        padding: 3rem 5% 2rem 5%;
    }

    .low6 {
        margin: 3rem 0rem 2rem 9rem;
    }


}


























@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);
    }

    /* Hide arrows on mobile since touch is native */
    .scroll-btn { display: none; }
    .service-card { flex: 0 0 260px; }

    .nav-links.active { display: flex; }

    .menu-toggle { display: block; }

    .hero-content h1 { font-size: 2.2rem; }
            
    /* Ensure promo banner content has padding */
    .promo-text { padding: 0 10px; }

    .low2 {
        padding: 0px 1rem 0rem 0rem;
    }

    .logo2 {
        padding: 0px;
    }

    .low6 {
        margin: 3rem 0rem 3rem 5rem;
    }
    
}








































@media (max-width: 580px) {

    .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) {

     .mainservice {
        display: grid;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 0rem;
        padding: 3rem 5% 20rem 2%;
    }

    .headings {
        font-size: 2.8rem;
        font-weight: 400;
        margin-bottom: 1rem;
        padding: 0rem 0rem 0rem 0.1rem;
        text-align: center;
	    float: left;
        width: 100%;
    }

    .headings p {
        max-width: 750px;
        padding: 2rem 1rem 2rem 1rem;
        font-size: 1.1rem; 
    }

    .logotext2 {
        display: inline-block;
        font-size: 1.8em;
        color: #fff;
        padding: 0px 2px 0px 0px;
    }

    .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;
    }

}