    /* TABLE OF CONTENTS */
    /* ------------------
    1. General
    2. Navbar
    3. Banner
    4. Services
    5. Blog 
    6. Contact
    7. Footer
    -------------------- */



    /* 1 General */
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        /* Background Color */
        --secondary-color: #f77949;
        --bg-blue: #37418e;
        --bg-white: #fff;
        --bg-dark-blue: #292b70;
        --bg-gray:#ecf0f9;

        /* Text Color */
        --text-black: #1f1f1f;
        --text-blue: #1f294c;
        --text-gray: #6d6e7b;
        --text-white: #fff;

        /* Fonts */
        --primary-font: 'Open Sans Condensed', sans-serif;
        --secondary-font: 'open sans', sans-serif;
    }

    body {
        font-family: var(--secondary-font);
        background-size: cover;
        background-position: center 0px;
        background-repeat: no-repeat;
        background-attachment: initial;
        overflow-x: hidden;
    }

    /* 1 Custom CSS */ 

    ::-webkit-scrollbar {
        width: 10px;
    } 
    ::-webkit-scrollbar-track {
        background: var(--bg-gray); 
    } 
    ::-webkit-scrollbar-thumb {
        background:var(--secondary-color); 
    }   
    section{
        padding:50px 0;
    }
    .main-btn{
        display:inline-block;
        border-radius: 26px;
        transition:.2s;
        padding:10px 37px;
        background-color:var(--secondary-color);
        color:var(--text-white);
        font-weight: 700;
        font-family: var(--primary-font);
        font-size: 17px;
        text-decoration: none;
        box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    }
    .main-btn:hover{
        background-color:var(--bg-blue);
        color:var(--text-white);
    }
    h1{
        font-size: 70px;
        font-family: var(--primary-font);
        font-weight: 700;
        color:var(--text-blue);
        margin-bottom:16px;
    }
    h2{
        font-size: 45px;
        line-height: 64px;
        font-family: var(--primary-font);
        font-weight: 700;
        color:var(--text-blue);
        margin-bottom:15px;
        letter-spacing: 0;
    }
    h3{
        font-size: 30px;
        font-family: var(--primary-font);
        font-weight: 700;
        color:var(--text-blue);
        margin-bottom:15px;
        letter-spacing: 0;
    }
    p{
        color:var(--text-gray);
        font-size: 15px;
        line-height: 28px;
        font-style: normal;
        font-weight: 400;
    }
    input:hover,
    input:focus,
    textarea:focus,
    textarea:hover,
    button{
        border-color:var(--secondary-color) !important;
        outline:none !important;
        box-shadow: none !important;
    } 

    /* 2 Navbar */
    
    .header{
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding: 20px 80px;
      background: #001447;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
      z-index: 999;
      position: sticky;
      top: 0;
      left: 0;
  }

  .header h1{
    color: #fff;
  }
  
  .navbar{
      display: flex;
      align-items: center;
      justify-content: center;
  
  }
  
  .navbar li{
      list-style: none;
      padding: 0 30px;
      position: relative;
  }
  
  .navbar li a{
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      transition: 0.3s ease;
  }
  
  .navbar li a:hover,
  .navbar li a.active{
      color: 	#ffff80;
  }
  
  .navbar li a.active::after,
  .navbar li a:hover::after{
      content: "";
      width: 30%;
      height: 2px;
      background: 	#ffff80;
      position: absolute;
      bottom: -4px;
      left: 30px;
  }
  
  .mobile{
      display: none;
      align-items: center;
  }
  
  .close{
      display: none;
  }
    
    /* team */
      .carousel .carousel-item img{
        height: 92vh;
      }
      /* Aboout Sarvatra */
      .heading_start h1{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10rem;
        color: #B59410;
      }
      .about_wrapper h2{
        font-size: 35px;
        color: #B59410;
      }
      .banner_wrapper h2{
        font-size: 35px;
        color: #B59410;
      }
     /* About */

     .slide-container{
        max-width: 1120px;
        width: 100%;
        padding: 40px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .slide-content{
        margin: 0 40px;
        overflow: hidden;
        border-radius: 25px;
      }
      .card{
        border-radius: 25px;
        background-color: #FFF;
      }
      .image-content,
      .card-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 14px;
      }
      .image-content{
        position: relative;
        row-gap: 5px;
        padding: 25px 0;
      }
      .overlay{
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #001447;
        border-radius: 25px 25px 0 25px;
      }
      .overlay::before,
      .overlay::after{
        content: '';
        position: absolute;
        right: 0;
        bottom: -40px;
        height: 40px;
        width: 40px;
        background-color: #001447;
      }
      .overlay::after{
        border-radius: 0 25px 0 0;
        background-color: #FFF;
      }
      .card-image{
        position: relative;
        height: 150px;
        width: 150px;
        border-radius: 50%;
        background: #FFF;
        padding: 3px;
      }
      .card-image .card-img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #4070F4;
      }
      .name{
        font-size: 35px;
        font-weight: 700;
        color: #333;
      }
      .description{
        font-size: 17px;
        color: #001447;
        text-align: center;
      }
      .button{
        border: none;
        font-size: 16px;
        color: #FFF;
        padding: 8px 16px;
        background-color: #4070F4;
        border-radius: 6px;
        margin: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      .button:hover{
        background: #265DF2;
      }
      .swiper-navBtn{
        color: #6E93f7;
        transition: color 0.3s ease;
      }
      .swiper-navBtn:hover{
        color: #4070F4;
      }
      .swiper-navBtn::before,
      .swiper-navBtn::after{
        font-size: 35px;
      }
      .swiper-button-next{
        right: 0;
      }
      .swiper-button-prev{
        left: 0;
      }
      .swiper-pagination-bullet{
        background-color: #6E93f7;
        opacity: 1;
      }
      .swiper-pagination-bullet-active{
        background-color: #4070F4;
      }
    
      @media screen and (max-width: 768px) {
        .slide-content{
          margin: 0 10px;
        }
        .swiper-navBtn{
          display: none;
        }
      }
      .heading_start2 h1{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        color: #B59410;
      }
      .brochure_download{
        width: 100%;
        height: 5rem;
        background-color: #1f003b;
        margin-bottom: 5rem;
      }
      .brochure_download .main-btn{
        text-align: center;
        align-items: center;
        margin-left: 47%;
        margin-top: 1rem;
      }
      .brochure_download .main-btn i{
        margin-left: 10px;
      }
    <!--Responsive Design-->
  
    @media (max-width:991px) {

        /* custom css */
        section{
            padding:20px 0;
        }
        h1{
            font-size: 50px;
        }
        h2{
            font-size: 30px;
            line-height: 40px;
        }
        h3{
            font-size: 20px;
        } 

        /* 2 Navbar */


        /* blog */
        .blog_wrapper .newsletter{
            width:100%;
        }
    }

    @media (max-width: 767px) {

        /* custom css */
        h1{
            font-size: 30px;
        }
        h3{
            font-size: 22px;
        }
        p{
            font-size: 13px;
        }
        .main-btn{
            font-size: 13px;
        }
        
    }
    @media(max-width: 600px){
      
    
  }

    /* insights */
    .containers{
        position: relative;
        min-height: 100vh;
        background: #fff;
        padding-top: 10%;
    }
    
    .containers h1{
        color: #3552e6;
        text-align: center;
        padding: 15px;
        font-size: 40px;
        font-weight: normal;
    
    }
    
    .containers .video-containers{
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding: 10px;
    }
    
    .containers .video-containers .video{
        height: 250px;
        width: 350px;
        border: 5px solid #706e6e;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0,0,0,.7);
        cursor: pointer;
        overflow: hidden;
    }
    
    .containers .video-containers .video video{
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: .2s linear;
    }
    
    .containers .video-containers .video:hover video{
        transform: scale(1.1);
    }
    
    .containers .popup-videos{
        position: fixed;
        top:0;
        left: 0;
        z-index: 100;
        background: rgba(0,0,0,.8);
        height: 100%;
        width: 100%;
        display: none;
    }
    .containers .popup-videos video{
        position:absolute;
        top: 50%;
        left: 50%;
        transform: translate(-60%, -40%);
        width: 750px;
        border-radius: 5px;
        border: 3px solid #fff;
        object-fit: cover;
    }
    
    .containers .popup-videos span{
        position: absolute;
        top: 5px;
        right: 20px;
        font-size: 50px;
        color: #fff;
        font-weight: bolder;
        z-index: 100;
        cursor: pointer ;
        margin-top: 8%;
    }
    
    @media(max-width:768px){
        .containers .popup-videos video{
            width: 95%;
        }
    }

    /*gallery*/
    .intro { 
        text-align: center; 
        font-family: Arial;
      }
      
      h2 { 
        font-size: 36px;
      }
      
      p { 
        font-size: 14pt;
      }
      
      #image-gallery { 
        max-width: 600px; 
        margin: 0 auto;
      }
      
      #current-image { 
        width: 100%;
      } 
      
      #image-thumbs { 
        display: flex; 
        justify-content: center; 
        margin-top: 20px;
      }
      
      .thumb { 
        width: 80px; 
        height: 80px; 
        object-fit: cover; 
        margin-right: 10px; 
        cursor: pointer;
      }



      /*aboutuspage*/
.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;

}
.heading h1{
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    margin-top: 10%;
}

.heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height:4px ;
    display: block;
    margin: 0 auto;
    background-color: #4caf50;
}

.headingRead{
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 20px auto;

}
.headingRead h1{
  font-size: 50px;
  color: #B59410;
  margin-bottom: 25px;
  position: relative;
  margin-top: 10%;
}

.headingRead h1::after{
  content: "";
  position: absolute;
  width: 100%;
  height:4px ;
  display: block;
  margin: 0 auto;
}
.headingRead p{
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    margin-top: 5px;
}

.containerabout{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;

}

.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}
.about-image img{
    max-width: 100%;
    height: auto;
    display:block;
    transition: 0.5s ease;

}
.about-image:hover img{
    transform: scale(1.2);
}
.about-content{
    flex: 1;
}
.about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color:#666;
}
.about-content p{
    font-size: 18px;
    line-height: 1.5;
    color:#666;
}
.about-content .read-more{
    display: inline-block;
    padding: 10px 20px;
    color:#fff;
    font-size:19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top:15px;
    transition: 0.3s ease;
}
.about-content .read-more:hover{
    background-color: #3e8e41;

}

@media screen and(max-width: 768px){
    .heading{
        padding: 0px 20px;
    }
    .heading h1{
        font-size: 36px;
    }
    .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .containerabout{
        padding: 0px;
    }
    .about{
        padding: 20px;
        flex-direction: column;
    }
    .about-image{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about-content p{
        padding: 0px;
        font-size: 16px;

    }
    .about-content .read-more{
        font-size: 16px;
    }
}
    /*contact*/
    /* General styling */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  p {
    margin-bottom: 10px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    padding: 10px 20px;
    background-color: #f77949;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #555;
  }
  
  /* Contact section styling */
  
  .contact {
    background-color: #fff;
    padding: 40px 0;
  }
  
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  
  .contact-details {
    flex: 1;
    margin-right: 40px;
    margin-left: 5%;
  }
  
  .contact-form {
    flex: 1;
    margin-right: 2%;
  }
  
  .contact-form input,
  .contact-form textarea {
    resize: vertical;
    min-height: 50px;
  }
  
  /* Footer styling */
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
  }
  
  
  /*footer*/
  /* Include the Font Awesome CSS for the icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

/* Rest of the CSS code remains the same */
.footer {
  background-color: #001447;
  padding: 40px 0;
  text-align: justify;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  margin: 1rem;
  text-align: left;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #f77949;
}

.footer-column p {
  margin-bottom: 10px;
  color: #e5e6eb;
  font-size: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #e5e6eb;
}

.footer-column ul li {
  margin-bottom: 5px;
  color: #e5e6eb;
}

.footer-column ul li a {
  color: #e5e6eb;
  text-decoration: none;
}

.footer-bottom {
  background-color: #001447;
  padding: 10px 0;
  text-align: center;
}

.social-media-icons {
  margin-top: 20px;
}

.social-media-icons a {
  color: #a3b7e9;
  font-size: 20px;
  margin-right: 10px;
  text-decoration: none;
}
@media(max-width: 600px){
  .header{
    padding-block: 15px;
    padding-left: 2px;
}
.header a h1{
  font-size: 1.5rem;
  padding-top: 9px;
}
 
.navbar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -100vw;
    height: 50vh;
    width: 100vw;
    background-color: #001447;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
}

.navbar a{
  color: #ffff;
}
.navbar.active{
    right: 0px;
}


.navbar li{
    margin-bottom: 25px;
}

.mobile{
    display: flex;
    align-items: center;
}

.mobile i{
    color: #ffff;
    font-size: 24px;
    padding-left: 20px ;
}

.close{
    display: initial;
    position: absolute;
    top: 30px;
    left: 38px;
    color: #222;
    font-size: 24px;
}

.carousel .carousel-item img{
  height: 70vh;
}

.heading_start h1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner_wrapper p{
    font-size: 15px;
    display: flexbox;
    flex-direction: column;
}
.about_wrapper p{
    font-size: 15px;
    display: flexbox;
    flex-direction: column;
}
.Brochure_download .main-btn{
  text-align: center;
  align-items: center;
  margin-left: 30%;
  margin-top: 1rem;
}
  .footer-column p {
    font-size: 11px;
  }
}
 .gallery{
  background: #fff;
  margin-top: 20px;
}
.img-gallery{
  width: 80%;
  margin: 100px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  grid-column-gap:20px ;

}
.img-gallery img{
  width: 90%;
  cursor: pointer;
  object-fit:contain;
  height: 90%;

}    
.img-gallery img:hover{
  transform: scale(0.8 )rotate(-15deg);
  border-radius: 25px;
  box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
}
.full-img{
  width: 80%;
  height: 80vh;
  background: rgba(239, 238, 238, 0.952);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  margin-top: 8%;
  align-items: center;
  margin-left: 8%;
  margin-right: 10%;
  justify-content: center;
  margin-bottom: 8%;
  z-index: 100;
}
.full-img img{
  width: 50%;
  max-width: 330px;
}
.full-img span{
  position:absolute;
  top: 20%;
  right: 10%;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
@media(max-width:768px){
  .containers .full-img img{
      width: 95%;
  }
}
