* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Style */
header {
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1C456E;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
 
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  padding: 10px;

}

/* Navbar Styles */

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

header nav ul li {
  margin: 0;
 
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  /* Set font size for links */
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Logo Styles */
header nav ul li.full-width img {
  height: 40px;
  width: 120px;
}

.container-custom {
  position: relative;
  width: 100%;
  padding-top: 70px;
  max-width: 100%; /* Adjust width as needed */
}

.image-overlay {
  position: relative;
  width: 100%;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
  
}

.overlay-text {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for perfect centering */
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
}

.overlay-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.overlay-text p {
  font-size: 18px;
  margin-top: 10px;
}


/* .container-custom {
  padding-top: 75px;
} */

.clip {
  position: relative;
  text-align: center;
}

.full-width-image {
  width: 100%;
  height: 300px;
}

.custom-box {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  background-color: #f9f9f9;
  width: 100%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px; /* Space between image and text */
}

.custom-box-2 {
  border: 1px solid #ddd;
  padding: 7px;
  border-radius: 8px;
  background-color: #f9f9f9;
  width: 100%;
  height: 250px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;

  gap: 10px; /* Space between image and text */
}

.custom-img-style-home {
  width: 200px; /* Image width set karo */
  height: auto; /* Auto height maintain rahe */
  align-items: center;
}


.custom-text {
  font-size: 15px;
  color: #333;
  flex-grow: 1; /* Allow text to take remaining space */
}


.image-aboutus{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  display: block;
  margin: 0 auto; /* Centers the image */
  width: 600px; /* Set width */
  height: 350px; /* Maintain aspect ratio */
}


/* .image-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
} */




/* Logo Styling */
.logo img {
  padding-top: 10;
  justify-content: center;
  align-items: center;
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
 
}

/* Navigation Styling */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background: #1C456E;
  padding: 0.5rem 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Sections Styling */
section {
  padding: 2rem;
  margin: 1rem auto;
  max-width: 800px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service {
  margin-bottom: 1rem;
}

.titel-left {
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}

.titel-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 30px;
  background-color: #1C456E;
  transform: translateY(-50%);
}


/* Container to hold both blocks */
/* Container Styles */


.container {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}


.blocks-wrapper {
  display: flex; 
  gap: 20px;
}

/* Blocks Container Styles */
.blocks-container-1,
.blocks-container-2 {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 1s ease-in-out forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.normall {
  align-items: center;
  margin-bottom: 20px;

}

.normall h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.normall p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.content-box {
  border: 2px groove #ddd;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  width: 48%;

}





.content-image {
  max-width: 100%;
  max-height: 120px;
}

/* Text styling */
.text-box p {
  font-size: 12px;
  margin: 0;
  padding: 0 10px;
}

/* Domain AND Technolog */

.domain-section {
  background-color: #000000;
  margin-top: 30px;
  max-height: 250px;
  max-width: 650px;
  padding: 20px;
}

.image-scroll-container {
  overflow-x: auto; /* Enable scrolling */
  white-space: nowrap; /* Prevent wrapping */
  padding: auto;
  width: 100%; /* Ensure full width */
}

.image-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent images from wrapping */
  gap: 8px;
}

.little-img-text-entry {
  
  flex: 0 0 auto; /* Prevent shrinking */
}

.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 17px;
  overflow-x: auto;
  padding: 15px;
  white-space: nowrap;
}

.image-container-2 {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 15px;
  overflow-x: auto;
  padding: 15px;
  white-space: nowrap;
}

.little-img-text-entry {
  text-align: center;
  animation: flipInY 1s ease-in-out;
  animation-delay: 0s;
  visibility: visible !important;
  opacity: 1;
  
}


.little-img-text-entry img {
  min-width: 30px;
 
  max-width: 200px;
  height: auto;
}


.little-img-text-entry h5 {
  color: #ffffff;
  margin-top: 5px;
  font-size: 16px;
}


.col-lg-12 {
  padding-left: 50px;
  display: flex;
  align-items: center; /* Vertical Center */
  gap: 150px; /* Space between title and slider */
}

.col-md-2 {
  flex: 0 0 auto; /* Prevent resizing */
}

.swiper {
  flex: 1; /* Allow slider to take remaining space */
}


@keyframes flipInY {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



/* Slider CSS */


.swiper {
  width: 90%;
  padding: 20px 0;
}

/* Default Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns for large screens */
  grid-gap: 10px;
  padding: 10px;
  justify-content: center;
}

/* Image Styling */
.grid-container img {
  width: 70%;
  height: auto;
  border-radius: 5px;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1s ease-in-out forwards;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Animation Keyframes */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hover Effect */
.grid-container img:hover {
  transform: scale(1.1);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Hide Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
  display: none !important;
}

/* Pagination Position */
.swiper-pagination {
  bottom: 20px;
}


/* Contect Form CSS */

.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 15px;
}
label {
  font-weight: bold;
}
.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.btn-primary {
  background: #1C456E;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #163a5f;
}

.responsive-img {
  display: block;

  max-width: 50%;  /* Ensures it doesn’t exceed its container */
  height: auto;  /* Keeps aspect ratio */
  transition: transform 0.3s ease-in-out; /* Smooth transition effect */
}

.responsive-img:hover {
  transform: scale(1.05); /* Hover karata image slightly zoom thashe */
}

.image-flex-container {
 
  gap: 20;
}

.responsive-img-2 {
  max-width: 50%; 
  height: auto; 
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.responsive-img-2:hover {
  transform: scale(1.05); /* Hover karata image slightly zoom thashe */
}

/* Founder ISR */

/* Responsive Design */

.block.type-2 {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.custom-img-style {
  width: 300px; /* Images ne same width */
  height: 150px; /* Images ne same height */
  object-fit: cover; /* Aspect ratio distort na thay */
  display: inline-block;
}

.image-gap {
  display: inline-block;
  width: 20px; /* Space between images */
}


.custom-img-style-home-1 {
  width: 50px; /* Width ochi kari */
  height: 140px; /* Proportionally height adjust kari */
  margin-right: 20px; /* Gap ochu rakhi */
  display: inline-block; /* Side-by-side mukva mate */
  vertical-align: middle;
}

.custom-img-style-home-1:hover,
.custom-img-style-home-2:hover {
  transform: scale(1.05); /* Hover effect same rakhi */
}

.custom-img-style-home-2 {
  width: 300px; /* Width ochi kari */
  height: 140px; /* Proportionally height adjust kari */
  margin-left: 20px; /* Gap ochu rakhi */
  display: inline-block; /* Side-by-side mukva mate */
  vertical-align: middle;
}



/* Enterprise Product */

.knowledge-text {
  height: auto; 
  display: flex; 
  align-items: flex-start; 
  justify-content: flex-start; 
  text-align: left;
  color: #333; 
  max-width: 100%;
  padding: 10px;
  margin-bottom: 10px; 
}

.enterprise-product-img {

  max-width: 250px;
  align-items: start;
  height: auto; 
  display: block; 
  margin: 0 auto; 
  

}

.enterprise-product-img:hover {
  transform: scale(1.05); /* Hover karata image slightly zoom thashe */
}




/* Responsive Design */


/* Responsive Header */
@media  (max-width: 992px) {
  header {
    flex-direction: column;
    padding: 10px;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header nav ul li {
    text-align: center;
    width: 100%;
  }

  header nav ul li a {
    display: block;
    padding: 10px;
  }

  .logo img {
    max-width: 120px;
  }
}

@media  (max-width: 768px) {
  header {
    justify-content: space-between;
    padding: 10px;
  }

  header nav ul {
    display: none;
    flex-direction: column;
    background-color: #1C456E;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  header nav ul.active {
    display: flex;
  }

  header nav ul li {
    width: 100%;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 24px;
    padding: 10px;
  }
}

@media  (max-width: 480px) {
  .logo img {
    max-width: 100px;
  }

  header {
    padding: 5px;
  }

  header nav ul {
    gap: 5px;
  }

  header nav ul li a {
    font-size: 0.9rem;
    padding: 8px;
  }
}



@media (max-width: 768px) {
  .blocks-wrapper {
    flex-direction: column;
    /* Stack containers vertically on smaller screens */
  }

  .row-flex {
    flex-direction: column;
    /* Stack image and text on top of each other */
  }

  .content-box {
    width: 90%;
    /* Make each section full-width on small screens */
    height: auto;
    /* Allow dynamic height */
    padding: 15px;
  }

  .content-image {
    max-height: 100px;
    /* Reduce image size on smaller screens */
  }
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 1rem 0;
  background: #1C456E;
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #d6df65;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 1rem;
  }

  .logo img {
    max-width: 100px;
    /* Reduce logo size on smaller screens */
  }
}

@media (max-width: 1200px) {
  .little-img-text-entry {
    width: 10%;
  }
}

@media (max-width: 992px) {
  .little-img-text-entry {
    width: 20%;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .little-img-text-entry {
    width: 30%;
    margin-bottom: 10px;
  }

  .col-md-12 {
    text-align: center;
  }

  h2.h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .little-img-text-entry {
    width: 45%;
    margin-bottom: 8px;
  }

  .col-md-12 {
    padding: 10px;
  }

  h2.h2 {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .little-img-text-entry {
    width: 100%;
    margin-bottom: 5px;
  }

  .col-md-12 {
    padding: 5px;
  }

  h2.h2 {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .domain-section {
    max-height: 300px;
    /* Adjust height for better spacing */
    margin-top: 10px;
    /* Reduce margin */
  }
}

/* Small screens (Mobile Devices) */
@media (max-width: 768px) {
  .domain-section {
    max-height: 1500px;
    
    margin-top: 15px;
   
   
  }
}

/* Extra Small screens (Phones) */
@media (max-width: 480px) {
  .domain-section {
    max-height: auto;
   
    margin-top: 350px;
    padding: 10px;
  }
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
  .swiper {
    width: 95%; /* Increase swiper width for better spacing */
  }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr); /* 1 column for small screens */
  }
  .grid-container img {
    width: 100%; /* Make images full width */
  }
  .swiper {
    width: 100%; /* Full width on small screens */
  }
}


@media (max-width: 1200px) {
  .col-lg-12 {
    padding-left: 30px; /* Reduce padding */
    gap: 100px; /* Reduce gap */
  }
  
  .image-container-2 {
    gap: 50px; /* Reduce spacing between images */
  }
}

@media (max-width: 992px) {
  .col-lg-12 {
    flex-direction: column; /* Stack title & slider vertically */
    align-items: center; /* Center align */
    text-align: center;
    gap: 20px;
  }

  .col-md-2 {
    width: 100%;
  }

  .image-container, .image-container-2 {
    justify-content: center;
    gap: 20px;
  }

  .little-img-text-entry img {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .image-container, .image-container-2 {
    gap: 10px;
    padding: 10px;
  }

  .little-img-text-entry h5 {
    font-size: 14px;
  }

  .little-img-text-entry img {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .col-lg-12 {
    padding-left: 10px;
  }

  .image-container, .image-container-2 {
    flex-wrap: wrap; /* Allow images to wrap */
    justify-content: center;
  }

  .little-img-text-entry img {
    max-width: 100px;
  }

  .little-img-text-entry h5 {
    font-size: 12px;
  }
}





/* Responsive Design */

@media screen and (max-width: 1024px) {
  .responsive-img, .responsive-img-2 {
    max-width: 80%; /* Adjust width for tablets */
  }
  .responsive-img:hover, .responsive-img-2:hover {
    transform: scale(1.05); /* Smooth zoom effect */
  }
}

@media screen and (max-width: 768px) {
  .responsive-img, .responsive-img-2 {
    max-width: 60%; /* Better visibility for mobile */
  }
}

@media screen and (max-width: 480px) {
  .responsive-img, .responsive-img-2 {
    max-width: 70%; /* Small screen optimization */
  }
}


/* For mobile screens (max-width: 768px) */
@media screen and (max-width: 768px) {
  .image-flex-container {
    flex-direction: row; /* Keeps images side by side */
    flex-wrap: nowrap; /* Prevents wrapping */
    overflow-x: auto; /* Enables horizontal scrolling */
    justify-content: flex-start;
  }
  .responsive-img-2 {
    max-width: 45%; /* Adjust width for smaller screens */
  }
  .responsive-img-2:hover {
    transform: scale(1.05); /* Hover karata image slightly zoom thashe */
  }
}

/* For very small screens (max-width: 480px) */
@media screen and (max-width: 480px) {
  .image-flex-container {
    flex-direction: column; /* Stacks images vertically */
  }
  .responsive-img-2 {
    max-width: 90%; /* Adjusts size for small screens */
  }
}

@media (max-width: 768px) {
  .block.type-2 {
      height: 200px; /* Reduce height */
      padding: 15px; /* Adjust padding */
      margin-top: 40px; /* Reduce top margin */
  }
}

/* For mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .block.type-2 {
      height: auto; /* Auto height for flexibility */
      padding: 10px; /* Reduce padding */
      margin-top: 30px; /* Adjust margin */
      flex-direction: column; /* Stack content vertically */
  }
}

@media (max-width: 768px) {
  .knowledge-text {
      height: auto; 
      flex-direction: column; 
      text-align: center; 
      align-items: center; 
      justify-content: center;
  }
}

/* Responsive design for mobile devices */
@media (max-width: 480px) {
  .knowledge-text {
      height: auto; 
      text-align: center; 
      font-size: 16px;
      padding: 5px;
  }

  .knowledge-text h4 {
      font-size: 14px;
  }
}

/* Default Styling */
.custom-img-style-home-1 {
  width: 400px;
  height: 170px;
  margin-right: 100px;
  transition: transform 0.3s ease-in-out;
}

.custom-img-style-home-1:hover {
  transform: scale(1.05);
}

.custom-img-style-home-2 {
  width: 400px;
  height: 160px;
  margin-left: 100px;
  transition: transform 0.3s ease-in-out;
}

.custom-img-style-home-2:hover {
  transform: scale(1.05);
}

/* Tablet (Max Width: 1024px) */
@media screen and (max-width: 1024px) {
  .custom-img-style-home-1,
  .custom-img-style-home-2 {
    width: 350px; /* Thodu size ochhu kariye */
    height: auto; /* Maintain aspect ratio */
    margin: 20px auto; /* Center ma avshe */
    display: block; /* Full width row jivatu layout */
  }
}

/* Mobile (Max Width: 768px) */
@media screen and (max-width: 768px) {
  .custom-img-style-home-1,
  .custom-img-style-home-2 {
    width: 90%; /* Mobile screen ma full width jetlu */
    height: auto;
    margin: 10px auto; /* Centering */
  }
}

/* Small Mobile (Max Width: 480px) */
@media screen and (max-width: 480px) {
  .custom-img-style-home-1,
  .custom-img-style-home-2 {
    width: 100%; /* Small screen par full width */
    height: auto;
    margin: 5px auto; /* Centering */
  }
}

@media (max-width: 992px) { /* Tablets and smaller laptops */
  .custom-img-style {
    width: 250px;
    height: 130px;
  }
  .image-gap {
    width: 15px;
  }
}

@media (max-width: 768px) { /* Mobile devices */
  .custom-img-style {
    width: 200px;
    height: 110px;
  }
  .image-gap {
    width: 10px;
  }
}

@media (max-width: 480px) { /* Small mobile screens */
  .custom-img-style {
    width: 100%;
    max-width: 180px; /* Ensures image doesn't get too big */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 10px auto; /* Center align images */
  }
  .image-gap {
    display: none; /* Remove space for small screens */
  }
}


@media (max-width: 768px) {
  .custom-box,
  .custom-box-2 {
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;
    text-align: center;
    height: auto; /* Adjust height automatically */
    border: none; /* Remove border */
    box-shadow: none; /* Remove box shadow */
    background-color: transparent; /* Make background transparent */
    padding: 0; /* Remove padding */
  }

  .custom-img-style {
    max-width: 100%; /* Make image responsive */
    height: auto;
  }

  .full-width-image {
    height: 250px; /* Reduce height for smaller screens */
  }
}

/* Media Query for Mobile Phones (480px and below) */
@media (max-width: 480px) {
  .custom-box,
  .custom-box-2 {
    display: block; /* Remove flexbox */
  }

  .custom-text {
    font-size: 14px; /* Slightly reduce font size for better readability */
    margin-top: 10px; /* Add space between image and text */
  }

  .custom-img-style {
    max-width: 100%; /* Ensure the image fits well within the screen */
  }

  .full-width-image {
    height: 200px; /* Further reduce height for better mobile experience */
  }
}

@media (max-width: 768px) {
  .image-aboutus {
    width: 90%; /* Small screens par width adjust karva */
    height: auto; /* Aspect ratio maintain karva */
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 480px) {
  .image-aboutus {
    width: 100%; /* Mobile screens par full width */
    height: auto;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 768px) {
  .overlay-text {
    width: 90%; /* Thodi ochi width chhoti screens par */
    padding: 15px;
  }

  .overlay-text h2 {
    font-size: 24px; /* Chhoti screens par font size ochi kari */
  }

  .overlay-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    width: 95%; /* Mobile screens par full width ma adjust karva */
    padding: 10px;
  }

  .overlay-text h2 {
    font-size: 20px; /* Small devices mate font size ochu */
  }

  .overlay-text p {
    font-size: 14px;
  }
}




