       :root {
            --primary-color: #18181a;
            --secondary-color: #e73425;
            --accent-color: #075399;
            --light-color: #fffff0;
            --dark-color: #2c3e50;
            /* background-image: linear-gradient(135deg, #075399 0%, #330867 100%); */
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .navbar {
            background-color: #fff !important;
            padding: 0px 0 !important;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0,0,0,0.5);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            padding: 2px 0;
        }
        .navbar-brand img{
            height: 80px;
        }
        
        .nav-link {
            color: rgb(24, 23, 23) !important;
            font-weight: 600;
            margin: 0 5px;
            transition: color 0.3s;
            font-size: 16px;
            text-transform: uppercase;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .hero-section {
            background-size:cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 0px 0;
            /* text-align: center; */
			margin-top: 80px;
            background-image: linear-gradient(45deg, #075399 0%, #081367 700%, #075399 100%);
        }
        
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .carousel-caption{
    position: absolute;
    top: 50%;
    /* bottom: 1.25rem; */
    left: 50%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 95%;
    /* background-color: rgba(0,0,0,0.4); */
    padding-top: 40px;
    
 }
 .carousel-caption h3{
    color: #ffffff;
    font-size: 50px;
    font-weight: 900;
    text-shadow:
       1px 1px 0 #000,
      -1px 1px 0 #000,
       1px -1px 0 #000,
      -1px -1px 0 #000;
    margin-bottom: 15px;

 }
 .carousel-item img{
    width: 1220px;
    height: 550px;
 }
 .carousel-caption p{
    color: #ffffff;
    font-size: 18px;
   margin-bottom: 15px;

 }
  img{
    max-width: 100%;
 }
 .about_img{
    border: 1px solid hsla(0, 0%, 51%, 0.27);
    padding: 10px;
    border-radius: 8px;
 }
 .text-justify{
    text-align: justify;
    hyphens: auto;
 }

        
        .section-padding {
            padding: 60px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 30px;
            /* height: 100%; */
            border: 1px solid hsla(0, 0%, 51%, 0.27);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
        }
        
        .why-us-card {
            display: flex;
            align-items: flex-start;
            padding: 25px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            margin-bottom: 30px;
             border: 1px solid hsla(0, 0%, 51%, 0.27);
        }
        
       
        
        .why-us-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-right: 20px;
            min-width: 60px;
            text-align: center;
        }
        
        .why-us-content h4 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .why-us-content p {
            margin-bottom: 0;
            color: #666;
        }
         .why-us-card:hover {
            background-color: #e73204;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .why-us-card:hover .why-us-content h4, .why-us-card:hover  p, .why-us-card:hover .why-us-icon{
            color: #fff;
        }
        
        @media (max-width: 768px) {
            .why-us-card {
                flex-direction: column;
                /* text-align: center; */
            }
            
            .why-us-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        .process_sec{
          background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
        }
       

        .process-step {
            text-align: center;
            padding: 20px 20px 15px 20px;
            position: relative;
            border: 1px solid hsla(0, 0%, 51%, 0.39);
            border-radius: 8px;
            background-color: rgba(255,255,255,0.5);
           
        }
        
        .process-number {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .testimonial-card {
            background-color: #f6fdff;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid hsla(0, 2%, 8%, 0.27);
        }
        .text-star{
            color: #ff3f00;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: var(--light-color);
            padding: 15px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 20px;
            background-color: white;
            border-top: 1px solid #eee;
        }
        
        .contact-info {
            margin-bottom: 30px;
            background-color: white;
            padding: 20px 20px 0 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);

        }
        .contact-info  .d-flex{
         border-bottom: 1px solid hsla(0, 0%, 51%, 0.27);
        }
        .contact-info .d-flex:last-child{
         border-bottom: none;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        footer {
           background-image: linear-gradient(45deg, #075399 0%, #081367 700%, #075399 100%);
            color: white;
            /* padding: 60px 0 20px; */
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;padding-bottom: 15px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        
        .copyright {
            padding-top: 20px;
            /* margin-top: 40px; */
            text-align: center;
            color: #ffffff;
        }
          .copyright p{
          margin-bottom: 0;  
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: #c0392b;
            border-color: #c0392b;
        }
		.stats-section {
            background-color: #fff;
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .stat-card {
            text-align: center;
            padding: 10px 20px 15px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background-color: rgb(255, 255, 255);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid hsla(0, 3%, 8%, 0.158);
            
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--dark-color);
            font-weight: 600;
        }

        .stat-card:hover {
            background-color: rgb(231, 50, 4);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-card:hover .stat-number, .stat-card:hover  .stat-label, .stat-card:hover .stat-icon {
            color: #fff;
        }
        
		.cta-section {
           background-image: linear-gradient(45deg, #075399 0%, #081367 700%, #075399 100%);
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta {
            background-color: white;
            color: var(--secondary-color);
            padding: 10px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .btn-cta:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.6);
        }

   input.parsley-success,
select.parsley-success,
textarea.parsley-success {
color: #468847;
background-color: #DFF0D8;
border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
color: #B94A48;
background-color: #F2DEDE;
border: 1px solid #EED3D7;
}

.parsley-errors-list {
margin: 2px 0 3px;
padding: 0;
list-style-type: none;
font-size: 0.9em;
line-height: 10px;
opacity: 0;
color:#FF0000;

transition: all .3s ease-in;
-o-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
-webkit-transition: all .3s ease-in;
}
.parsley-errors-list li{
    line-height: 20px !important;
    list-style: none;
}

.parsley-errors-list.filled {
opacity: 1;
}
.form_sec{
 padding: 20px 20px 5px 20px;
 /* background-color: #004AAD; */
 color: #fff;
}

.my-form{
padding:16px;
border-radius:-7px;
border: 1px solid hsla(0, 0%, 51%, 0.27);
background: linear-gradient(0deg, hsl(0deg 0% 91.77%), hsl(0deg 0% 86.52%));
}
.prr-5{padding-right:2px;}
.pll-5{padding-left:2px;}
@media (max-width: 800px){
.prr-5 {
padding-right: 12px;
}
.pll-5 {
padding-left: 12px;
}}
.form-control {
    display: block;
    width: 100%;
    /* height: 40px; */
    padding: 9px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #000000 !important;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px dashed #d61b06 !important;
    margin: 2px 0;
}
.form-control::placeholder{
    color: #000 !important;
}
.form_captcha{
    margin: 6px 0;

}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-form-control-bg);
    border-color: none;
    outline: 0;
    box-shadow: none;
}
.text-g {
background: linear-gradient(15deg, #075399 0%, #330867 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.form_btn{
    background-color: #004AAD;
    padding: 8px 20px;
    color: #fff;
}
.form_btn:hover{
    background-color: #004badfa;
    color: #fff;
}
.form_btn1{
    background-color: #c00720;
    padding: 8px 20px;
    color: #fff;
}
.form_btn1:hover{
    background-color: #b40909;
    color: #fff;
}
.page_sec h3{
    color: #fff;
    /* text-align: center; */
}
.copy_link{
    padding: 20px 0;
}
.page_sec a, .copy_link a{
    color: #fff;
    text-decoration: none;
    margin-right: 5px;
}
.page_other p{
    text-align: justify;
    hyphens: auto;
}

.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: #d61b06;
    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;
  }
        
        @media (max-width: 768px) {
            .stat-card {
                margin-bottom: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }

        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding: 15px 0;
            }
            .carousel-caption{
             /* padding: 100px 0; */
            }
            .carousel-item img{
                width: 100%;
                height: 91vh;
                object-fit: cover;
            }
            .carousel-caption h3 {
              font-size: 33px;
                 text-shadow:
           1.5px 1.5px 0 #000,
          -1.5px 1.5px 0 #000,
           1.5px -1.5px 0 #000,
          -1.5px -1.5px 0 #000;
    
            }
            .section-padding{
                padding: 40px 0;
            }
             .navbar-brand img{
            height: 60px;
        }
        .hero-section {
            margin-top: 48px;
        }
         .stat-icon {
            font-size: 2rem;
        }
        
        .stat-number {
            font-size: 1.7rem;
        }
        
        }
  