  /* Basic styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

.title_color {
  color: #000CA6;
}
.footer_title {
  color: #ff0000;
}
.padding10 {
  padding: 10px;
}
.padding20 {
  padding: 20px;
}
.radius10 {
  border-radius: 10px;
}
.clear10 {
  clear: both;
  height: 20px;
}

.clear20 {
  clear: both;
  height: 20px;
}

.clear80 {
  clear: both;
  height: 80px;
}

h1 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  
  margin-bottom: 20px;
}
h3 {}
h4 {font-family: "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
 
  margin-bottom: 20px;}
h5 {}

h6 {
    padding: .35rem .65rem;
    font-size: .9rem;
}

.width90 {
width: 90%;
margin: auto;
}


p {
    font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.p_01 {
    font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}


/*GENERAL END */



nav{
  
  z-index: 9999999999;
  width: 100%;
  top:0;
  
  background: #0828A1;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 85px;
  line-height: 85px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999999;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}

.nav-links .mobile-item1{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 60px;
  opacity: 1;
  visibility: visible;
  z-index:9999999999;
}

.nav-links li:hover .mega-box1{
  transition: all 0.3s ease;
  top: 50px;
  opacity: 1;
  visibility: visible;
  z-index:9999999999;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box1{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #5107ae;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  padding-top: 32px;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  
  #showMegaOne:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaTwo:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaThree:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaFour:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaFive:checked ~ .mega-box{
    max-height: 100%;
  }
  #showMegaSix:checked ~ .mega-box{
    max-height: 100%;
  }

  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box1{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box1 .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box1 .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .mega-box1 .content .row:nth-child(1),
  .mega-box1 .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

/*NAV END*/



/*SLIDER START*/
  .slider {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: scale(1.1);
        transition: opacity 1s ease, transform 1.5s ease;
    }
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 1;
    }
    /* Text overlay */
    .text {
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        color: white;
        font-size: 2rem;
        font-weight: bold;
        background: rgba(0, 0, 0, 0.4);
        padding: 10px 20px;
        border-radius: 8px;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
    }
    .slide.active .text {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    /* Navigation Arrows */
    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 2rem;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
        border-radius: 50%;
    }
    .arrow:hover {
        background: rgba(0,0,0,0.8);
    }
    .prev {
        left: 20px;
    }
    .next {
        right: 20px;
    }
    /* Dots */
    .dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }
    .dot {
        width: 12px;
        height: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }
    .dot.active {
        background: white;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .text {
            font-size: 1.3rem;
            padding: 8px 12px;
        }


        
    
/* Phones (max-width: 480px) */
@media (max-width: 480px) {
     .slider {
        width: 100%;
max-height:200px;
        overflow: hidden;
    }
    .slide { 
      width: 100%;

    }
   .slide img {
        width: 100%;
        height:fit-content;
        object-fit: cover;
    }
        .arrow {
       
        top: 50%; 
    }

  }

   .text {
        position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        color: white;
        font-size: 1rem;
        font-weight: bold;
        background: rgba(0, 0, 0, 0.4);
        padding: 10px 20px;
        border-radius: 8px;
        opacity: 0;
        transition: opacity 1s ease, transform 1s ease;
    }
   

    .clear80 {
    clear: both;
    height: 40px;
}

h1 {
  font-size: 30px;
}
    }


    /*SLIDER END*/


    
 



.subtitle_01 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.4px;
  margin-bottom: 15px;
}
.subtitle_01::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 3px;
  background: #328cc1;
  margin-right: 10px;
  vertical-align: middle;
}


.btn_01 {
  position: relative;
  overflow: hidden;
  padding: 14px 30px;
  background: #328cc1;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}



.btn_01 {
  position: relative;
  overflow: hidden;
  padding: 14px 30px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn_01::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(250,240,405,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.btn_01:active::after {
  width: 200%;
  height: 200%;
  transition: width 0.4s ease, height 0.4s ease;
}




a {
  text-decoration: none;
}


.btn-animated {
  position: relative;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0b3c5d, #328cc1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-animated:active {
  transform: scale(0.96);
}

/* Ripple animation */
.btn-animated::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(250,240,40,0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.btn-animated:active::after {
  width: 250%;
  height: 250%;
  transition: width 0.45s ease, height 0.45s ease;
}




.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0b3c5d;
  text-align: center;
  margin-bottom: 10px;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #328cc1;
  margin: 12px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}


.list_footer {
  margin: 10px 0px 0px 0px;
  padding: 0px;
}
.list_footer li {
  list-style:square;
  list-style-position: inside;
  line-height: 40px;
}
.list_footer li a {
  text-decoration: none;
  color: #3A3B3C;
  font-size: 16px;
}
.list_footer li a:hover { 
  color: #ff0000; 
}

.copyrights {
  clear: both;
  margin: 0% auto;
  padding: 16px 0px;
  text-align: center;
  background: #030738;
  color: #e7e7e7;
  font-size: 14px;
}