/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 08 2026 | 07:45:06 */
/* ================= VARIABLES & RESET ================= */
        :root {
            --black: #000000;
            --white: #ffffff;
            --brand-green: #7A9D8F; 
            --brand-green-dark: #5F8073;
            --bg-light: #f4f7f5; 
            --text-main: #222222;
            --text-light: #555555;
            --spacing-lg: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            border-top: 10px solid var(--brand-green); 
        }

        h1, h2, h3, h4 {
            font-family: 'Oswald', sans-serif;
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        a { text-decoration: none; }
        ul { list-style: none; }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-padding { padding: var(--spacing-lg) 0; }
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        
        .narrow-content {
            max-width: 1170px;
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            background: #000;
            color: var(--white);
            padding: 16px 36px;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid var(--brand-green);
        }
        .btn:hover {
            background: var(--black);
            border-color: var(--black);
            color: var(--white);
        }

        /* ================= HEADER ================= */
        .main-header {
            padding: 20px 0;
            background: var(--white);
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: center;
        }
        .css-logo {
            border: 4px solid var(--brand-green);
            padding: 10px;
            display: inline-block;
            text-align: center;
        }
        .css-logo-top {
            display: flex;
            border: 2px solid var(--black);
        }
        .css-logo-black {
            background: var(--black);
            color: var(--white);
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            padding: 5px 15px;
            font-weight: 700;
        }
        .css-logo-white {
            background: var(--white);
            color: var(--black);
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            padding: 5px 15px;
            font-weight: 700;
        }
        .css-logo-bottom {
            font-family: 'Oswald', sans-serif;
            color: var(--black);
            font-weight: 700;
            letter-spacing: 2px;
            margin-top: 5px;
            font-size: 1.1rem;
        }

        /* ================= 1. HERO SECTION (50/50 LAYOUT) ================= */
        .hero {
            position: relative;
            min-height: 80vh;
            padding: 80px 0; /* Add padding for flexible height */
            display: flex;
            align-items: center;
            background: url('https://designmysalon.com/wp-content/uploads/2026/04/Salon-Design.webp') center/cover no-repeat;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(122, 157, 143, 0.8);
        }
        .hero .container {
            position: relative;
            z-index: 1;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content {
            text-align: left;
        }

        .hero-shortcode {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px; /* Adjust height based on your shortcode */
        }

        .hero h1 {
            color: var(--white);
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 800;
        }
        .hero p {
            color: #fff;
            font-size: 1.25rem;
            margin-bottom: 30px;
        }
        .authority-line {
            display: inline-block;
            background: #000;
            padding: 8px 16px;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 600;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ================= 2. TRUST BAR ================= */
        .trust-bar {
            background: var(--black);
            color: var(--white);
            padding: 20px 0;
            border-bottom: 5px solid var(--brand-green);
        }
        .trust-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            text-align: center;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .trust-grid i {
            color: var(--brand-green);
            margin-right: 8px;
            font-size: 1.2rem;
        }

        /* ================= 3. PROBLEM -> OUTCOME (UPDATED) ================= */
        .cta {
            padding-top: 70px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch; /* Makes left and right side equal height */
        }
        
        .comparison-stacked {
            display: flex;
            flex-direction: column;
            gap: 30px;
            justify-content: center;
        }

        .comparison-card {
            padding: 50px 40px;
            background: #F4F6F4; /* Very light beige/grey matching the image */
            border: 1px solid #e5e5e5;
        }
        
        .comparison-card h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            gap: 15px;
        }

        .comparison-card.poor { border-top: 5px solid var(--black); }
        .comparison-card.good { border-top: 5px solid var(--brand-green); }
        
        .comparison-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.05rem;
            font-weight: 500;
        }
        
        .poor .fa-xmark { color: var(--black); font-size: 1.2rem;}
        .good .fa-check { color: var(--brand-green); font-size: 1.2rem;}

        /* New Image styling for right column */
        .comparison-image-wrapper {
            width: 100%;
            height: 100%;
        }
        .comparison-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ================= 4. INTRO SECTION ================= */
        .intro-section { background: var(--bg-light); }
        .intro-section p { margin-bottom: 20px; font-size: 1.15rem; }
        .highlight-text { font-weight: 700; color: var(--brand-green); }
        

        /* ================= 5 & 6. PROCESS & CORE VALUES ================= */
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .icon-card {
            text-align: center;
            padding: 40px 20px;
            background: var(--white);
            border: 2px solid var(--black);
            transition: transform 0.3s;
        }
        .icon-card:hover { 
            transform: translateY(-5px); 
            border-color: var(--brand-green);
        }
        .icon-card i {
            font-size: 2.5rem;
            color: var(--brand-green);
            margin-bottom: 20px;
        }
        h2.heading-h2 {
            font-size: 36px;
            font-weight: 600;
        }
        h2.heading-h2-white{
            color: #fff;
            font-size: 36px;
        }
        h3.features {
            font-size: 24px;
            font-weight: 600;
        }
        h6.section-6 {
            font-weight: 600;
            font-family: 'Oswald';
            color: #000;
            text-transform: uppercase;
        }

        /* ================= 6.5. TESTIMONIAL SECTION ================= */
        .testimonial-text {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.7;
            color: var(--black);
            margin-bottom: 20px;
        }
        .star-box {
            display: inline-block;
            background: #444;
            padding: 10px 20px;
            border-radius: 12px;
            border: 3px solid #666;
            margin-top: 15px;
        }
        .star-box i {
            color: #FBBF24; /* Gold stars */
            font-size: 1.5rem;
            margin: 0 4px;
        }
        .testimonial-cta-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            margin-top: 60px;
        }

        /* ================= 7. COMMON MISTAKES (UPDATED) ================= */
        .mistakes-section {
            background: var(--black);
            color: var(--white);
            border-top: 5px solid var(--brand-green);
            border-bottom: 5px solid var(--brand-green);
        }
        
        .mistakes-split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: stretch; /* Makes image stretch to cards height */
            margin-top: 40px;
        }

        .mistakes-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
        }

        .mistake-item {
            background: #111111;
            padding: 30px 25px;
            border-left: 5px solid var(--brand-green);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            font-family: 'Inter', sans-serif;
            color: #dddddd;
            line-height: 1.5;
        }
        .mistake-item strong {
            color: #ffffff;
            font-family: 'Inter', sans-serif;
        }
        
        /* Custom solid green circle with 'X' */
        .mistake-icon {
            background: var(--brand-green);
            color: var(--black);
            width: 28px;
            height: 28px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            flex-shrink: 0;
            font-size: 0.9rem;
            margin-top: 2px;
        }

        .mistakes-image-wrapper {
            width: 100%;
            height: 100%;
        }
        
        .mistakes-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


        /* ================= 8. SERVICES ================= */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .service-card {
            border: 1px solid var(--black);
            padding: 40px 30px;
            background: var(--white);
            position: relative;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 5px;
            background: var(--brand-green);
        }
        .service-card ul { margin-top: 20px; }
        .service-card ul li {
            margin-bottom: 10px;
            font-size: 1rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        .service-card ul li::before {
            content: "\f0da";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--brand-green);
            margin-right: 10px;
        }

        /* ================= 9. EDUCATION ================= */
        .education-section { background: var(--bg-light); }
        .edu-block {
            margin-bottom: 30px;
            background: var(--white);
            padding: 40px;
            border: 1px solid #ddd;
            border-left: 5px solid var(--black);
        }

        /* ================= 10. CASE STUDIES ================= */
        .case-card {
            background: var(--white);
            border: 1px solid var(--black);
            overflow: hidden;
        }
        .case-img {
            height: 220px;
            background-color: #cbd5e1;
            background-size: cover;
            background-position: center;
            border-bottom: 5px solid var(--brand-green);
        }
        .case-content { padding: 30px; }
        .case-content h4 { 
            font-family: 'Oswald', sans-serif; 
            font-size: 0.9rem; 
            color: var(--brand-green); 
            margin-bottom: 5px; 
            letter-spacing: 1px;
        }

        /* ================= 11. ABOUT ================= */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .about-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border: 10px solid var(--bg-light);
            outline: 2px solid var(--black);
        }
        .about-list li {
            margin-bottom: 10px;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .about-list i { color: var(--brand-green); margin-right: 10px; }

        /* ================= 12. FAQ ================= */
        .faq-item {
            border: 1px solid var(--black);
            margin-bottom: 15px;
            background: var(--white);
        }
        .faq-btn {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 20px 25px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
            color: var(--black);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
        }
        .faq-btn:hover { background: var(--bg-light); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--text-light);
            padding: 0 25px;
        }
        .faq-answer.open {
            padding-bottom: 20px;
        }

        /* ================= 13. LINKS ================= */
        .links-section { background: var(--bg-light); }
        .link-card {
            background: var(--white);
            padding: 25px;
            text-align: center;
            border: 1px solid var(--black);
            color: var(--black);
            font-weight: 600;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        .link-card:hover { 
            background: var(--brand-green); 
            color: var(--white); 
            border-color: var(--brand-green);
        }

        /* ================= 14. CTA ================= */
        .final-cta {
            background: var(--brand-green);
            color: var(--white);
            text-align: center;
            border-top: 5px solid var(--black);
        }
        .final-cta h2 { color: var(--white); font-size: 3rem; }
        .final-cta p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 600;}
        .final-cta .btn {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }
        .final-cta .btn:hover { background: var(--white); color: var(--black); }

        /* ================= 15. FOOTER ================= */
        footer {
            background: var(--black);
            color: #cccccc;
            padding: 60px 0 20px;
            text-align: center;
            border-top: 5px solid var(--brand-green);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            text-align: left;
        }
        .footer-grid h4 { color: var(--brand-green); }
        .footer-links a {
            color: #cccccc;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--brand-green); }
		.whatsapp-icon {
			position: fixed;
			bottom: 85px;
			right: 20px;
			width: 60px;
			height: 60px;
			background-color: #25D366;
			border-radius: 50%;
			display: flex;
			justify-content: center;
			align-items: center;
			box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
			z-index: 1000;
			text-decoration: none;
			color: white;
			font-size: 30px;
		}
		.fa-whatsapp:before {
			content: "\f232";
			color: #fff;
		}

        /* ================= RESPONSIVE QUERIES ================= */
        @media (max-width: 768px) {
			h6.section-6 {
				font-size: 1.3em;
			}
            .cta {
				padding-top: 22px;
			}
            /* 1. KEEPS LOGO AS 2 COLUMNS ON MOBILE */
            .css-logo-top { 
                flex-direction: row; /* Forces side-by-side */
                justify-content: center;
            }
            .css-logo-black, .css-logo-white { 
                font-size: 1.37rem; /* Shrinks slightly so it doesn't wrap off-screen */
            }
            .css-logo-bottom { 
                font-size: 0.75rem; 
            }

            /* 2. SWAPS HERO COLUMN ORDER ON MOBILE */
            .hero-grid {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 30px;
            }
            .hero-content {
                order: 2; /* Text moves to BOTTOM */
                text-align: center;
            }
            .hero h1 { 
                font-size: 2.8rem; 
                text-align: center;
            }
            .hero p {
                text-align: center;
            }
            .hero-shortcode {
                order: 1; /* Shortcode moves to TOP */
                min-height: 250px;
            }

            /* Standard Mobile Adjustments */
            .grid-2, .about-grid, .mistakes-split-layout { grid-template-columns: 1fr; }
            .section-padding { padding: 50px 0; }
            .comparison-image-wrapper {margin-top: 20px; }
            .mistakes-image-wrapper { height: 400px; margin-top: 20px;}
            .testimonial-cta-text { font-size: 1.2rem; }
        }