:root {
            --primary-color: red;
            --secondary-color: #033d77;
            --dark-color: #1a365d;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
        }
        
        body {
             font-family: 'Poppins', sans-serif !important;
            color: #0a0a0a;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding:0 !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
           padding:0 !important;

        }
        
        .navbar-brand span {
            color: var(--secondary-color);
        }
        
        .nav-link {
            font-weight: 600 !important;
            margin: 0 10px;
            color: var(--dark-color) !important;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        
        .btn-custom {
            background-color: var(--secondary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-custom:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.034), rgba(0, 0, 0, 0.116)), url('../img/banner.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .marquee{
            background-color: #033d77;
            padding:8px 0;
            margin-bottom:-5px;line-height: 1;
        }
        .hero-section p {
            font-size: 16px;
            margin-bottom: 30px;
            max-width: 700px;
        }
        
        /* Section Styling */
        .section-title {
            position: relative;
            margin-bottom: 30px;
            color: var(--dark-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 0;
            border-radius: 2px;
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        section {
            padding: 60px 0;
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Services */
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid hsla(0, 3%, 13%, 0.151);
            background-color: white;
            margin-bottom: 30px;
            position: relative;
            background-image: url('../img/slider-shape.png');
            background-position: bottom;
            background-size: 100%;
            background-repeat:no-repeat ;  
            padding-bottom: 30px;  
           }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
             z-index:1;
        }
        .service-card .shield{
    position:absolute;
    top:150px;
    right:0;
    z-index:2;
    width:90px;
}
     .service-card .fold{
    position:absolute;
    bottom:0px;
    right:0;
    z-index:2;
    width:90px;
}
        .service-body {
            padding: 25px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 20px 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid hsla(0, 3%, 13%, 0.151);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgb(219, 6, 6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: #fff;
            font-size: 30px;
        }
        
        /* FAQs */
        .accordion-button {
            font-weight: 500;
            padding: 20px;
            font-size: 18px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgb(208 208 208 / 37%);
            color: #033d77;
            font-weight: 600;
            
        }
        .accordion-button:focus {
    border-color: none !important;
    outline: 0 !important;
    box-shadow: none !important;
}
        
        /* Reviews */
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            border: 1px solid hsla(0, 3%, 13%, 0.151);
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        /* Contact Form */
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            padding: 5px 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(42, 107, 204, 0.25);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .service-body{
            text-align: justify;
            hyphens: auto;
         
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            padding-top: 17px;
            text-align: center;
            color: #ffffff;
            font-size: 0.9rem;
        }
        .copyright a{
            text-decoration: none;
        }
        .contact_sec{
            display: flex;
            border-bottom: 1px solid #ccc;
            padding: 22px 10px;
            align-items: center;
        }
        .col-md-12:last-child .contact_sec{
          border-bottom: none;
          margin-bottom: 0;
        }
        .contact_sec a{
          color: #000;
          text-decoration: none;
        }
        .contact_sec .cont-icon{
            width: 60px;
            height: 60px;
            background-color: rgb(228, 6, 6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
             flex-shrink: 0;
            color: #ffffff;
            font-size: 30px;
        }
        .text-justify{text-align: justify;hyphens: auto;}
 .my-form{
padding:20px;
box-shadow:0px 0px 6px #ccc;
background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
}
.prr-5{padding-right:2px !important;}
.pll-5{padding-left:2px !important;}
@media (max-width: 800px){
.prr-5 {
padding-right: 15px !important;
}
.pll-5 {
padding-left: 15px !important;
}
 .navbar-brand img {
           height:50px;
        }
}
.form-control{
    margin-bottom: 3px;
}

.fix-icon {
	display: inline-block;
	position: fixed;
	bottom: 100px;
	left: 20px;
	z-index: 999999;
}

#fix-icon {
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.fix-icon-item {
	animation: bounce 1s infinite alternate;
	animation-duration: 1s;
	-webkit-animation: bounce 1s infinite alternate;
	animation-duration: 1s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
	animation-fill-mode: none;
}

.fix-icon-item img {
	width: 55px !important;
	height: 55px !important;
	background: #eb0606;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
}

.fix-icon-whataap {
	display: inline-block;
	position: fixed;
	bottom: 30px;
	left: 20px;
	z-index: 999999;
	transition: all0.5s ease-in-out;
}

.fix-icon-whataap-item img {
	border-radius: 50%;
	box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
	transition: box-shadow .2s;
	cursor: pointer;
	overflow: hidden;
	width: 55px !important;
	height: 55px !important;
	background: #25d366 !important;
}

/* --- 6. Process --- */
        .process-step {
            text-align: center;
            position: relative;
            padding: 20px;
        }
        .process-step h4 {
        color: rgb(255, 255, 255);
        font-weight: 600;
        }
         .process-step p {
        color: rgb(211, 207, 207);
         line-height: 20px;
         margin-bottom: 0;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: rgb(228, 1, 1);
            color: rgb(255, 255, 255);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        .step-box1:hover {
              background-color: var(--primary-color);
        }
        .step-box1:hover::after  {
              border-bottom-color: var(--primary-color);
        }
        .step-box1:hover  i {
              color: #fff;
        }
        @media (min-width: 992px) {
            .process-step::after {
                content: '';
                position: absolute;
                top: 45px;
                left: 50%;
                width: 100%;
                height: 2px;
                background: #ddd;
                z-index: 1;
            }
            .process-step:last-child::after {
                display: none;
            }
        }
        .bg_sec{
            background: var(--secondary-color);
        }
        .review_icon{
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            font-size: 48px;
            padding: 0 11px;
            margin-right: 10px;
            color: #fff;
            line-height: 68px;
        }
        .bg-lightt {
 background-image: linear-gradient(180deg, #f5f7fa 0%, #c3cfe2 100%);
}
.bg-iiig{
    background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
}
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding: 90px 0;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 25px;
            }
        }