  :root {
            --primary: #00d4c8;
            --dark: #1a2a44;
        }
        
        body {
           font-family: Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        
        .navbar {
            background: rgba(26, 42, 68, 0.97) !important;
            backdrop-filter: blur(12px);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #1a2a44 0%, #0f1f33 100%);
            position: relative;
            display: flex;
            align-items: center;    padding: 50px 20px;
        }

        
        .hero h1 {
            font-size: clamp(3.2rem, 7vw, 5rem);
            font-weight: 800;
            line-height: 1.05;
            color: white;
        }
        
        .hero-image {
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.35);
            transform: rotate(-6deg);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 65%;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }
        
        .why-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .service-card {
            border: none;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
        }
        
        .service-img {
            height: 240px;
            object-fit: cover;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #1a2a44, #0f1f33);
            color: white;
        }
        
        .contact-form {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        #scrollToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            border: none;
            box-shadow: 0 10px 25px rgba(0,212,200,0.4);
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
        }

             /* pages policys */

 /* Hero Section */
      .policies-page .hero-policy {
            background: linear-gradient(135deg, #0d3b66, #1d3557);
            color: #fff;
             padding: 115px 0 60px;
            position: relative;
            overflow: hidden;
        }

      .policies-page  .hero-policy::after {
            content: "";
            position: absolute;
            bottom: -40px;
            left: 0;
            width: 100%;
            height: 80px;
            background: var(--bg-light);
            border-radius: 50% 50% 0 0;
        }

     .policies-page   .hero-policy h1 {
            font-weight: 700;
            letter-spacing: 1px;
        }

    .policies-page    .hero-policy p {
            opacity: 0.9;
        }

        /* Sidebar Navigation */
      .policies-page  .policy-nav {
            position: sticky;
            top: 100px;
        }

     .policies-page   .policy-nav .nav-link {
            color: #495057;
            border-left: 3px solid transparent;
            padding: 10px 15px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

      .policies-page  .policy-nav .nav-link:hover,
      .policies-page  .policy-nav .nav-link.active {
            background: #fff;
            border-left: 3px solid var(--accent-color);
            color: var(--primary-color);
            border-radius: 5px;
        }

        /* Section Cards */
     .policies-page   .policy-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border-left: 5px solid var(--accent-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

     .policies-page   .policy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

      .policies-page  .policy-card h3 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

      .policies-page  .policy-card p {
            color: var(--text-muted);
            line-height: 1.8;
        }

     .policies-page   .policy-card ul {
            color: var(--text-muted);
            padding-left: 20px;
        }

     .policies-page   .policy-card ul li {
            margin-bottom: 10px;
        }

        /* Footer */
     .policies-page   footer {
            background: #0d3b66;
            color: #fff;
            padding: 20px 0;
            text-align: center;
            margin-top: 0px;
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
         .policies-page   .policy-nav {
                display: none;
            }
        }