      /* TABLE OF CONTENTS */
      /* ------------------
1. General
2. Navbar
3. Banner
4. About
5. Services
6. Portfolio
7. Blog
8. Contact
9. Footer
-------------------- */
@import 'animate.css';
      /* 1 General */
      @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
      @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


      * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
      color: #ffffff;
          
      }

      :root {
          /* Background Color */
          --primary-color: #4458dc;
          --secondary-color: #854fee;
          --bg-white: #fff;
          --bg-light: #faf8ff;
          --bg-black: #000;
          --bg-gray: #eee;
          --gradient: linear-gradient(to right, #4458dc 0%, #854fee 100%), radial-gradient(circle at top left, #4458dc, #854fee);

          /* Text Color */
          --primary-text: #4458dc;
          --secondary-text: #854fee;
          --text-white: #fff;
          --text-black: #000;
          --text-gray: #777;

          /* Font Family */
          --primary-font: 'Rubik', sans-serif;
          --secondary-font: 'Roboto', sans-serif;
      }

      body {
          font-family: var(--secondary-font);
          width: 100%;
          /* background-image: url('../img/images/body-bg.png.webp'); */
          /* background-repeat: no-repeat; */
          /* background: linear-gradient(to bottom, #561901, #450101); */
          background: url("/image/bg.jpg") no-repeat
          center center/cover;
          
      }

      a {
          text-decoration: none;
      }

      /* 1 Custom CSS */

      ::-webkit-scrollbar {
          width: 0.50rem;
          
      }

      ::-webkit-scrollbar-track {
          background: #561901;
          
      }

      ::-webkit-scrollbar-thumb {
          /* background: var(--primary-color); */
          background: #8f2a02;


      }

      section {
          padding: 5rem 0;
      }


      .main-btn {
          display: inline-block;
          font-family: var(--primary-font);
          font-weight: 500;
          font-size: 0.875rem;
          line-height: 2.875rem;
          text-align: center;
          cursor: pointer;
          text-transform: uppercase;
          border-radius: 0.3125rem;
          box-shadow: 0 0.625rem 1.875rem rgb(118 85 225 / 30%);
          border: double 0.125rem transparent;
          padding: 0 2.0625rem;
          transition: all .3s ease-in-out;
          --webkit-transition: all .3s ease-in-out;
      }

      .primary-btn {
        background-image: linear-gradient(to right,#FD870A,#FE5E01);
          
          color: var(--text-white);
      }

      .primary-btn:hover {
          border-color: var(--secondary-color);
          background: var(--bg-white);
          color: var(--secondary-text);
          box-shadow: none;
      }

      .secondary-btn  {
          background-image: var(--bg-white);
          color: var(--secondary-text);
          border-color: var(--secondary-color);
      }

      .secondary-btn:hover {
          background: var(--gradient);
          color: var(--text-white);
          box-shadow: none;

      }

      h1 {
          font-size: 4.375rem;
          line-height: 4.75rem;
          font-weight: 700;
          color: var(--text-black);
          margin-bottom: 1.25rem;
          font-family: var(--primary-font);
      }

      h2 {
          font-weight: 500;
          font-size: 2.5rem;
          line-height: 3.4375rem;
          margin-bottom: 1.5625rem;
          color: var(--text-black);
          font-family: var(--primary-font);
      }

      h3 {
          font-weight: 700;
          font-size: 2.25rem;
          line-height: 3.125rem;
          margin-bottom: 0.9375rem;
          color: var(--text-black);
          font-family: var(--primary-font);
          text-transform: uppercase;
      }

      h5 {
          font-weight: 500;
          font-size: 1.5rem;
          margin-bottom: 1.1875rem;
          color: var(--text-black);
          align-items: center;
          text-align: center;
      }

      h6{
        font-weight: 500;
        font-size: 1.5rem;
        color: var(--primary-color);
      }
      /* p {
          color: var(--text-gray);
          font-size: 0.9375rem;
          line-height: 1.625rem;
          font-weight: 400;
      } */

 /* Navbar */
 .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
  /* background: url("/image/bg.jpg") no-repeat
          center center/cover; */
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.4s ease;
}

.navbar-brand img {
  height:60px;
  margin-left: 40px;
  transition: height 0.3s ease;
  /* background-color: #561901; */
}

.sidebar-toggler {
  font-size: 24px;
  background: none;
  border: 1px solid black;
  color: #f94903;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  right: 40px;
  top: 15px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  
}

/* .sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  
  background: #561901;

  transition: right 0.4s ease-in-out;
  z-index: 1001;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar.show {
  right: 0;
}



.sidebar-nav {
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: center;
}

.sidebar-nav li {
  margin: 20px 0;
  position: relative;
}

.sidebar-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  display: inline-block;
  width: 100%;
  transition: 0.3s;
}


.sidebar-nav a.active {
  color: #ff0000;
  font-weight: bold;
}

.sidebar-nav a.active::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background: #ff0000;
  margin: 5px auto;
  border-radius: 5px;
}

.sidebar-nav a:hover {
  color: #ff0000;
} */

      /* banner section  */
      #banner{
        
        background: url("/image/bg.jpg") no-repeat
        center center/cover;
        color: white;
        text-align: center;;
      }
      .hero-section {
        padding: 80px 20px 40px 20px;
    }
      .attention {
          color: #ffffff;
          font-weight:bold;
          letter-spacing: 1px;
          font-size: 18px !important;
      }
      .hero-heading {
          font-size: 2.5rem;
          font-weight: bold;
          color: white;
          line-height: 1.5em;
      }
      .highlight {
          color: #ff3700;
          /* font-style: italic; */
          font-size: 58px !important;
          /* color: #70ff5f; */
          font-weight: bold;
          
      }
     .p-1{
     
      letter-spacing: 1.5px;
      
     }
      .watch-btn {
          background: #ff2200;
          padding: 10px 20px;
          border-radius: 5px;
          font-weight: bold;
          display: inline-block;
          margin: 20px 0;
          text-decoration: none;
          color: white;
          letter-spacing: 1.2px;
      }
     
      .video-container {
        max-width: 750px;
        margin: auto;
        position: relative;
        height: 430px; /* Fixed height for better proportions */
    }
    .video-container video {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover; /* Ensures proper video display */
    }
      /* .call-btn {
          background: none;
          border: 2px solid #a3ff60;
          padding: 10px 25px;
          border-radius: 30px;
          color: #a3ff60;
          font-weight: bold;
          text-decoration: none;
          display: inline-block;
          margin-top: 20px;
      }
      .call-btn:hover {
          background: #a3ff60;
          color: black;
      } */

      
    .newsletter {
        width: 100%;
        height: 100%;
        /* background-image: linear-gradient(to right,#FD870A,#FE5E01); */
        background: #561901;
       
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 9.375rem 0;
        z-index: 0;
    }

   
    /* footer */
    .footer_wrapper{
      background:#561901;
    }
    .footer_wrapper .footer-logo img {
        max-width: 15.5rem;
        height: auto;
        
    }

    .footer_wrapper .social-icon li {
        margin: 0.375rem;
    }

    .footer_wrapper .social-icons  a {
        line-height: 1.875rem;
        font-size: 1.5625rem;
        display: inline-block;
        /* color: var(--primary-color); */
        text-align: center;
        margin: 0 0.625rem;
    }

    .footer_wrapper .social-icons a:hover {
        color: var(--color);
    }

    .footer_wrapper .copyright-text p {
        font-size: 0.6875rem;
        line-height: 1.25rem;
        font-weight: 600;
    }

    .footer_wrapper .footer-text a {
        color: var(--primary-color);
    }
    .get {
        --color: #560bad;
        font-family: inherit;
        display: inline-block;
        /* width: 8em; */
        /* height: 2.6em; */
        line-height: 2.5em;
        margin: 20px;
        position: relative;
        overflow: hidden;
        border: 2px solid var(--color);
        transition: color .5s;
        z-index: 1;
        font-size: 17px;
        border-radius: 6px;
        font-weight: 500;
        color: var(--color);
       }
       
       .get:before {
        content: "";
        position: absolute;
        z-index: -1;
        background: var(--color);
        height: 150px;
        width: 400px;
        border-radius: 50%;
       }
       
       .get:hover {
        color: #fff;
       }
       
       .get:before {
        top: 100%;
        left: 100%;
        transition: all .7s;
       }
       
       .get:hover:before {
        top: -30px;
        left: -30px;
       }
       
       .get:active:before {
        background: #3a0ca3;
        transition: background 0s;
       }
       /* services section  */
  
       /* .services_wrapper  {
        background: url("/image/bg.jpg") no-repeat
          center center/cover;

    }

   .portfolio_wrapper{
    background: url("/image/bg.jpg") no-repeat
    center center/cover;
   } */
     /* 4 About */
     .portfolio_wrapper .nav-link {
        font-size: 0.9375rem;
        font-weight: 500;
        margin-right: 0.25rem;
        color: var(--text-black);
        text-transform: uppercase;
    }

    .portfolio_wrapper .nav-link.active {
        color: var(--secondary-text);
        background-color: transparent;
    }

    .portfolio_wrapper .portfolio-img {
        position: relative;
        cursor: pointer;
    }

    .portfolio_wrapper .portfolio-img .overlay {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        -webkit-transition: all .4s ease 0s;
        -moz-transition: all .4s ease 0s;
        -o-transition: all .4s ease 0s;
        transition: all .4s ease 0s;
    }

    .portfolio_wrapper .portfolio-img:hover .overlay {
        background: rgba(77, 87, 222, .5);
    }

    .portfolio-img .overlay i {
        font-size: 6.25rem;
        color: var(--text-white);
        position: absolute;
        top: 25%;
        left: 25%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .4s ease 0s;
        -moz-transition: all .4s ease 0s;
        -o-transition: all .4s ease 0s;
        transition: all .4s ease 0s;
    }

    .portfolio_wrapper .portfolio-img:hover i {
        opacity: 1;
        visibility: visible;
        top: 50%;
        left: 50%;
    }
        

   .services_video {
        width: 100%;
        height: auto;
      }
       
      .skill--bg{
        /* background: url("../image/skill-background.png") no-repeat; */
        background: #561901;
        background-size: cover;
        position: relative;
        z-index: 0;
        
        /* margin-top: 100px; */
      }
      
      .skill--bg:after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: #561901;

        z-index: -1;
      }
      
      .skill__container--narrow{
        max-width: 1245px;
        margin-right: auto;
        margin-left: auto;
      }
      
      .skill .thumbnail{
        padding: 10px 40px;
        border-radius: 10px;
        -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
      }
      
      .skill .thumbnail .progress-bar{
        border-radius: 10px;
      }
      
      .skill .thumbnail .progress{
       height: 15px;
       background-color: #E1E1E1;
      }
      
      .skill__single-part__title{
        font-size: 15px;
        color: #273f59;
        margin-bottom: 30px;
        margin-top: 5px;
        font-weight: bold;
      }
      
      .pricing-area {
        padding: 3% 0;
        text-align: center;
      }
      .single-pricing {
        background: #e10000;
        box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
        transition: all .5s ease;
      }
      .deal-type {
        background-image: linear-gradient(to right,#FD870A,#FE5E01);
        padding: 15px 0;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 2px;
        color: #fff;
      }
      .single-deal {
        padding: 15px 0;
        list-style: none;
      }
      .single-deal li {
        font-size: 18px;
        font-family: montserrat;
        padding: 10px 0;
      }
      .btn1 {
        background-image: linear-gradient(to right,#FD870A,#FE5E01);
        border: none;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 30px;
        padding: 10px 50px;
        color: #fff;
      }
      .btn1:hover{
        color: white;
      }

      .single-pricing:hover {
        transform: scale(1.05);
      }
      @media (max-width: 767px) {
        .single-pricing {
          margin-bottom: 30px;
        }
      }
      
      .testimonial-area {
        padding: 100px 0;
        /* background: url("/image/bg.jpg") no-repeat
        center center/cover; */
        /* background: url("/image/bg.jpg") no-repeat
        center center/cover; */
      }
      .section-header h4 {
        color: #f75023;
        font-weight: 600;
      }
      .section-header {
        padding-bottom: 15px;
      }
      .section-header h2 {
        font-weight: 700;
      }
      .section-header p {
        color: #6f6b80;
        width: 40%;
        margin: auto;
      }
      .icon-area {
        text-align: center;
      }
      .icon-area i {
        color: #f75023;
        font-size: 80px;
        margin-bottom: 20px;
      }
      .content p {
        color: #6f6b80;
        width: 60%;
        margin: auto;
      }
      .person {
        width: 100px;
        height: 100px;
        display: block;
        margin: auto;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid #f75023;
        margin-top: 50px;
      }
      .person img {
        width: 100%;
      }
      .content h5 {
        font-weight: 900;
        margin-top: 15px;
      }
      /* .testimonial-area {
        background: url("/image/bg.jpg") no-repeat
        center center/cover;
        background-size: cover;
        background-position: center;
      } */
      .carousel-indicators {
        bottom: -80px;

      }
      .carousel-indicators [data-bs-target] {
        width: 15px;
        height: 15px;
        background-color: #f75023;
        border-radius: 50%;
      }
      @media (min-width: 768px) and (max-width: 991px) {
        .section-header p {
          width: 85%;
        }
        .content p {
          width: 95%;
        }
      }
      @media (max-width: 767px) {
        .testimonial-area {
          padding: 70px 0;
        }
        .section-header p {
          width: 95%;
        }
        .content p {
          width: 100%;
        }
        .icon-area i {
          font-size: 50px;
        }
      }
      /* .top-top{
        background-color: orange;
        position: fixed;
        bottom: 16px;
        right: 32px;
        width: 50px;
        height: 50px;
        border-radius:50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1f1f1f;
        text-decoration: none;
        opacity: 0;
        pointer-events: none;
        transition: all .4s;
      }
      .to-top:active{
        bottom: 32px;
        pointer-events: auto;
        opacity: 1;
      } */
     /* Back to Top Button */
/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: scale(0.8);
}

/* Arrow styling */
#backToTop .arrow {
  color: white;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
}

/* Progress Circle */
#backToTop svg {
  position: absolute;
  width: 50px;
  height: 50px;
  transform: rotate(-90deg);
  /* Rotate for progress from top */
}

/* Initially hidden */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Smooth hover effect */
#backToTop:hover {
  background-color: #ff0000;
}

/* Responsive */
@media (max-width: 600px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
  }
}

   
    #popup {
      background-color: rgb(25, 25, 25);
      position: fixed;
      left: 0;
      top: 0;
      z-index: 1000;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 500ms all;
      -webkit-transition: 500ms all;
      -moz-transition: 500ms all;
      -ms-transition: 500ms all;
      -o-transition: 500ms all;
    }
    #popup:target {
      opacity: 1;
      visibility: visible;
    }
    
    .popup {
      width: 75%;
      height: auto;
      overflow: hidden;
      transform: scale(0.6);
      -webkit-transform: scale(0.6);
      -moz-transform: scale(0.6);
      -ms-transform: scale(0.6);
      -o-transform: scale(0.6);
      transition: 500ms all;
      -webkit-transition: 500ms all;
      -moz-transition: 500ms all;
      -ms-transition: 500ms all;
      -o-transition: 500ms all;
      position: relative;
    }
    .popup-video {
      margin-top: 50px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    #popup:target .popup {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
    }
    
 
    .popup-close {
      position: absolute;
      color: #ff0000;
      left: 90%;
      top: 15%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
    }
    .popup-close i {
      color: rgba(221, 255, 0, 0.804);
      font-size: 50px;
      transition: all 0.5s ease;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
    }
    .popup-close a i:hover {
      color: white;
      font-size: 70px;
    }
    .play-btn3 {
      display: inline-block;
      text-decoration: none;
      color: #000; /* Change the color to your preference */
      /* font-size: 14px;  */
    }
    .play-btn3 i{
      font-size: 35px;
      /* color: #000; */
    }
    .play-btn3 span{
      font-size: 26px !important;
    }
    
    @keyframes glow {
      0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.9); /* Adjust the glow color and intensity */
      }
      50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
      }
      100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
      }
    }
    
    .play-btn3.glowing {
      animation: glow 3s infinite;
    }


    .preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:  #561901;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }
  
  .preloader img {
      width: 350px; /* Set the width of your preloader image */
      height: auto;
  }
  
  .main-content {
      display: none; /* Hide the main content by default */
  }
  #about{
    background: url("/image/bg.jpg") no-repeat
        center center/cover;
  }




  .clients-section {
    padding: 15px 0px 0px 0px;
    background: #561901;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    
}

.marquee {
  
    display: inline-block;
    animation: marquee 20s linear infinite;
    padding: 20px 0;
}

.marquee img {
 
    height: 150px;
    margin: 0 40px;
   
    opacity: 0.7;
    transition: all 0.3s ease;
}

.marquee img:hover {
    
    opacity: 9999;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .marquee img {
        height: 50px;
        margin: 0 30px;
    }
}

@media (max-width: 576px) {
    .clients-section {
        padding: 40px 0;
    }
    
    .marquee img {
        height: 40px;
        margin: 0 20px;
    }
    
    .marquee {
        animation-duration: 15s;
    }
    .email-link{
      font-size: 10px;
      margin-top: 40px;
    }
}



.email-link{
  color: white;
}
.email-link:hover{
  color: white;
}
.email-link i{
  color: #f54c09;
}


.founder-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #2c3e50;
  text-transform: uppercase;
}

.founder-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.founder-image {
  flex: 0 0 40%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-info {
  flex: 1;
}

.founder-info h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.founder-info p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.highlight-clients {
  font-weight: 600;
  color: #2c3e50;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid #2c3e50;
}

.cta-button:hover {
  background-color: transparent;
  color: #2c3e50;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .founder-content {
      flex-direction: column;
      gap: 30px;
  }
  
  .founder-image {
      flex: 0 0 auto;
      width: 80%;
      max-width: 400px;
  }
}

@media (max-width: 768px) {
  .founder-section {
      padding: 70px 0;
  }
  
  .section-header h2 {
      font-size: 2rem;
      letter-spacing: 3px;
  }
  
  .founder-info h3 {
      font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
      font-size: 1.6rem;
      letter-spacing: 2px;
  }
  
  .founder-image {
      width: 100%;
  }
  
  .cta-button {
      padding: 12px 25px;
      font-size: 0.9rem;
  }
}
