 :root {
     /* Updated to minimal brand colors from logo */
     --primary-color: #0f172a;
     /* Navy blue from logo */
     --primary-light: #1e293b;
     /* Lighter navy */
     --secondary-color: #0ea5e9;
     /* Light blue from logo */
     --secondary-light: #38bdf8;
     /* Lighter blue */
     --surface-color: #f8fafc;
     /* Clean light gray */
     --surface-variant: #e2e8f0;
     /* Subtle gray */
     --text-primary: #0f172a;
     /* Navy for text */
     --text-secondary: #64748b;
     /* Muted gray */
     --text-on-primary: #ffffff;
     /* White on dark */
     --accent-color: #0ea5e9;
     /* Using secondary as accent */
 }

 body {
     /* Updated font family to use Poppins as default */
     font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: var(--text-primary);
 }

 .navbar {
     /* Made navbar transparent with backdrop blur */
     background: rgba(15, 23, 42, 0.1);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     padding: 1rem 0;
     transition: all 0.3s ease;
 }

 .navbar-brand img {
     height: 50px;
 }

 .hero-section {
     /* Clean gradient using brand colors */
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
     color: white;
     padding: 100px 0;
     position: relative;
     overflow: hidden;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="snowflakes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23snowflakes)"/></svg>');
     opacity: 0.3;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .stats-section {
     background: var(--surface-color);
     padding: 80px 0;
 }

 .stat-card {
     text-align: center;
     padding: 2rem;
     background: white;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     margin-bottom: 2rem;
     transition: transform 0.3s ease;
 }

 .stat-card:hover {
     transform: translateY(-10px);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: bold;
     /* Updated stat numbers to use primary color */
     color: var(--primary-color);
     margin-bottom: 0.5rem;
 }

 .section-title {
     /* Updated section titles to use primary color */
     color: var(--primary-color);
     font-weight: bold;
     margin-bottom: 3rem;
     position: relative;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     /* Using secondary brand color for accent */
     background: var(--secondary-color);
     border-radius: 2px;
 }

 .service-card {
     background: white;
     border-radius: 15px;
     padding: 2rem;
     margin-bottom: 2rem;
     height: 480px;     
     border-top: 4px solid var(--secondary-color);
 }


 .service-icon {
     font-size: 3rem;
     /* Using secondary brand color for icons */
     color: var(--secondary-color);
     margin-bottom: 1rem;
 }

 .testimonial-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     margin-bottom: 2rem;
     position: relative;
 }

 .testimonial-card::before {
     content: '"';
     position: absolute;
     top: -10px;
     left: 20px;
     font-size: 4rem;
     /* Using secondary color for quote marks */
     color: var(--secondary-color);
     font-family: serif;
 }

 .contact-section {
     /* Clean navy background */
     background: var(--primary-color);
     color: white;
     padding: 80px 0;
 }

 .form-control:focus {
     /* Focus state using secondary brand color */
     border-color: var(--secondary-color);
     box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
 }

 .btn-primary {
     /* Button using secondary brand color */
     background: var(--secondary-color);
     border-color: var(--secondary-color);
     padding: 12px 30px;
     font-weight: 600;
     border-radius: 25px;
 }

 .btn-primary:hover {
     /* Hover state using darker secondary */
     background: #0284c7;
     border-color: #0284c7;
 }

 .footer {
     background: var(--text-primary);
     color: white;
     padding: 40px 0 20px;
 }

 .brand-logo {
     height: 60px;
     margin: 10px;
     filter: grayscale(100%);
     transition: filter 0.3s ease;
 }

 .brand-logo:hover {
     filter: grayscale(0%);
 }

 .floating-contact {
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 1000;
 }

 .floating-contact a {
     display: block;
     width: 60px;
     height: 60px;
     /* Using secondary brand color */
     background: var(--secondary-color);
     color: white;
     border-radius: 50%;
     text-align: center;
     line-height: 60px;
     font-size: 1.5rem;
     margin-bottom: 10px;
     text-decoration: none;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }

 .floating-contact a:hover {
     /* Hover using primary brand color */
     background: var(--primary-color);
     transform: scale(1.1);
 }

 /* Added custom carousel styling */
 .carousel-indicators button {
     background-color: var(--secondary-color);
     width: 12px;
     height: 12px;
     border-radius: 50%;
     margin: 0 5px;
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
     background-color: var(--primary-color);
     border-radius: 50%;
     width: 40px;
     height: 40px;
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 5%;
 }