``` This code provides a professional, corporate feel, using a clean layout and a modern color palette (deep blue, grey, and a vibrant accent color). ### HTML Structure (`index.html`) ```html Innovate Solutions | Digital Transformation Experts

Powering Your Digital Transformation Journey.

We architect scalable digital solutions that drive growth, efficiency, and market leadership for modern businesses.

Start Consulting Today →

Our Core Service Pillars

🌐

Digital Transformation

Modernizing legacy systems and integrating cloud technologies to optimize core business processes.

💻

Software Development

Building custom, scalable enterprise applications across web and mobile platforms.

📈

Data & AI Consulting

Leveraging AI and advanced analytics to transform raw data into actionable business intelligence.

Deep Industry Expertise

We don't just build; we understand the nuances of your industry—be it FinTech, HealthTech, or E-commerce.

  • Agile Methodology & Scrum practices.
  • Cloud Native Architecture (AWS, Azure, GCP).
  • Cybersecurity compliance and risk mitigation.
View Case Studies →
Digital Transformation Diagram

Ready to Scale Your Ambitions?

Book a free consultation to map out your digital roadmap with our expert team.

Book Your Free Consultation
``` ### CSS Styling (`style.css`) ```css /* Global Reset & Typography */ :root { --color-primary: #004080; /* Deep Navy Blue */ --color-secondary: #007bff; /* Bright Blue Accent */ --color-background: #f9f9f9; --color-text-dark: #333; --color-text-light: #666; --color-white: #ffffff; --max-width: 1200px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--color-text-dark); background-color: var(--color-white); } .container { width: 90%; max-width: var(--max-width); margin: 0 auto; } /* Utility Classes */ .accent-text { color: var(--color-secondary); } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; color: var(--color-primary); } .sub-heading { text-align: center; font-size: 1.1rem; color: var(--color-text-light); margin-bottom: 30px; } /* Buttons */ .cta-button { display: inline-block; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease; text-align: center; border: none; cursor: pointer; } .primary-cta { background-color: var(--color-secondary); color: var(--color-white); } .primary-cta:hover { background-color: #0056b3; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3); } .secondary-cta { background-color: transparent; color: var(--color-secondary); border: 2px solid var(--color-secondary); } .secondary-cta:hover { background-color: var(--color-secondary); color: var(--color-white); } .large-cta-button { padding: 15px 40px; font-size: 1.1rem; } /* 1. Header */ header { background-color: var(--color-white); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); padding: 15px 0; position: sticky; top: 0; z-index: 100; } .header-content { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.8rem; font-weight: 700; color: var(--color-primary); } nav a { margin-left: 25px; text-decoration: none; color: var(--color-text-dark); font-weight: 500; transition: color 0.3s; } nav a:hover { color: var(--color-secondary); } /* 2. Hero Section */ .hero-section { background-color: var(--color-primary); color: var(--color-white); padding: 80px 0; text-align: center; } .hero-text h1 { font-size: 3.5rem; margin-bottom: 15px; font-weight: 700; } .hero-text .sub-heading { color: #c7e0ff; font-size: 1.3rem; margin-bottom: 30px; } /* 3. Services Overview */ .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; } .service-card { background: var(--color-white); padding: 30px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); transition: transform 0.3s; border-top: 4px solid var(--color-secondary); } .service-card:hover { transform: translateY(-8px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); } .icon-circle { font-size: 2.5rem; margin-bottom: 15px; } .service-card h3 { color: var(--color-primary); margin-bottom: 10px; font-weight: 600; } .service-card p { color: var(--color-text-light); } /* 4. Expertise Deep Dive */ .two-col-layout { display: flex; gap: 50px; align-items: center; } .text-content { flex: 1; } .feature-list { list-style: none; margin-top: 20px; padding: 10px 0; } .feature-list li { margin-bottom: 15px; font-size: 1.1rem; color: var(--color-text-dark); } .visual-element { flex: 1; } .visual-element img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); } /* 5. Call to Action Section */ .cta-section { background-color: var(--color-primary); text-align: center; padding: 70px 0; } .cta-content h2 { font-size: 2.8rem; margin-bottom: 15px; color: var(--color-white); } .cta-content .sub-heading { color: #c7e0ff; font-size: 1.2rem; margin-bottom: 30px; } /* 6. Footer */ footer { background-color: var(--color-text-dark); color: var(--color-text-light); padding-top: 40px; } .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 30px; } .footer-col h4 { color: var(--color-secondary); margin-bottom: 20px; font-size: 1.2rem; border-bottom: 1px solid #444; padding-bottom: 5px; } .footer-col ul { list-style: none; } .footer-col a { color: var(--color-text-light); text-decoration: none; display: block; padding: 5px 0; transition: color 0.2s; } .footer-col a:hover { color: var(--color-secondary); } .social-icons a { margin-right: 15px; color: var(--color-secondary); font-weight: 500; } .footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid #444; margin-top: 20px; font-size: 0.9rem; } /* =================================================================== RESPONSIVENESS ================================================================== */ @media (max-width: 1024px) { .two-col-layout { flex-direction: column; } .text-content, .visual-element { flex: 1; } .visual-element img { max-width: 100%; } } @media (max-width: 768px) { /* Navigation */ nav a { margin-left: 15px; font-size: 0.9rem; } /* Layouts */ .services-grid, .footer-grid { grid-template-columns: 1fr; gap: 30px; } .hero-text h1 { font-size: 2.5rem; } /* Padding */ .section-container { padding: 40px 20px; } } @media (max-width: 480px) { .hero-text h1 { font-size: 2rem; } .hero-text .sub-heading { font-size: 1rem; } .cta-button { padding: 10px 20px; font-size: 0.9rem; } .cta-button.large-cta-button { width: 100%; } } ``` ### How to Run This Code 1. **Create a folder** (e.g., `InnovateSite`). 2. Inside that folder, create two files: `index.html` and `style.css`. 3. **Paste** the HTML code into `index.html`. 4. **Paste** the CSS code into `style.css`. 5. Open `index.html` in your web browser. ### Key Features Implemented: * **Professional Color Palette:** Uses deep blue (`--color-primary`) for authority and a bright accent blue (`--color-secondary`) for action. * **Responsiveness:** The layout automatically adjusts using CSS Grid and Flexbox, ensuring it looks good on mobile phones and large desktops. * **Modular Design:** Content is divided into logical, clearly separated sections (Hero, Services, Expertise, CTA, Footer). * **Readability:** Uses the clean `Poppins` font and ample white space. * **Interactivity:** Hover effects on buttons and service cards add a modern feel.