      :root {
            --primary: #5f6fff;
            --secondary: #00c6ff;
            --dark: #0f172a;
            --light: #f8f9ff;
        }

        body {
          font-family: Verdana, sans-serif;
            scroll-behavior: smooth;
            background-color: #ffffff;
        }

        /* ================= NAVBAR ================= */
        .navbar {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--dark);
        }

        .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: -5px;
            left: 0;
            transition: 0.3s;
        }

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

        .btn-gradient {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border-radius: 50px;
            padding: 10px 25px;
            border: none;
            transition: 0.3s;
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        /* ================= HERO ================= */
        .hero {
          min-height: 100vh;
    background: linear-gradient(135deg, rgb(10 15 28 / 70%), rgb(6 182 212 / 13%)), url(../img/background/banner.jpg) center / cover no-repeat fixed;
    display: flex
;
    align-items: center;
    position: relative; text-align: center;    padding: 50px 20px;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 700; color: #fff;
        }

        .hero p {
            font-size: 2rem;
            margin: 20px 0 30px;color: #fff;
        }

        /* ================= SECTION TITLES ================= */
        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
        }

        /* ================= ABOUT US ================= */
        .about-section {
            background: linear-gradient(180deg, var(--light), #ffffff);
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-card {
            background: #fff;
            border-left: 4px solid var(--primary);
            padding: 20px 25px;
            margin-bottom: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .about-card:hover {
            transform: translateX(5px);
        }

        /* ================= WHY CHOOSE US ================= */
        .why-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: 0.4s;
            height: 100%;
        }

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

        .why-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* ================= SERVICES ================= */
        .services-section {
            background: #ffffff;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

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

        .service-card img {
            height: 220px;
            object-fit: cover;
        }

        .service-content {
            padding: 25px;
        }

        /* ================= CONTACT ================= */
        .contact-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 80px 0;
        }

        .contact-card {
            background: #fff;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* ================= FOOTER ================= */
        footer {
            background: var(--dark);
            color: #cbd5e1;
            padding: 40px 0;
        }

        footer a {
            color: #cbd5e1;
            text-decoration: none;
        }

        footer a:hover {
            color: #ffffff;
        }

        .social-icons a {
            color: #fff;
            margin-right: 15px;
            font-size: 18px;
        }

        /* ================= SCROLL TO TOP ================= */
        #scrollTopBtn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            z-index: 999;
        }

        #scrollTopBtn:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.4rem;
            }
        }


        /* 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;
            }
        }