 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: Arial, sans-serif;
        overflow-x: hidden;
    }

    .pagelayout {
      width: 100%;
    }

    .pagelayout-in {
      width: 94%;
      margin: auto;
      padding: 10px;
    }
    .width90 {
      width: 90%;
      margin: auto;
      border: solid 1px #e7e7e7;
      padding: 2%;
    }


      .width80 {
      width: 80%;
      margin: auto;
      border: solid 1px #e7e7e7;
    }


    .page-title {
      width: 100%;
      clear: both;
      background: #075317;
      color: #fff;
      padding: 40px;
      text-align: center;
      font-size: 30px;
      font-weight: 700;
    }

 .top {
  width: 100%;
  background-color:#A7FFA4 ;
  color:#333;
  padding: 4px 0px;
  font-size: 14px;
  font-weight: 300;
 }   
 .top .top-in {
width: 94%;
margin: auto;

 }

 

.header_top {
    width: 100%;
    background: #e7e7e7;
    color: #333;
    font-size: 12px;  
    font-weight: 300;
   display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 6px;
    padding: 4px 2%;

}
 @media (max-width: 768px){
    .header_top {
     /* grid-template-columns: 1fr;*/
     grid-template-rows: auto;
      grid-template-columns: 40% 58%;
    }

     .header_top .top_right ul li {
      font-size: 12px; 
    margin:0px 4px;
  }

    .header_top .top_left {
text-align: left;
font-size: 12px;
  }
  }



  .header_top .top_left {
text-align: left;
font-size: 14px;
  }
    .header_top .top_right {
    text-align: right;
  }
  .header_top .top_right ul {
    width: 100%;
  }
  
  .header_top .top_right ul li {
    list-style: none;
    display:inline-flex;
    margin:0px 6px;
  }

  .header_top .top_right ul a {
    text-decoration: none;
  }
    .header_top .top_right ul a:hover {
    color: #ff0000;
  }


/*NAV CODE START*/
nav{
  
  z-index: 9999999999;
  width: 100%;
  top:0;
  
  background: #fff;
  color: #333;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 60px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999999;
}
.wrapper .logo a{
  color: #333;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .logo img{
  height: 70px;
  padding-top: 20px;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #333;
  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: #f2f2f2;
}
.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: 60px;
  opacity: 0;
  visibility: hidden;
}
.mega-box1{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 60px;
  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: #333;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.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 CODE END*/



/*SLIDE CODE START*/


    .slider {
      width: 100%;
      height: auto;
      overflow: hidden;
      position: relative;
    }

    .slides {
      display: flex;
      width: 400%;
      height: auto;
      animation: slideAnimation 16s infinite;
    }

    .slide {
      width: 100vw;
      height: auto;
      flex-shrink: 0;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center;
      display: block;
      animation: imageZoom 4s ease-in-out;
    }

    .slide-text {
      position: absolute;
      height: fit-content;
      top: 30%;
      left: 5%;
      background-color: rgba(13, 93, 13, 0.4);
      padding: 20px;
      border-radius: 10px;
      animation: textFade 4s ease-in-out;
    }

    .slide-text h3 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #fff;
    }

    .slide-text p {
      font-size: 1rem;
      color: #fff;
    }

    /* Animations */
    @keyframes slideAnimation {
      0%, 20% { transform: translateX(0%); }
      25%, 45% { transform: translateX(-100vw); }
      50%, 70% { transform: translateX(-200vw); }
      75%, 95% { transform: translateX(-300vw); }
      100% { transform: translateX(0%); }
    }

    @keyframes textFade {
      0%, 100% { opacity: 0; transform: translateY(20px); }
      10%, 90% { opacity: 1; transform: translateY(0); }
    }

    @keyframes imageZoom {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @media (max-width: 768px) {
      
    .slide-text {
      position: absolute;
      top: 10%;
      left: 3%;
      padding-top: 8px;
      border-radius: 8px;
       background-color: rgba(0, 0, 0, 0.3);
         }

      .slide-text h3 {
        font-size: 1rem;
      }
      .slide-text p {
        font-size: 0.8rem;
        line-height: 18px;
      }
    }
    /*SLIDE CODE END */


    /*ABOUT US CSS START */
.page-wrapper {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    /* About Section */
    .about-section {
      max-width: 1100px;
      width: 100%;
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
    }

    .about-image {
      flex: 1 1 45%;
      min-width: 280px;
      position: relative;
      overflow: hidden;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.02);
      transition: transform 0.6s ease;
    }

    .about-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.25));
      mix-blend-mode: multiply;
      pointer-events: none;
    }

    .about-section:hover .about-image img {
      transform: scale(1.07);
    }

    .about-content {
      flex: 1 1 55%;
      min-width: 280px;
      padding: 20px 20px 20px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }
    
    
     .about-section p {
      font-size: 15px;
    color: #4b5563;
    line-height: 22px;
     }
   .about-section h2 {
      line-height: 36px;
      font-size: 26px;
     }
        .about-highlight {
      color: #2563eb;
      font-size: 22px;
    }


     .about-section h4 {
      margin-top: 10px;
      margin-bottom: 4px;
    font-size: 20px;
     }

    

    .about-content ul {
      margin: 0px;
    }
    .about-content ul li {
          font-size: 15px;
    color: #4b5563;
    line-height: 22px;
    list-style: disc;
    list-style-position: inside;
    }

    .about-badge {
      display: inline-flex;
      align-items: center;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 4px 10px;
      border-radius: 999px;
      background: #e0edff;
      color: #2563eb;
      font-weight: 600;
      width: fit-content;
    }

    .about-badge span {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #2563eb;
      margin-right: 6px;
    }

    .about-title {
      font-size: 28px;
      font-weight: 700;
      color: #111827;
    }

  
    .about-subtitle {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #6b7280;
    }

    .about-text {
      font-size: 15px;
      color: #4b5563;
      line-height: 22px;
    }

    .about-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 18px;
      margin-top: 6px;
      font-size: 14px;
    }

    .about-list-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .about-list-item-icon {
      margin-top: 4px;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid #10b981;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #047857;
      background: #ecfdf5;
      flex-shrink: 0;
    }

    .about-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 10px;
    }

    .metric {
      padding: 10px 14px;
      border-radius: 14px;
      background: #f3f4ff;
      min-width: 120px;
    }

    .metric-value {
      font-size: 18px;
      font-weight: 700;
      color: #111827;
    }

    .metric-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7280;
    }

    .about-footer {
      margin-top: 6px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      color: #6b7280;
    }

    .about-dot {
      width: 3px;
      height: 3px;
      border-radius: 999px;
      background: #9ca3af;
    }

    .about-cta {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 999px;
      background: #111827;
      color: #f9fafb;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      white-space: nowrap;
    }

    .about-cta span {
      font-size: 16px;
      transform: translateY(0.5px);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .about-section {
        flex-direction: column;
      }

      .about-image,
      .about-content {
        flex: 1 1 100%;
      }

      .about-content {
        padding: 24px 20px 22px;
      }

      .about-title {
        font-size: 24px;
      }
    }

    @media (max-width: 600px) {
      .about-list {
        grid-template-columns: 1fr;
      }

      .about-metrics {
        gap: 10px;
      }

      .metric {
        flex: 1 1 calc(50% - 10px);
      }

      .about-footer {
        flex-direction: column;
        align-items: flex-start;
      }

      .about-cta {
        margin-left: 0;
      }
    }

    @media (max-width: 420px) {
      .metric {
        min-width: 100%;
      }
    }
    /*ABOUT US CSS END*/



    /*SERVICE SECTION START*/
    .services-section {
    padding: 60px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #086F05;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 15px 0 10px;
    color: #068103;
}

.service-card p {
    font-size: 18px;
    padding: 0 15px 20px;
    color: #555;
    line-height: 28px;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}
 
    /*SERVICE SECTION END*/



    /*START*/
    
.parallax {
    background-image: url("../images/parallax.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding:100px 12%;
}
.parallax h1 {
    font-size:40px;
    font-weight:900;
    margin:4px 0px 10px 0px;
    color:#fff;
    text-align: center;
}
.parallax h2 {
    font-size:30px;
    font-weight:700;
    margin:10px 0px 10px 0px;
    color:#9CB9E8;
    line-height: 60px;
    text-align: center
}
.parallax ul {
    margin:20px auto;
    text-align: center;
}
.parallax ul li {
    list-style:none;
    display: inline-block;
  
}
.parallax ul a{
 
    margin:14px 10px 4px 10px;
    border:solid 1px #C8C6FE;
    border-radius: 30px;
    padding:15px 30px;
    color:#C8C6FE;
    font-size: 16px;
    font-weight: 600;

}
.parallax ul a:hover{
 
    color:#fff; 
    border:solid 1px #fff;
}



/*MEDIA QUERY START MIN 768  -------------------------------- */
.whatsapp-call-now {
  width: 360px;
  margin: 0px auto;
  display:grid;
  grid-template-rows: auto;
  grid-template-columns: 49% 49%;
  gap: 2%;
  text-align: center;
}
.whatsapp-call-now .wc-left {
  border: solid 1px #9CB9E8;
  padding: 10px;
  border-radius: 40px;
}
.whatsapp-call-now .wc-right {
  border: solid 1px #9CB9E8;
  padding: 10px;
  border-radius: 40px;
}
.whatsapp-call-now a  {
  text-align: center;
  color: #E2EDFE;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.whatsapp-call-now a:hover {
  color: yellow;
}  



@media (max-width: 600px) {
  
.parallax {
    padding:50px 8%;
}
.parallax h1 {
    font-size:30px;
    line-height: 38px;
    font-weight:600;
    margin:4px 0px 10px 0px;
    color:#fff;
    text-align: center;
}
.parallax h2 {
    font-size:24px;
    font-weight:500;
    margin:8px 0px 8px 0px;
    line-height: 40px; 
}
.parallax ul {
    margin:20px auto;
    text-align: center;
}
.parallax ul li {
    list-style:none;
    display: inline-block;
  
}
 
.whatsapp-call-now {
    width: 300px; 
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 44% 44%;
    gap: 4;
    text-align: center;
}


.whatsapp-call-now .wc-left {
  padding: 8px;
  }
.whatsapp-call-now .wc-right {
  padding: 8px;
}
.whatsapp-call-now a  {
   font-size: 16px;
  font-weight: 400;
}


}

/*END*/




@media screen and (max-width: 768px) {
  .api-whatapp-chat-bottom { display:inline !important; position:fixed;   z-index:999; bottom:8px; right:8px; width:40px; height:40px; float:right; }
  .api-whatapp-chat-bottom img { width:100%;}

  .api-whatapp-chat-bottom1 { display:inline !important;    z-index:999;    }
  .api-whatapp-chat-bottom1 img { width:100%;}
                           
  .web-whatapp-chat-bottom { display: none !important;}
  .web-whatapp-chat-bottom1 { display: none !important;}

  
    }
 


    

/*MEDIA QUERY START FROM MAX 769START  -------------------------------- */
     
@media screen and (min-width: 769px) {
   
  .api-whatapp-chat-bottom { display:none !important;}
  .api-whatapp-chat-bottom1 { display:none !important;}

  .web-whatapp-chat-bottom { display:inline !important; position:fixed;   z-index:999; bottom:20px; right:20px; width:60px; height:60px; float:right; }
  .web-whatapp-chat-bottom img { width:100%;} 

  .web-whatapp-chat-bottom1 { display:inline !important;     z-index:999;   }
  .web-whatapp-chat-bottom1 img { width:100%;} 
  
}



/*FOOTER START*/
 .footer_01  {
        width: 100%;
        clear: both;
        background-color: #f2f2f2;
    }
.footer_01 p {
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
}

.footer_01 h5 {
  font-size: 18px;
  line-height: 36px;
  font-weight: 600;
  color: #068103;
}
.footer_01 ul {
  margin: 0px;
}
.footer_01 ul li {
 
  list-style-type: square;
  color:#2563eb;
   list-style-position: inside;
  line-height: 36px;
  border-bottom: solid 1px #e7e7e7;
}
.footer_01 ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

    .footer_01 .footer01_in {

        display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
gap: 1rem; /* space between grid items */
align-items: start; /* useful when items differ in height */

padding: 1rem;
width: 94%;
margin: auto; 
}


/* RESPONSIVE BREAKPOINTS */
/* Tablet: 2 columns */
@media (max-width: 900px) {
.footer_01 .footer01_in { grid-template-columns: repeat(2, 1fr); }
}


/* Phone: 1 column */
@media (max-width: 560px) {
 
.footer_01 .footer01_in { grid-template-columns: 1fr; }
 }
 /*FOOTER END*/

 .footer-copyrights {
  background-color: #e7e7e7;
  padding: 20px 0px;
  text-align: center;
  width: 100%;
  clear: both;
  font-size: 16px;
  color: #333;
  border-top: solid 1px #bfbfbf;
  margin-bottom: -23px;
 }


 /*Call and WhatsApp Icons Code Start*/
 
    

    .call { display:inline !important; position:fixed;   z-index:999; bottom:80px; right:8px; width:50px; height:50px; float:right; }
    .call img { width:100%;}



    .api-whatapp-chat-bottom { display:inline !important; position:fixed;   z-index:999; bottom:20px; right:8px; width:50px; height:50px; float:right; }
    .api-whatapp-chat-bottom img { width:100%;}
                             
    .web-whatapp-chat-bottom { display: none !important;}
  
    
      
         
  
  /*MEDIA QUERY START FROM 1025 and MAX 1200 START  -------------------------------- */
         
  @media (min-width: 1201px) {
    
  .call {    position: fixed;
    z-index: 999;
    bottom: 157px;
    right: 20px;
    width: 72px;
    height: 72px;
    float: right; }
  .call img { width:100%;}
    
       
      .api-whatapp-chat-bottom { display:none !important;}
       .web-whatapp-chat-bottom { display:inline !important; position:fixed;   z-index:999; bottom:50px; right:20px; width:80px; height:80px; float:right; }
      .web-whatapp-chat-bottom img { width:100%;} 
      
  }
      
 /*Call and WhatsApp Code End */     
      


 /*More Details CSS Code Start*/
 
    details{
       
      padding:0.75rem 1rem 0.9rem;
    }
    summary{
      cursor:pointer;
      list-style:none;
    }
    summary::-webkit-details-marker{display:none;}
    /*More Details CSS CODE END */



    

.footer-07 { width:100%; background:#002874; border-top:solid 4px #001640; padding:30px 0px 15px 0px; color:#fff;  }
.footer-07 .f-title-07 { font-size:18px; font-weight:600; color:#FFFF00; margin-bottom:10px; }
.footer-07 ul { width:100%; padding:0px; margin:0px;}
.footer-07 ul li { list-style:none; color:#E9E8E8; display:inline;}
.footer-07 ul li i { font-size:12px;}
.footer-07 ul li strong { font-weight:500;}
.footer-07 ul li a { text-decoration:none; color:#E9E8E8; margin-left:0px;}
.footer-07 ul li a:hover {color:#ffea01;}
.footer-07 ul li a i { font-size:12px;}
.footer-07 p { color:#f2f2f2;}
.footer-07 .f7-border { width:80%; margin:0px auto; height:1px; background:#7CA9FD; }
.footer-07 .socialmedia { width:100%; margin-top:40px;}
.footer-07 .socialmedia li { list-style:none; margin:0px 20px; display:inline !important;}
.footer-07 .socialmedia li a i { text-decoration:none; font-size:35px;}
.footer-07 i { color:#fff;  font-size:14px;}


