/* Existing styles are preserved... */
/* ... */

/* About Section Improvements */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
}
.about-text .section-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-24);
    font-weight: var(--font-weight-bold);
    color: var(--color-charcoal-800);
}
.about-text .about-intro {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-16);
    line-height: 1.6;
}
.about-text p {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--space-24);
    color: var(--color-text-secondary);
}
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image {
    max-width: 100%;
    height: auto;
}

/* Why Choose Us Icon Improvements */
.why-choose-item .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-24) auto;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--duration-normal) var(--ease-standard);
}
.why-choose-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-lg);
}
.why-choose-item .icon-wrapper svg {
    width: 40px;
    height: 40px;
}
.why-choose-item .icon { font-size: 48px; margin-bottom: var(--space-16); } /* Keep old class for compatibility */

/* Testimonials Section */
.testimonials {
    padding: var(--space-64) 0;
    background: var(--color-bg-light);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-32);
}
.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-32);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}
.testimonial-text {
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--space-24);
    position: relative;
    padding-left: 20px;
}
.testimonial-text::before {
    content: '“';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 50px;
    color: var(--color-primary);
    opacity: 0.2;
}
.testimonial-author {
    margin-top: auto;
    text-align: right;
}
.testimonial-author h4 {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}
.testimonial-author span {
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* Floating Action Buttons (FAB) */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
    transition: all var(--duration-normal) var(--ease-standard);
    text-decoration: none;
}
.fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.fab-whatsapp {
    background: #25D366;
}
.fab-call {
    background: #007bff;
}

/* Blog Page Styles */
.page-header {
    background: var(--hero-gradient);
    color: white;
    padding: 100px 0 60px 0;
    text-align: center;
}
.page-header h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-12);
}
.page-header p {
    font-size: var(--font-size-xl);
    opacity: 0.9;
}
.blog-section {
    padding: var(--space-64) 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-32);
}
.blog-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    transition: all var(--duration-normal) var(--ease-standard);
    box-shadow: var(--shadow-lg);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.blog-card-link {
    text-decoration: none;
    color: inherit;
}
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: var(--space-24);
}
.blog-category {
    display: inline-block;
    background-color: rgba(var(--color-cyan-500-rgb), 0.1);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-12);
}
.blog-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-12);
    line-height: 1.3;
}
.blog-excerpt {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-16);
}
.blog-read-more {
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    transition: color var(--duration-normal);
}
.blog-card-link:hover .blog-read-more {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}
:root {
  /* Color Palette */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-bg-light: #f8fafc; /* Tailwind slate-50 */
  --color-surface: #ffffff;
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-charcoal-700: #334155; /* Tailwind slate-700 */
  --color-charcoal-800: #1e293b; /* Tailwind slate-800 */
  --color-charcoal-900: #0f172a; /* Tailwind slate-900 */
  
  /* Brand Colors: Cyan and Red */
  --color-cyan-500: #06b6d4;
  --color-cyan-600: #0891b2;
  --color-cyan-700: #0e7490;
  --color-red-500: #ef4444;
  --color-red-600: #dc2626;

  /* RGB versions for opacity */
  --color-cyan-500-rgb: 6, 182, 212;
  --color-red-500-rgb: 239, 68, 68;

  /* Semantic Color Tokens */
  --color-background: var(--color-bg-light);
  --color-surface: var(--color-white);
  --color-text: var(--color-charcoal-800);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-cyan-600);
  --color-primary-hover: var(--color-cyan-700);
  --color-accent: var(--color-red-500);
  --color-accent-hover: var(--color-red-600);
  --color-border: rgba(0, 0, 0, 0.1);
  --color-card-border: rgba(0, 0, 0, 0.08);

  /* Focus Ring */
  --focus-ring: 0 0 0 3px rgba(var(--color-cyan-500-rgb), 0.4);

  /* Gradient */
  --brand-gradient: linear-gradient(135deg, var(--color-cyan-500) 0%, var(--color-cyan-700) 100%);
  --hero-gradient: linear-gradient(135deg, var(--color-cyan-600) 0%, var(--color-charcoal-900) 100%);

  /* Typography */
  --font-family-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;

  /* Spacing */
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;

  /* Border Radius */
  --radius-base: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Animation */
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Layout */
  --container-xl: 1280px;
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    line-height: var(--line-height-normal);
}

body {
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-16);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--space-16) 0;
    transition: all var(--duration-normal) var(--ease-standard);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-12) 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-charcoal-900);
    text-decoration: none;
}
.hero-logo {
    max-width: 100%;
    height: auto;
    width: 80%;              /* Takes 80% of container */
    object-fit: contain;     /* Maintains aspect ratio */
        /* Optional: rounded corners */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-32);
}

.nav-links a {
    color: var(--color-charcoal-800);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color var(--duration-normal) var(--ease-standard);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: width var(--duration-normal) var(--ease-standard);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-charcoal-900);
    transition: all var(--duration-normal) var(--ease-standard);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-16);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--space-24);
    line-height: var(--line-height-tight);
    animation: slideInLeft var(--duration-slow) var(--ease-bounce);
}

.hero-content p {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-32);
    animation: slideInLeft var(--duration-slow) var(--ease-bounce) 0.2s both;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-16);
    flex-wrap: wrap;
    animation: slideInLeft var(--duration-slow) var(--ease-bounce) 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-32);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--duration-normal) var(--ease-standard);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-accent);
    transform: translateY(-2px);
}
/* Brand Logo and Text Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-charcoal-900);
  line-height: 1.2;
}

.brand-text p {
  font-size: var(--font-size-base);
  margin: 0;
  font-weight: var(--font-weight-normal);
}


/* Visuals */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-graphic {
    width: 400px;
    height: 400px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}
.hero-graphic::before {
    
    font-size: 120px;
    animation: pulse 2s ease-in-out infinite;
}

/* Services Section */
.services {
    padding: var(--space-64) 0;
    background: var(--color-surface);
    background-color:#ff0000;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-64);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--space-16);
}

.section-header p {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-32);
}

.service-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-card-border);
    transition: all var(--duration-normal) var(--ease-standard);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-content {
    padding: var(--space-24);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-24);
    font-size: 28px;
    color: white;
    animation: fadeIn-icon 0.5s ease-out forwards;
}

.service-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-16);
}

.service-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-24);
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    display: flex;
    align-items: center;
    font-size: 13px;
}

.service-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    margin-right: var(--space-8);
}

/* Service Card Image Styles */
.service-card-image-container {
    height: 180px;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) ease-in-out;
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: flex; /* Makes the whole card a flex container */
    flex-direction: column; /* Stacks children vertically */
    height: 100%;
}
/* Remove underlines from service section links */
.service-card h3 a {
  text-decoration: none;
  color: inherit;
}

.service-card h3 a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

/* General Sections */
.about, .why-choose, .contact {
    padding: var(--space-64) 0;
}
.about { background: var(--color-surface); background-color: #deebf7; }
.why-choose { background: var(--color-bg-light); }
.contact { background: var(--color-surface); }


/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-32);
}

.why-choose-item {
    text-align: center;
    padding: var(--space-32);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-card-border);
    transition: all var(--duration-normal) var(--ease-standard);
}

.why-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-choose-item h3 { font-size: var(--font-size-xl); margin-bottom: var(--space-12); }
.why-choose-item p { line-height: 1.6; }

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-64);
}
.contact-info h3 { font-size: var(--font-size-3xl); margin-bottom: var(--space-24); }
.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    margin-bottom: var(--space-24);
}
.contact-item .icon {
    width: 50px; height: 50px;
    background: var(--brand-gradient);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-white); font-size: 20px;
}
.contact-item div h4 { font-size: var(--font-size-lg); margin-bottom: 4px; }
.contact-form {
    background: var(--color-bg-light);
    padding: var(--space-32);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-card-border);
}
.form-group { margin-bottom: var(--space-24); }
.form-label { display: block; margin-bottom: var(--space-8); font-weight: var(--font-weight-semibold); }
.form-control {
    width: 100%;
    padding: var(--space-12) var(--space-16);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-base);
    background: var(--color-surface);
    color: var(--color-text);
    transition: all var(--duration-normal) var(--ease-standard);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--focus-ring);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.contact-form .btn-primary { width: 100%; }
/* Remove underlines from contact information */
.contact-item a {
  text-decoration: none;
  color: inherit;
}

.contact-item a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-charcoal-900);
    color: var(--color-white);
    padding: var(--space-48) 0 var(--space-24) 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-48);
    margin-bottom: var(--space-32);
}
.footer-section h3, .footer-section h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-16);
    color: var(--color-white);
}
.footer-section p, .footer-section li { color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin-bottom: var(--space-12); }
.footer-section ul { list-style: none; }
.footer-section a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color var(--duration-normal); }
.footer-section a:hover { color: var(--color-cyan-500); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: var(--space-24); text-align: center; color: rgba(255, 255, 255, 0.5); }


/* Service Detail Page Styles */
.service-detail { padding: 80px 0 40px; }

.service-hero {
    background: var(--hero-gradient);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 5px solid var(--color-primary);
}
.service-hero h1 { font-size: 3rem; margin-bottom: 20px; }
.service-hero .icon { font-size: 5rem; margin-bottom: 20px; display: block; }
.service-hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto; opacity: 0.95; }
.service-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.service-section { margin-bottom: 60px; }
.service-section h2 {
    font-size: 2.2rem;
    color: var(--color-charcoal-800);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
    position: relative;
}

.service-section h2::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}

.service-overview {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-slate-500);
    background: var(--color-surface);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--color-primary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-card-border);
}

.feature-item-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-base);
    margin-bottom: 20px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-item h3 { color: var(--color-primary); font-size: 1.4rem; margin-bottom: 15px; }
.feature-item p { color: var(--color-slate-500); line-height: 1.7; margin-bottom: 15px; }
.benefits-list { list-style: none; padding-left: 0; }
.benefits-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--color-charcoal-700);
}
.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.applications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.application-item {
    background: var(--color-bg-light);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid var(--color-primary);
}

.why-choose-list { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.why-choose-list ul { list-style: none; padding: 0; }
.why-choose-list li {
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 1.1rem;
    color: var(--color-charcoal-700);
    border-bottom: 1px solid #eee;
}
.why-choose-list li:last-child { border-bottom: none; }
.why-choose-list li:before {
    content: "★";
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--color-accent);
    font-size: 1.8rem;
}

.brands-section { background: var(--color-bg-light); padding: 30px; border-radius: 10px; text-align: center; }
.brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 20px; }
.brand-item {
    background: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    font-size: 1.1rem;
}

.cta-section {
    background: var(--hero-gradient);
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 20px; color: white; border: none; }
.cta-section h2::after { display: none; }
.cta-section p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.cta-section .cta-buttons { justify-content: center; }

.cta-section .btn-primary { background-color: var(--color-accent);
color: black; background-color: white; }
.cta-section .btn-primary:hover { background-color: var(--color-accent-hover); }

.cta-section .btn-secondary { background: white; color: var(--color-charcoal-800); }
.cta-section .btn-secondary:hover { background: #eee; }


/* Animations */
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.animate-on-scroll {
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animate {
    opacity: 2;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-charcoal-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left var(--duration-normal) var(--ease-standard);
    }
    .nav-links.active { left: 0; }
    .nav-links a { color: var(--color-white); }
    .hamburger { display: flex; z-index: 1001; }
    .hamburger span { background: var(--color-charcoal-800); }
    .navbar.scrolled .hamburger span { background: var(--color-charcoal-800); }
    .hamburger.active span { background: var(--color-white); }


    .hero-container, .about-content, .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-32);
        padding-top: 5px;
    }
    .hero-content p, .section-header p { max-width: 100%; }
    .cta-buttons, .contact-info { justify-content: center; }
    .hero-visual { grid-row: 1; }
    .about-visual { order: -1; } /* Puts image on top in mobile */
    .hero-graphic { width: 300px; height: 300px; }
    .services-grid, .why-choose-grid { grid-template-columns: 1fr; }
    .contact-form { order: -1; }
    .features-grid { grid-template-columns: 1fr; }
}

.clickable-grid-item {
  text-decoration: none; /* Removes the underline */
  color: inherit;       /* Makes the text inherit its color from the parent */
}