   :root {
       --primary: #1a365d;
       --secondary: #2d3748;
       --accent: #3182ce;
       --light: #f7fafc;
       --dark: #2d3748;
       --success: #38a169;
       --warning: #d69e2e;
       --danger: #e53e3e;
   }

   * {
       scroll-margin-top: 3rem;
   }

   html,
   body {
       overflow-x: hidden;
   }

   body {
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       color: var(--dark);
       line-height: 1.6;
   }

   input,
   textarea,
   select {
       font-family: inherit;
       padding: 10px 1rem !important;
       border-radius: 10px !important;
       font-weight: 500;
   }

   label {
       font-weight: 600;
   }

   .accordion-button {
       font-weight: 500;
       color: var(--accent) !important;
       background-color: #fff;
       box-shadow: none;
   }

   .accordion-button:not(.collapsed) {
       color: var(--accent) !important;
       background-color: #eaf4ff;
   }

   .accordion-item {
       border-color: #d9e7f8;
   }

   .text-accent {
       color: var(--accent) !important;
   }

   .navbar {
       background-color: var(--primary);
       box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   }

   .nav-link {
       color: #fff;
   }

   .navbar .active {
       /* color: var(--accent) !important; */
       font-weight: 700;
       text-decoration: underline;
   }

   .hero-section {
       background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
       color: white;
       padding: 1rem 0;
       padding-top: 4rem;
       min-height: 100dvh;
       position: relative;
   }

   iframe {
       /* position: absolute; */
       right: 0;
       left: 0;
       bottom: 0;
       inset: 0;
       width: 100%;
       height: 500px;
       border: none;
   }

   /* .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
    } */

   .navbar-brand {
       display: flex;
       justify-content: start;
       align-items: center;
       gap: 10px;
   }

   .navbar-brand h5 {
       margin: 0;
       font-size: 20px;
       font-weight: 800;
       display: flex;
       flex-direction: column;
       align-items: start;
       letter-spacing: 1.1px;
   }

   .section-title {
       position: relative;
       margin: auto;
       margin-bottom: 2rem;
       padding-bottom: 0.5rem;
       width: fit-content;
   }

   .section-title:after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 60px;
       height: 3px;
       background-color: var(--accent);
   }

   .lead {
       text-align: center
   }

   .trust-badge {
       /* background-color: ; */
       color: var(--dark);
       border-radius: 1rem;
       padding: 1.5rem;
       text-align: center;
       height: 100%;
       transition: transform 0.3s ease;
       box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
       /* border-left: 4px solid var(--accent); */
   }

   .trust-badge:hover {
       transform: translateY(-5px);
   }

   .trust-badge .bi {
       color: var(--accent) !important;
   }

   .trust-badge h4 {
       font-size: 18px;
       margin: 10px 0;
   }

   .trust-badge p {
       font-size: 14px;
   }

   .team a {
       color: var(--accent) !important;
   }

   .service-card {
       border: none;
       border-radius: 8px;
       overflow: hidden;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       height: 100%;
   }

   .service-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
   }

   .service-icon {
       font-size: 2.5rem;
       color: var(--accent);
       margin-bottom: 1rem;
   }

   #process {
       background-color: var(--primary) !important;
       color: #fff;
       min-height: 100dvh;
       display: flex;
       justify-content: center;
       align-items: center;
   }

   .step-number {
       font-size: 30px;
   }

   #process h4 {
       font-size: 16px;
       font-weight: 500;
       margin: 0;
   }

   #process p {
       margin: 0;
       padding: 0;
   }

   .process-step {
       display: flex;
       justify-content: start;
       align-items: center;
       gap: 10px;
       margin-bottom: 1.5rem;
   }


   .testimonial-card {
       background-color: var(--light);
       border-radius: 1rem;
       padding: 1.5rem;
       height: 100%;
       /* border-left: 4px solid var(--accent); */
   }

   .client-name {
       font-weight: bold;
       margin-bottom: 0;
   }

   .client-case {
       color: var(--secondary);
       font-size: 0.9rem;
   }

   .footer {
       background-color: var(--primary);
       color: white;
       padding: 3rem 0;
   }

   .footer a {
       color: rgba(255, 255, 255, 0.8);
       text-decoration: none;
   }

   .footer a:hover {
       color: white;
   }

   .security-notice {
       background-color: #fff5f5;
       border-left: 4px solid var(--danger);
       padding: 1.5rem;
       border-radius: 4px;
       margin: 2rem 0;
   }


   .btn {
       font-size: 14px;
   }

   .btn-primary {
       background-color: var(--primary) !important;
       border-color: var(--primary) !important;
       padding: 0.75rem 1.5rem;
       font-weight: 600;
   }

   .btn-primary:hover {
       background-color: var(--accent) !important;
       border-color: var(--accent) !important;
   }

   .btn-outline-primary {
       color: var(--primary);
       border-color: var(--primary);
   }

   .btn-outline-primary:hover {
       background-color: var(--primary);
       color: white;
   }

   /* About Page */
   .team-img {
       width: 120px;
       height: 120px;
       border-radius: 50%;
       overflow: hidden;
       margin: 0 auto 1rem auto;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease;
   }

   /* Blog Page */
   .blog-hero {
       padding-top: 4rem;
   }

   /* Blog Cards */
   .blog-card {
       background: #fff;
       border: none;
       border-radius: 12px;
       box-shadow: 0 3px 12px rgba(0, 123, 255, 0.08);
       transition: all 0.3s ease;
       overflow: hidden;
       height: 100%;
   }

   .blog-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 6px 18px rgba(0, 123, 255, 0.12);
   }

   .blog-card img {
       height: 200px;
       object-fit: cover;
       width: 100%;
   }

   .blog-card .card-body {
       padding: 1.5rem;
   }

   .blog-card .card-title {
       color: var(--primary);
       font-weight: 600;
       font-size: 1.15rem;
   }

   .blog-meta {
       font-size: 0.85rem;
       color: #6c757d;
   }

   /* Pagination */
   .page-link {
       color: #0d6efd;
   }

   .page-link:hover {
       background-color: #0d6efd;
       color: #fff;
   }

   /* Contact Page */

   /* Contact Section */
   .contact-form {
       background: #fff;
       border-radius: 10px;
       box-shadow: 0 3px 10px rgba(0, 123, 255, 0.08);
       padding: 2rem;
       transition: all 0.3s ease;
   }

   .contact-form:hover {
       box-shadow: 0 4px 18px rgba(0, 123, 255, 0.15);
   }

   .info-card {
       background: #fff;
       border-radius: 10px;
       padding: 2rem;
       box-shadow: 0 3px 10px rgba(0, 123, 255, 0.08);
   }

   .info-card i {
       font-size: 1.5rem;
       color: var(--accent);
       margin-right: 8px;
   }

   /* Case page */
   .case-page .hero-banner {
       position: relative;
       background: url('./images/fernsUnique.jpg') center/cover no-repeat;
       min-height: 320px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #fff;
       text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
   }

   .case-page .hero-overlay {
       position: absolute;
       inset: 0;
       background: #1a365d6b;
   }

   .case-page .hero-banner h1 {
       position: relative;
       font-weight: 700;
       letter-spacing: 0.5px;
   }

   .case-card {
       background: #fff;
       border: none;
       border-left: 5px solid var(--accent);
       box-shadow: 0 2px 10px rgba(13, 110, 253, 0.08);
       transition: all 0.3s ease;
   }

   .case-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 4px 20px rgba(13, 110, 253, 0.15);
   }

   .case-section {
       margin-bottom: 3rem;
   }

   .case-meta span {
       display: inline-block;
       margin-right: 15px;
       color: var(--accent);
       font-size: 0.9rem;
   }

   .case-outcome {
       border-top: 1px solid #e9ecef;
       padding-top: 0.75rem;
       margin-top: 1rem;
   }


   /* Shapes */
   /* ======= RANDOM FLOATING SHAPES ======= */
   .floating-elements {
       position: fixed;
       inset: 0;
       overflow: hidden;
       z-index: 0;
       pointer-events: none;
   }

   .shape {
       position: absolute;
       opacity: 0.15;
       background: rgba(74, 144, 226, 0.4);
       animation: floatRandom linear infinite;
       transform-origin: center;
   }

   .shape.circle {
       border-radius: 50%;
   }

   .shape.square {
       border-radius: 6px;
   }

   .shape.triangle {
       width: 0;
       height: 0;
       background: none;
       border-left: 15px solid transparent;
       border-right: 15px solid transparent;
       border-bottom: 25px solid rgba(74, 144, 226, 0.4);
       opacity: 0.18;
   }

   .shape.blob {
       border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
       background: rgba(102, 179, 255, 0.35);
   }

   @keyframes floatRandom {
       0% {
           transform: translate(0, 0) rotate(0deg);
           opacity: 0.15;
       }

       50% {
           opacity: 0.25;
       }

       100% {
           transform: translate(var(--x-move), var(--y-move)) rotate(360deg);
           opacity: 0.15;
       }
   }


   /* ======= AOS CUSTOM FADE SETTINGS ======= */
   /* [data-aos] {
            z-index: 2;
            position: relative;
        } */