:root {
            --primary: #003366;       /* Logo Navy Blue */
            --accent: #00A86B;        /* Logo Emerald Green */
            --accent-hover: #008f5a;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --bg-card: #ffffff;
            --border: #e2e8f0;
            --radius: 12px;
            --shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
            --transition: all 0.3s ease;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.6;
        }
		
		img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        
		
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .section { padding: 40px 0; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 2.5rem; color: var(--primary); font-weight: 800; margin-bottom: 10px; }
        .section-title .underline { width: 70px; height: 5px; background: var(--accent); margin: 0 auto; border-radius: 5px; }

        /* --- Header & Nav --- */
        .header {
            position: fixed; top: 0; width: 100%; background: white; 
            z-index: 1000; border-bottom: 1px solid var(--border); transition: var(--transition);
        }
        .header.scrolled { padding: 5px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        
        /* Logo Concept 1 */
        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-icon { position: relative; width: 40px; height: 40px; }
        .logo-icon .arrow-down { position: absolute; left: 0; bottom: 0; width: 15px; height: 30px; background: var(--primary); clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%); }
        .logo-icon .arrow-up { position: absolute; right: 0; top: 0; width: 25px; height: 40px; background: var(--accent); clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%); }
        .logo-text { font-size: 1.6rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
        .logo-text span { color: var(--accent); }

        .nav-menu { display: flex; gap: 30px; list-style: none; align-items: center; }
        .nav-link { font-weight: 600; color: var(--primary); font-size: 0.95rem; text-decoration: none; transition: var(--transition); }
        .nav-link:hover { color: var(--accent); }

        /* Dropdown */
        .dropdown { position: relative; }
        .dropdown-menu { 
            position: absolute; top: 100%; left: 0; background: white; min-width: 250px; 
            box-shadow: var(--shadow); border-radius: 8px; opacity: 0; visibility: hidden; 
            transform: translateY(10px); transition: var(--transition); padding: 10px 0; border: 1px solid var(--border);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-item { display: block; padding: 10px 20px; text-decoration: none; color: var(--primary); font-weight: 500; font-size: 0.9rem; transition: var(--transition); }
        .dropdown-item:hover { background: var(--bg-light); color: var(--accent); padding-left: 25px; }

        /* --- Hero Slider --- */
        .hero { position: relative; height: 85vh; min-height: 600px; overflow: hidden; background: var(--primary); }
        .slider { height: 100%; width: 100%; position: relative; }
        .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: center; }
        .slide.active { opacity: 1; }
        .slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.4) 100%); z-index: 1; }
        .slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        .hero-content { position: relative; z-index: 2; color: white; max-width: 700px; }
        .hero-content h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
        .hero-content span { color: var(--accent); }
        .hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

        /* --- Why Choose Us --- */
        .wcu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .wcu-card { background: white; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); border-bottom: 4px solid transparent; transition: var(--transition); text-align: center;}
        .wcu-card:hover { border-bottom: 4px solid var(--accent); transform: translateY(-5px); }
        .wcu-icon { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
        .wcu-card h3 { color: var(--primary); margin-bottom: 15px; font-weight: 700; }

        /* --- Services Grid --- */
        .services { background: white; }
        .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        .service-card { 
            background: var(--bg-light); border: 1px solid var(--border); padding: 30px; 
            border-radius: var(--radius); transition: var(--transition); cursor: pointer;
        }
        .service-card:hover { background: white; border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-5px); }
        .service-card i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
        .service-card h3 { margin-bottom: 12px; color: var(--primary); font-size: 1.25rem; }
        .service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
        .service-link { color: var(--accent); font-weight: 700; text-decoration: none; font-size: 0.85rem; text-transform: uppercase; }

        /* --- Blogs Section --- */
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
        .blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
        .blog-img { height: 200px; width: 100%; object-fit: cover; }
        .blog-body { padding: 25px; }
        .blog-date { color: var(--accent); font-weight: 700; font-size: 0.8rem; margin-bottom: 10px; display: block; }
        .blog-body h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; }
        .blog-btn { color: var(--primary); font-weight: 700; text-decoration: none; font-size: 0.9rem; }

        /* --- Clients Section --- */
        .clients { background: #f1f5f9; text-align: center; }
        .client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; opacity: 0.6; padding-top: 20px;}
        .client-logos i { font-size: 3rem; color: var(--primary); }

        /* --- Buttons --- */
        .btn { padding: 14px 30px; border-radius: 8px; font-weight: 700; text-decoration: none; display: inline-block; transition: var(--transition); cursor: pointer; border: none; }
        .btn-accent { background: var(--accent); color: white; }
        .btn-accent:hover { background: var(--accent-hover); transform: scale(1.05); }
        .btn-white { background: transparent; color: white; border: 2px solid white; margin-left: 15px; }
        .btn-white:hover { background: white; color: var(--primary); }

        /* --- Contact Section --- */
        .contact-box { background: white; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1.5fr; overflow: hidden; }
        .contact-info { background: var(--primary); color: white; padding: 50px; }
        .contact-form { padding: 50px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
        .form-control { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 6px; outline: none; }
        .form-control:focus { border-color: var(--accent); }
		
		   /* ==========================================================================
           ABOUT US SECTION
           ========================================================================== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

        /* Modern floating metrics card */
        .about-floating-card {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background-color: var(--bg-card);
            padding: 24px 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            border-left: 5px solid var(--accent);
        }

        .about-floating-card .metric {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }

        .about-floating-card .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .about-content h3 {
            font-size: 1.25rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }

        .about-content h2 {
            font-size: 2.25rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: var(--primary);
        }

        .about-feature-item i {
            color: var(--accent);
            background: rgba(37, 99, 235, 0.1);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }



.btn-accent {
    background:#00a86b;
    color: white;
}

.btn-white:hover {
    background: white;
    color: #003366;
}
.btn-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
    
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
  
    
    
    
}



.inner-banner{ background:url(img/about-banner.jpg);
    background-position: center center;
       background-size: cover;
    padding: 40px;
    margin-top: 80px; text-align: center;
}


.inner-banner-contact{ background:url(img/contact.jpg);
    background-position: center center;
       background-size: cover;
    padding: 40px;
    margin-top: 80px; text-align: center;
}

.inner-banner-contact ol{    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-around;}

.inner-banner-contact ol li{color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;}


  .custom-table{
            border:1px solid #dee2e6;
        }

        .custom-table thead th{
            background:#f8f9fa;
            font-weight:700;
            padding:18px 20px;
            vertical-align:middle;
        }

        .custom-table tbody td{
            padding:20px;
            vertical-align:middle;
        }

        .custom-table tbody td:first-child{
            font-weight:600;
            width:30%;
            white-space:nowrap;
        }

        .table-responsive{
            border-radius:8px;
            overflow:hidden;
        }











.about-content p{text-align: justify;}

.service-grid{margin-bottom:20px;}

.inner-banner ol{    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-around;}

.inner-banner ol li{color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;}

.btn-accent {
    background: #00a86b;
    color: white;
    
     padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.nav-link {
    font-weight: 600;
    color: #003366;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.navbar{
    background:#fff;
    padding:18px 0;
    box-shadow:0 1px 3px rgba(0,0,0,.08);
}

.logo{
    height:48px;
}

.navbar-nav .nav-link{
    color:#003b7a;
    font-size:18px;
    font-weight:600;
    margin:0 14px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#0aa55f;
}

.dropdown-menu{
    width:310px;
    border:none;
    border-radius:14px;
    padding:14px 0;
    margin-top:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.dropdown-item{
    font-size:17px;
    color:#003b7a;
    padding:14px 28px;
    font-weight:500;
}

.dropdown-item:hover{
    background:#f4f8fc;
    color:#0aa55f;
}

.dropdown-item.active{
    background:#fff;
    color:#0aa55f;
}

.contact-btn{
    background:#0aa55f;
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
}

.contact-btn:hover{
    background:#08884e;
    color:#fff;
}






.form-bg {
    border-radius: 12px;
    background: rgb(255 255 255);
    padding: 52px 40px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 14%); }

.bg-contactext input[type="email"], .bg-contactext input[type="text"], .bg-contactext textarea {
    font-size: 14px;
    padding: 22px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--color-default);
    background-color: #fff;
    border-color: #b6b6b6;
    border: 1px solid #ddd; }

.form-bg select {
    font-size: 14px;
    padding: 22px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--color-default);
    background-color: #fff;
    border-color: #b6b6b6;
    border: 1px solid #ddd;
    transition: all .5s;
    margin-bottom: 24px; }


.bg-contactext {
    margin-bottom: 20px; }

.contact-size {
    padding-bottom: 32px;
        font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}
.contact-call h4{ font-size: 24px;}

.contact-call h3{ font-size: 32px;
    font-weight: 600;
   padding-bottom:7px;}

.bottom-space {
    margin-bottom: 20px;
        min-height: 151px;
    border: 0px solid #89bdcb;
    background: #e8f2f9;
    border-radius: 0; }

.bg-lightblue {
        padding: 20px 20px 29px 13px;
    border-radius: 14px;
}

.bg-contactext p {
    margin: 0 0 5px;
}


.contact-call a{text-decoration: none; font-size:16.pb-40 {
    padding-bottom: 40px;
}
.pt-40 {
    padding-top: 40px;
}px;}




.radio-group{
    display:flex;
    gap:25px;
    align-items:center;
}

.form-check-input{
    width:22px;
    height:22px;
    margin-top:0;
    cursor:pointer;
}

.form-check-label{
    font-size:20px;
    margin-left:8px;
    cursor:pointer;
}


.checkout-spaceform{margin-bottom:20px;}








.w-btn{display:inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 44px;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    background:#7a0c51;
    color: var(--white);
    border-radius: 60px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;font-size:20px;}

.tota_price{margin-bottom:5px;}


.choose{}
.choose p{}
.choose h3{    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 27px;
}
.choose ul{}
.choose ul li{padding-bottom: 10px;}

.list-finance { list-style:none; margin:0px; padding:0px;}
.list-finance   strong{display:block; widows:100%; font-size:18px; padding-bottom:20px;}

.list-finance  li{border-bottom:1px solid #ddd;}



.pb-40 {
    padding-bottom: 40px;
}
.pt-40 {
    padding-top: 40px;
}


.wcu-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
}



.terms-card{
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    overflow:hidden;
}


.terms-card i{color:#00a86b; font-size:20px;}




.terms-card .card-header{
   background: linear-gradient(90deg, #00a86b, #000000);
    color: #fff;
    padding: 20px;
}
.terms-table{
    margin:0;
}
.terms-table th{
    width:70px;
    text-align:center;
    background:#f8f9fa;
    vertical-align:middle;
    font-size:22px;
    color:#0d6efd;
}
.terms-table td{
    padding:18px;
    font-size:15px;
    vertical-align:middle;
}
.terms-table tr{
    transition:.3s;
}
.terms-table tr:hover{
    background:#f1f7ff;
}


.menu-rap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}








@media(min-width:992px){

.nav-item.dropdown:hover .dropdown-menu{
    display:block;
}

}





@media (max-width: 767px){
    
 
 .pt-40 {
    padding-top: 0px;
}
.pb-40 {
    padding-bottom: 0px;
}   
    
    
    
    
    
    
.inner-banner-contact {
    background: url(img/contact.jpg);
    background-position: center center;
    background-size: cover;
    padding: 40px;
    margin-top: 0px;
    text-align: center;
}    
    
    
  .inner-banner-contact ol li {
    color: #fff;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: -14px;
}  
    
    
    
 
.wcu-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 19px;
}    
    
    
   .navbar-nav .nav-link {
    color: #003b7a;
    font-size: 15px;
    font-weight: 600;
    margin: 0 14px;
    transition: .3s;
    line-height: 15px;
} 
 .contact-btn {
    background: #0aa55f;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 7px 23px;
    border-radius: 12px;
    text-decoration: none;
    transition: .3s;
}   
    
    
    
    
 .wcu-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
    text-align: center;
    border: 1px solid #00a86b;
}   
    
    
    
  .about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}  
    
    
  .menu-rap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}  
 .inner-banner {

    margin-top: 0px;
    text-align: center;
}   
    
    
    
    
    
    
 .inner-banner ol li {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: -14px;
}   
    
.choose p {
    text-align: justify;
}   
    
 .choose h3 {
    font-size: 21px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 27px;
}   
    
.header {
    position: relative;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}    
    
    
    
.about-features {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}    
    
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary);
    padding-bottom: 18px;
}    
    
    .section-title h2 {
        font-size: 21px;
        color: var(--primary);
        font-weight: 800;
        margin-bottom: 10px;
        text-transform: uppercase;
    }   
    
.contact-form {
    padding: 22px;
}    
    
    
    
  .about-content h2 {
    font-size: 21px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}  
.hero-content a{padding:10px;}

 .about-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}   
    
 .about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--bg-card);
    padding: 24px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent);
    display: none;
}   
    
    
    
}


        /* --- Footer --- */
        .footer { background: #001a33; color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
        .footer h4 { color: white; margin-bottom: 20px; font-size: 1.2rem; }
 .footer-links {
    list-style: none;
    padding: 0;
}
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: inherit; text-decoration: none; transition: var(--transition); }
        .footer-links a:hover { color: var(--accent); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.9rem; }

        @media (max-width: 992px) {
            .contact-box { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-menu { display: none; } /* Mobile menu toggle needed for production */
        }