        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            padding-top: 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;           /* align image and text in a row */
            align-items: center;     /* vertically center text with image */
            gap: 10px;               /* space between image and text */
            text-decoration: none;   /* remove underline */
            color: #007BFF;
            font-size: 1.8rem;
            font-weight: bold;
        }

        .logo img {
            height: 2.2rem;   /* slightly taller than text (text is 1.8rem) */
            width: auto;      /* maintain aspect ratio */
            display: block;
        }

        .logo span {
            display: inline-block;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #007BFF;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: #007BFF;
            color: white;
        }

        .btn-primary:hover {
            background: #0056b3;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            color: #007BFF;
            border: 2px solid #007BFF;
        }

        .btn-secondary:hover {
            background: #007BFF;
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.8)), url('/assets/images/hero-banner.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero h1 a {
            color: #00e676;
            font-weight: 700;
            text-decoration: none;
            text-shadow: 0 0 2px #000;       /* Thin border-like shadow */
        }

        .hero h1 a:hover {
            color: #1de9b6;
            text-shadow: 0 0 2px #333;
        }

        
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        /* .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        } */

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: left; /* align text left for this layout */
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;           /* use flex for image + text */
            align-items: center;     /* vertical alignment */
            gap: 1.5rem;             /* space between image and text */
        }

        .feature-card img {
            width: 98px;
            flex-shrink: 0;          /* don't shrink the image */
        }



        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #007BFF;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Comparison Teaser */
        .comparison-teaser {
            background: white;
            padding: 80px 0;
            text-align: center;
        }

        .comparison-teaser h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .comparison-teaser p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }

        /* Case Studies */
        .case-studies {
            background: #f9f9f9;
            padding: 80px 0;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .story-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .story-card:hover {
            transform: translateY(-5px);
        }

        .story-image {
            width: 100%;       /* Make the image take full width */
            height: auto;      /* Maintain aspect ratio */
            display: block;    /* Remove extra spacing below image */
            object-fit: cover; /* Optional if you want to crop nicely */
        }



        .story-content {
            padding: 1.5rem;
        }

        .story-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .story-content p {
            color: #666;
            margin-bottom: 1rem;
        }

        .story-link {
            color: #007BFF;
            text-decoration: none;
            font-weight: 600;
        }

        .story-link:hover {
            text-decoration: underline;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #007BFF, #0056b3);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #007BFF;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #007BFF;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #555;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .social-icon:hover {
            background: #007BFF;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 20px;
            text-align: center;
            color: #ccc;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #333;
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            padding: 1rem;
            z-index: 1001;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links,
            .btn-primary {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .features-grid,
            .stories-grid {
                grid-template-columns: 1fr;
            }

            .cta-banner h2 {
                font-size: 2rem;
            }
        }











.contact-info {
    padding: 60px 20px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 900px;
    margin: auto;
    color: #333;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #222;
    text-align: center;
    letter-spacing: -0.5px;
}

.contact-details {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    color: #555;
}

.contact-details a {
    color: #0077cc;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-details a:hover {
    color: #005fa3;
}


.contact-form {
    margin: 50px auto;
    max-width: 600px;
    padding: 30px 25px;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.9rem;
    font-weight: 700;
    color: #222;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0077cc;
    box-shadow: 0 0 6px rgba(0, 119, 204, 0.2);
}

.contact-form button {
    padding: 14px;
    background: linear-gradient(135deg, #0077cc, #005fa3);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #005fa3, #004080);
}


.contact-map iframe {
    margin-top: 50px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* stack on mobile */
    }
}


.feature-card ul {
    list-style: none; /* remove default bullets */
    padding-left: 0;
}

.feature-card ul li {
    position: relative;
    padding-left: 25px; /* space for the tick */
    margin-bottom: 10px;
    color: #333;
}

.feature-card ul li::before {
    content: "✔"; /* tick symbol */
    position: absolute;
    left: 0;
    color: green; /* tick color */
    font-weight: bold;
}




  