  :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, 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: 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;
        }
        
       a.navbar-brand {
    color: #fff;
} 
.navbar-brand:hover{color: #fff;}
        .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;
            }
        }

          /* FOOTER */
.footer {
    background: #f2f6fb;
    padding: 50px 20px 20px;
    text-align: center;
    color: var(--dark);
}

/* TITLE */
.footer h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 5px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    margin-top: 30px;
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 14px;
    transition: 0.3s;
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

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

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

/* DIVIDER */
.footer hr {
    border: none;
    border-top: 1px solid #dbe6ef;
    margin: 30px 0;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 10px;
}

.footer-contact {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ICON STYLE */
.footer-contact i {
    color: var(--primary);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
#navbarNav ul li a{color:#fff;}
        /* about us */

/* SECTION */
.about-section {
    padding: 80px 20px;
}

/* GRID */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* IMAGE */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;    height: 525px;
    object-fit: cover;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* CONTENT */
.about-content h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #00b8ae;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        max-width: 90%;
        margin: auto;
    }
}

        /* SECTION */
.contact-section {
    padding: 80px 20px;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
}

.section-title span {
    color: var(--primary);
}

/* CARDS */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;

    border: 1px solid #e5edf4;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,212,200,0.05);
    transition: 0.3s;
}

.card:hover::before {
    width: 100%;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(0,212,200,0.15);
}

.icon {
    width: 50px;
    height: 50px;
    background: rgba(0,212,200,0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

/* MAIN GRID */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* FORM */
.form-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e5edf4;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.form-box h3 {
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #dbe6ef;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0,212,200,0.1);
}

.form-group textarea {
    grid-column: span 2;
    height: 120px;
}

/* FLOAT LABEL */
.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #777;
    background: #fff;
    padding: 0 5px;
    transition: 0.3s;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 11px;
    color: var(--primary);
}

/* BUTTON */
.submit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #00b8ae;
    transform: translateY(-2px);
}

/* MAP BOX */
.map-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0,212,200,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Glow effect */
.map-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,212,200,0.2);
    pointer-events: none;
}

/* iframe */
.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.inner-bg {
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 100px 0 50px;
    background-size: cover;
    background-color: #1b3659;
    background-blend-mode: multiply;}

    .inner-bg h2 {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 0px;
    font-family: 'Raleway', sans-serif;
    -webkit-text-stroke-width: 0.5px;
}
.inner-bg .breadcrumb {
    background: none;
    padding: 0px;
    margin-bottom: 0px;
    margin-top: 6px;
}
.inner-bg .breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}
.breadcrumb-item.active {
    color: #fff !important;
}
.breadcrumb-item+.breadcrumb-item::before {
    position: relative;
    top: 2px;
    color: #fff !important;
}
.inner-bg .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: var(--primary);
    content: "/";
}