  /* Basic styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

section {
  clear: both;
  margin-top:20px !important;
  margin-bottom: 20px;
}

h1 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

h3 {}
h4 { font-size: 26px;
font-weight: 700;
color: #ff0000;}

h5{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    color: #0E1786;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

h6{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #0613B8;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.pagelayout {
  width: 100%;
  clear: both;
}
.section90 {
width: 90%;
margin: auto;
}


p {
    font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 16px;
}


/*GENERAL END */

    /* ================= NAVBAR ================= */
    header {
      width: 100%;
      background:#FF6516;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 1px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      color: #1d4ed8;
      width: 295px;
      height: 120px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #222;
      font-weight: 600;
      transition: 0.3s;
      position: relative;
    }

    .nav-links li a::after {
      content: "";
      width: 0%;
      height: 3px;
      background: #1d4ed8;
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: 0.3s;
      border-radius: 10px;
    }

    .nav-links li a:hover::after {
      width: 100%;
    }

    .nav-links li a:hover {
      color: #1d4ed8;
    }

    .menu-icon {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #1d4ed8;
    }

    /* Mobile Menu */
    @media (max-width: 768px) {
      .menu-icon {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 18px;
        display: none;
        box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
      }

      .nav-links.active {
        display: flex;
      }
    }

    /* ================= SLIDER ================= */
   
.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height:fit-content;
  object-fit: cover;
}

/* Text Overlay */
.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%) scale(0.8);
  color: white;
  max-width: 500px;
  opacity: 0;
  transition: all 0.8s ease;
}

.slide.active .content {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.content p {
  font-size: 18px;
  line-height: 1.5;
}

/* Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
  .content h1 {
    font-size: 24px;
  }
  .content p {
    font-size: 14px;
  }
  .slider {
    height: 60vh;
  }
}

    /* ================= ABOUT SECTION ================= */
    .about-section {
      max-width: 1200px;
      margin: auto;
      padding: 70px 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .about-text h2 {
      font-size: 36px;
      margin-bottom: 15px;
      color: #1d4ed8;
    }

    .about-text p {
      font-size: 17px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 20px;
    }

    .about-text button {
      padding: 12px 20px;
      border: none;
      background: #1d4ed8;
      color: white;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .about-text button:hover {
      background: #0f2f99;
    }

    .about-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
    }

    @media(max-width: 768px) {
      .about-section {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    /* ================= SERVICES SECTION ================= */
    .services {
      background: #ffffff;
      padding: 70px 20px;
    }

    .services h2 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 15px;
      color: #1d4ed8;
    }

    .services p {
      text-align: center;
      font-size: 17px;
      color: #444;
      margin-bottom: 40px;
    }

    .services-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .service-card {
      background: #f4f6f9;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0px 5px 12px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    .service-card:hover {
      transform: translateY(-7px);
    }

    .service-card img {
      width: 100%;

      object-fit: cover;
    }

    .service-content {
      padding: 20px;
      text-align: center;
    }

    .service-content h3 {
      margin-bottom: 10px;
      color: #111;
      font-size: 20px;
    }

    .service-content p {
      font-size: 15px;
      color: #555;
    }

    @media(max-width: 992px) {
      .services-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 768px) {
      .services-container {
        grid-template-columns: 1fr;
      }
    }

    /* ================= FOOTER ================= */
    footer {
      background: #111;
      color: white;
      padding: 25px 20px;
      text-align: center;
      margin-top: 20px;
    }

    footer p {
      font-size: 14px;
      color: #ccc;
    }
 

.list-01 {
      margin: 0px 0px 16px 0xp;
      padding: 0px;
    }
.list-01 li {
  list-style:square;
  list-style-position: inside;
  line-height: 28px;
  font-size: 18px;
  color: #222;
}
.sidetitle-01 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #0f2f99;
}

.button-link {
    display: inline-block;
    padding: 12px 28px;
    background: #0066ff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button-link:hover {
    background: #0047b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.button-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: 0.5s;
}

.button-link:hover::before {
    left: 100%;
}



/*WhatsAPP*/

/*in PAGE WHATAPP CODE START*/

.whatsapp-call-now {
    width: 300px; 
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 44% 44%;
    gap: 4;
    text-align: center !important;
}


.whatsapp-call-now .wc-left {
  padding: 8px;
  }
.whatsapp-call-now .wc-right {
  padding: 8px;
}
.whatsapp-call-now a  {
   font-size: 16px;
  font-weight: 400;
}
/*in PAGE WHATAPP CODE END*/




/*SIDE  WHATSAPP and CALL CODE START */
@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%;} 
  
}


 /*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: 62px;
    height: 62px;
    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:60px; right:20px; 
        width:62px; height:62px; 
        float:right; }
      .web-whatapp-chat-bottom img { width:100%;} 
      
  }
  









    /*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;
}



/*in PAGE WHATAPP CODE START*/

.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;
}
/*in PAGE WHATAPP CODE END*/




/*SIDE  WHATSAPP and CALL CODE START */
@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%;} 
  
}


 /*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: 62px;
    height: 62px;
    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:60px; right:20px; 
        width:62px; height:62px; 
        float:right; }
      .web-whatapp-chat-bottom img { width:100%;} 
      
  }
  



   .contact {
    width: 100%;
   }

   