
        :root {
            --navy: #0d2f5e;
            --navy-dark: #051b38;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #17a2b8;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
         /* Hero Section */
        .page-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .page-hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
      
        /* Navigation */
      /*  .navbar {
            background: linear-gradient(90deg, var(--navy-light) 0%, var(--navy) 100%);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .navbar.sticky {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            background: rgba(13, 47, 94, 0.95);
        }
        
        .navbar-brand img {
            height: 50px;
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link {
            color: var(--light-text);
            font-weight: 500;
            padding: 10px 15px !important;
            position: relative;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 15px;
            background-color: var(--teal);
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: calc(100% - 30px);
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--teal);
        }
        
        /* Improved dropdown styles */
       /* .dropdown-menu {
            border: none;
            background: var(--navy-light);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 10px 0;
            margin-top: 0;
            border-top: 3px solid var(--teal);
        }
        
        .dropdown-item {
            padding: 10px 20px;
            color: var(--light-text);
            position: relative;
            transition: var(--transition);
        }
        
        .dropdown-item:before {
            content: '';
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: var(--teal);
            transition: var(--transition);
        }
        
        .dropdown-item:hover:before {
            width: 8px;
        }
        
        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--teal);
            padding-left: 30px;
        }
        
        /* Enhanced dropdown behavior for desktop */
       /* @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
            
            /* Make dropdown arrow more visible */
        /*    .navbar-nav .nav-item.dropdown > .nav-link::after {
                content: '\f107';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                margin-left: 5px;
                border: none;
                display: inline-block;
                transition: var(--transition);
            }
            
            .navbar-nav .nav-item.dropdown:hover > .nav-link::after {
                transform: rotate(180deg);
            }
            
            /* Ensure dropdowns don't close when hovering over them */
           /* .dropdown-menu {
                display: block;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }
            
            .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }
        
        /* Banner Section */
       /* .imageaboutus {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .imageaboutus img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .innerbannercontent {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, rgba(13, 47, 94, 0.85), rgba(13, 47, 94, 0.7));
            color: var(--light-text);
            text-align: center;
        }
        
        .innerbannercontent h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .Bannernavigater {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .Bannernavigater li {
            display: inline-block;
            margin: 0 10px;
            color: var(--light-text);
        }
        
        .Bannernavigater li a {
            color: var(--teal);
            font-weight: 500;
        }
        
        .Bannernavigater li a:after {
            content: "\f101";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-left: 10px;
        }
        
        /* Contact Us Section */
        .contact-box1 {
            padding: 100px 0;
            background: var(--light);
        }
        
        .contactusdiv {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 50px;
        }
        
        .contact-us-info h3, .get-in-touch h3 {
            color: var(--navy);
            margin-bottom: 25px;
            position: relative;
        }
        
        .contact-us-info h3:after, .get-in-touch h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--teal);
            bottom: -10px;
            left: 0;
        }
        
        .contact-info {
            list-style: none;
            padding-left: 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--teal);
            font-size: 18px;
        }
        
        .get-in-touch p {
            margin-bottom: 25px;
            color: var(--gray);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e1e1e1;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.25);
        }
        
        textarea.form-control {
            min-height: 150px;
        }
        
        .Sendbtn {
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .Sendbtn:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .live-chat {
            margin-top: 20px;
            display: inline-block;
        }
        
        .mapshowing {
            height: 400px;
            width: 100%;
        }
        
        .mapshowing iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Contact Methods Section */
        .contact-methods {
            padding: 80px 0;
            background: var(--light);
        }
        
        .contact-method {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .contact-method:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .contact-method:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-method .icon {
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        .contact-method .icon i {
            color: var(--teal);
            font-size: 2rem;
        }
        
        .contact-method h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Footer */
        .footer {
            background: var(--navy-dark);
            padding: 80px 0 0;
            color: var(--light-text);
        }
        
        .footer h4 {
            color: var(--light-text);
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--teal);
            bottom: -10px;
            left: 0;
        }
        
        .footer .listInFooter li {
            margin-bottom: 12px;
        }
        
        .footer .listInFooter a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        
        .footer .listInFooter a:hover {
            color: var(--teal);
            padding-left: 5px;
        }
        
        .serviceblock li {
            padding-left: 30px;
            position: relative;
        }
        
        .serviceblock li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--teal);
        }
        
        .bottomfooter {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 50px;
            color: var(--light-text);
        }
        
        /* Back to top */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        #back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        #back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .innerbannercontent h3 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar {
                padding: 10px 0;
            }
            
            .navbar-collapse {
                background: var(--navy);
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }
            
            .innerbannercontent h3 {
                font-size: 2rem;
            }
            
            .imageaboutus {
                height: 300px;
            }
            
            .contact-box1 {
                padding: 60px 0;
            }
            
            .contactusdiv {
                padding: 30px;
            }
            
            /* Mobile dropdown styles */
            .dropdown-menu {
                background: rgba(255, 255, 255, 0.05);
                margin-top: 10px;
            }
            
            .dropdown-item {
                padding-left: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            #TopNav {
                text-align: center;
            }
            
            .TopNavLeft, .TopNavRight {
                text-align: center !important;
            }
            
            .TopNavRight .DetailsInTopNav {
                margin: 0 10px;
            }
            
            .innerbannercontent h3 {
                font-size: 1.8rem;
            }
            
            .imageaboutus {
                height: 250px;
            }
            
            .Bannernavigater li {
                display: block;
                margin: 5px 0;
            }
            
            .contactusdiv {
                padding: 20px;
            }
            
            .contact-methods {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .innerbannercontent h3 {
                font-size: 1.5rem;
            }
            
            #back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }
   