/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(0, 0%, 100%);
  --black-color-light: hsl(0, 0%, 100%);
  --black-color-lighten: hsl(0, 0%, 100%); 
  --white-color: #000;
  --body-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}
/* Make the logo image responsive */
.logo-image {
   max-width: 100%;
   height: auto;
   width: 126px; /* Adjust the size of the logo */
   margin-right: 10px;
}

/* Media Query for Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
   .logo-image {
      width: 80px; /* Adjust logo size on smaller screens */
      margin-right: 5px; /* Optional: Reduces margin on smaller screens */
   }
}

/* Media Query for Smaller Devices (max-width: 480px, typical mobile size) */
@media (max-width: 480px) {
   .logo-image {
      width: 60px; /* Further reduce logo size for very small screens */
   }
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: #007bff;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}
/*------------------------------footer---------------------------------------*/

 footer {
      background-color: hsl(0, 0%, 100%); /* White background */
      padding: 20px 0;
      font-family: Arial, sans-serif;
      box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
    }

    .footer-container {
      width: 80%;
      margin: 0 auto;
    }

    /* Center: Follow Us and Icons on the Same Line */
    .footer-center {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px; /* Space between center and bottom rows */
    }

    .footer-center p {
      margin-right: 15px; /* Add space between text and icons */
      font-size: 16px;
      color: hsl(220, 24%, 12%);
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icon {
      font-size: 24px;
      color: hsl(220, 24%, 12%);
      text-decoration: none;
    }

    .social-icon:hover {
      color:#007bff ; /* Change color on hover */
    }

    /* Centered Row Navigation */
    .centered-row {
      list-style: none; /* Removes bullet points from the list */
      padding: 0; /* Removes padding */
      margin: 0; /* Removes margin */
      display: flex; /* Aligns the items in a row (horizontally) */
      justify-content: center; /* Centers the items horizontally */
      align-items: center; /* Centers the items vertically */
      height: 20vh; /* Makes the container take the full height of the viewport */
      margin-bottom: 20px; /* Adds spacing below the navigation */
    }

    .centered-row li {
      margin: 0 15px; /* Adds space between the list items */
    }

    .centered-row a {
      text-decoration: none; /* Removes underline from links */
      color: #000; /* Dark gray text color */
      font-size: 16px; /* Font size for the links */
      padding: 10px 15px; /* Adds padding to the links */
      display: inline-block; /* Makes the links block-level for padding to work */
      transition: color 0.3s ease, background-color 0.3s ease; /* Smooth hover transition */
    }

    /* Hover effect */
    .centered-row a:hover {
      color: #fff; /* Changes text color to white */
      background-color: #007BFF; /* Adds background color on hover */
      border-radius: 4px; /* Slightly rounds the corners */
    }

    /* Footer-bottom: Left and Right Sections in Same Row */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-left p {
      font-size: 14px;
      color: hsl(220, 24%, 12%);
    }

    .footer-right ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .footer-right ul li {
      display: inline;
      margin-left: 15px;
    }

    .footer-right ul li a {
      text-decoration: none;
      color: hsl(220, 24%, 12%);
      font-size: 14px;
    }

    .footer-right ul li a:hover {
      text-decoration: underline;
    }

    /* Media Query for Screens Smaller Than 768px */
    @media (max-width: 768px) {
      .footer-center {
        flex-direction: column; /* Stacks Follow Us and Icons vertically */
        text-align: center;
      }

      .footer-center p {
        margin-bottom: 10px; /* Space between text and icons */
      }

      .centered-row {
        flex-direction: column; /* Stacks items vertically */
        height: auto; /* Adjusts the height */
        margin-bottom: 10px; /* Adjusts spacing */
      }

      .centered-row li {
        margin: 10px 0; /* Adds space between links */
      }

      .footer-bottom {
        flex-direction: column; /* Stacks footer-left and footer-right vertically */
        text-align: center;
        align-items: center;
      }

      .footer-left,
      .footer-right {
        margin-bottom: 10px;
      }

      .footer-right ul li {
        display: block; /* Stacks the links in footer-right vertically */
        margin-left: 0;
        margin-top: 5px;
      }
    }
    
    /*----------------------------General----------------------------------------------------------*/
    p {
    margin-bottom: 0;
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 26px;
    color: #555 !important;
    letter-spacing: 0.5px !important;
    font-family: 'Roboto', Sans-Serif;
}
   
 h1,h2,h3,h4,h5{
    font-family:'Monstserrat',Sans-serif;
}
   .divider {
       width: 80%;
            height: 2px;
            background: linear-gradient(to right, transparent, #808080, transparent); /* Grey color */
            margin: 30px auto;
    }
    /* Medium Screens (Tablets & Small Laptops) */
@media (max-width: 720px) {
    .divider {
        margin: 24px auto;
    }
}

/* Small Screens (Phones) */
@media (max-width: 480px) {
    .divider {
        margin: 18px auto;
    }
}
    /* Loading Screen Styling */
        #loadingScreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff; /* White background */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999; /* Ensure it stays on top */
            transition: opacity 0.5s ease-out; /* Smooth transition for fading out */
        }

        /* Dots Loading Animation */
        .dotss {
            display: flex;
            gap: 8px; /* Space between dots */
        }

        .dot1 {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #002578; /* Blue color */
            animation: dot-bounce 1.5s infinite ease-in-out;
            opacity: 0.6; /* Default opacity */
        }

        .dot1:nth-child(1) {
            animation-delay: 0s;
        }

        .dot1:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dot1:nth-child(3) {
            animation-delay: 0.4s;
        }

        /* Dot bounce animation */
        @keyframes dot-bounce {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-20px);
                opacity: 1; /* Fully visible when the dot is bouncing */
            }
        }

        /* Main content styling (hidden initially) */
        #mainContent {
            display: block;
            margin-top: 20px;
            text-align: center;
        }
/*-----------------------------------------------------slider for happy customers---------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
  background: #fff;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 50px;
  margin: 0 40px;
}

/*-----------------------------------------------------contact page------------------------------------*/
 /* Location paragraph styling directly on the page */
        p3.location {
            text-align: center;
            font-size: 1.2em;
            margin: 20px 0;
            color: #000;
            
        }
       

        /* Make the map take up the full screen */
        #map {
            height: 100vh;  /* 100% of the viewport height */
            width: 100%;    /* 100% of the width */
        }
   
.contact-section {
            max-width: 1100px;
            margin: 40px auto;
            background-color: #fff;
            padding: 40px;
            border-radius: 12px; /* Slightly larger rounded corners for the contact section */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .contact-info {
            flex: 1;
            max-width: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-info img {
            width: 100%;
            height: auto;
            border-radius: 12px; /* Rounded corners for the image */
            
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #002578;
            font-family: 'Montserrat', sans-serif;
        }

        .contact-section p {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: #555;
        }

        .form-group {
            position: relative;
            margin-bottom: 20px;
            font-family: 'Roboto', sans-serif;
        }

        .form-group label {
            font-size: 1.1em;
            margin-bottom: 10px;
            display: block;
            font-weight: bold;
            font-family: 'Montserrat', sans-serif;
        }

        /* Style for text input fields */
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 20px; /* Increased border-radius for more rounded textboxes */
            font-size: 1.1em;
            box-sizing: border-box; /* Ensures padding doesn't add to width */
            transition: border-color 0.3s ease;
            font-family: 'Roboto', sans-serif;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: #007bff;
            outline: none;
        }

        /* Additional styles for textarea */
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-group button {
            padding: 15px 30px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 20px; /* Rounded button corners */
            font-size: 1.2em;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-group button:hover {
            background-color: #0056b3;
        }

        

        /* Responsive design */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2em;
            }

            .contact-section {
                flex-direction: column;
                padding: 30px;
                margin: 20px;
            }

            .contact-info img {
                margin-bottom: 20px;
            }

            .contact-section h2 {
                font-size: 2.2em;
            }

            .form-group input, .form-group textarea {
                font-size: 1em;
            }

            .form-group button {
                font-size: 1.1em;
            }
        }

        .success-message {
            background-color: #28a745;
            color: white;
            padding: 10px;
            margin-top: 20px;
            border-radius: 5px;
            text-align: center;
        }

        .error-message {
            background-color: #dc3545;
            color: white;
            padding: 10px;
            margin-top: 20px;
            border-radius: 5px;
            text-align: center;
        }
        .contact-icon {
            margin-right: 8px;
        }
        
        /*--------------------clients----------------*/
              /* Grid Styling for images with borders */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Default to 3 columns */
            gap: 20px;
            margin-top: 20px;
            max-width: 1200px;
            margin: 0 auto;
          /*  border: 1px solid #ddd; /* Adding a border around the grid * /
                        padding: 10px;
            border-radius: 8px; /* Rounded corners for the grid */
        }

        /* Styling for each image within the grid */
        .image-grid div {
        /*    border: 2px solid #000; /* Border for each column */
            padding: 10px;
            border-radius: 8px;
        }

        .image-grid img {
            width: 250px;
            height: auto;
            border-radius: 5px;
            border: 2px solid #ddd; /* Border around each image */
            box-sizing: border-box;
            padding:30px;
            object-fit:scale-down;
        }

        /* Mobile responsiveness: Adjust the grid to 2 columns on smaller screens */
        @media (max-width: 768px) {
            .image-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
            }
        }

        /* Mobile responsiveness: Adjust to 1 column on very small screens */
        @media (max-width: 480px) {
            .image-grid {
                grid-template-columns: 1fr;
                padding:68px; /* 1 column on very small screens */
            }
        }

 /*-----------------------------Services---------------------*/
 .header1 {
    color: #002578;
    font-size: 30px;
    font-family:'Montserrat',sans-serif;
     margin-left: auto; 
      margin-right: auto; 
      text-align: center;
      margin-bottom:30px;
}

/* Paragraph styles */
.content {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    font-family:'Roboto',sans-serif;
    margin-bottom:30px;
    text-align:center;
}
  /*------------------Industries------------*/
/*----------------Products-------------------*/
.h5 {
            text-align: center;
            background: linear-gradient(45deg,#18002f,#18002f 25%,#18002f 50%,#002578 75%,#002578 100%);
            color: white;
            font-size: 24px;
            padding: 6px;
            margin: 0;
            border-bottom: 3px solid #;
        }


/* Container for all the divs */
.container2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 divs per row */
    gap: 31px;
    padding: 20px;
    justify-items: center;
    margin: 91px auto;
}

/* Different radius for each corner */
.clickable-div {
    width: 85%; /* Adjust width to make it responsive */
    height: 150px;
    background-color: #;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    border-radius: 30px 20px 10px 5px;  /* top-left, top-right, bottom-right, bottom-left */
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Montserrat', sans-serif;  /* Main clickable word font */
    box-shadow: 0 4px 12px rgba(0, 37, 120, 1);
    
}

/* Hover effect for the clickable divs */
.clickable-div:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hidden description that will appear within the div */
.description {
    display: none;
    text-align: center;
    color: #333;
    font-size: 14px;
    margin-top: 15px;
    flex-grow: 1;
    font-family: 'Roboto', sans-serif;  /* Description font */
}

/* Button for "Know More" */
.know-more-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color:#007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: block;
    margin-left: auto; /* Center button horizontally */
    margin-right: auto; /* Center button horizontally */
    font-family: 'Roboto', sans-serif;  /* Description font */
}

/* Add the fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Show the description with animation */
.show-description {
    animation: fadeIn 0.5s ease-in-out;
    display: block;
}

/* Ensure the know-more button is visible when description is shown */
.show-description .know-more-btn {
    display: block;
}

/* Responsive Design: Adjust grid layout for smaller screens */
@media (max-width: 1024px) {
    .container2 {
        grid-template-columns: repeat(3, 1fr); /* 3 divs per row on medium screens */
        gap: 20px;  /* Adjusting gap for medium screens */
        padding: 10px; /* Adjust padding for medium screens */
    }

    .clickable-div {
        height: 300px;  /* Reduce height on medium screens */
        font-size: 16px; /* Adjust font size */
    }
}

@media (max-width: 768px) {
    .container2 {
        grid-template-columns: repeat(2, 1fr); /* 2 divs per row on smaller screens */
        gap: 15px;  /* Adjust gap for smaller screens */
        padding: 5px;  /* Adjust padding for smaller screens */
    }

    .clickable-div {
        height: 146px; /* Reduce height on smaller screens */
        font-size: 14px; /* Reduce font size */
    }
}

@media (max-width: 480px) {
    .container2 {
        grid-template-columns: 1fr; /* 1 div per row on extra small screens */
        gap: 10px;  /* Reduce gap on very small screens */
        padding: 5px;  /* Reduce padding on very small screens */
    }

    .clickable-div {
        height: 130px; /* Reduce height even more for very small screens */
        font-size: 12px; /* Reduce font size further */
    }

    .know-more-btn {
        font-size: 12px; /* Adjust button font size for small screens */
    }
}	
/*-----------------------------About Us----------------------------------*/
.containerr {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 91px;
        padding: 20px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        text-align: center;
        font-size: 2em;
        width: 100%;
        margin-bottom: 20px;
        color: #002578;
    }

    .content1 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .content-left {
        flex: 1;
        margin-right: 20px;
    }

    .content-right {
        flex: 1;
        text-align: center;
    }

    .content-right img {
        max-width: 100%;
        height: auto;
    }

    p {
        font-size: 1.1em;
        line-height: 1.6;
    }

    .technologies-container {
        width: 1000px;
        padding: 20px;
        background-color: #fff;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius:30px;
    }

    .technologies-container h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
    }

    .technologies-list {
        font-size: 1.1em;
        line-height: 1.8;
    }

    .technologies-list ul {
        list-style-type: none;
        padding: 0;
    }

    .technologies-list li {
        margin-bottom: 10px;
        font-family: 'Roboto', sans-serif;
    }

  
    .wrapperr {
        display: flex;
        justify-content: center;
        align-items: center;
       
        gap: 20px; /* Space between containers */
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .container11 {
        background-color: #ffffff;
        border-radius: 30px; /* Highly rounded edges */
        width: 250px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 20px;
    }

    .top-line {
        width: 50px;
        height: 5px;
        background-color: #007BFF;
        margin: 0 auto 15px; /* Centered red line with margin */
    }

    .icon {
        font-size: 50px;
        color: #555555;
        margin-bottom: 15px;
    }

    h4.mission-header {
        font-size: 20px;
        color: #000;
        margin-bottom: 10px; /* Space between header and paragraph */
        font-family: 'Montserrat', sans-serif;
    }

    /* New Section: Image on the Left and Text on the Right */
    .content-reversed {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        margin-top: 40px;
        flex-wrap: wrap; /* Allow wrapping for smaller screens */
    }

    .content-reversed-left {
        flex: 1;
        text-align: center;
        margin-bottom: 20px;
    }

    .content-reversed-right {
        flex: 1;
        margin-left: 20px;
    }

    .content-reversed-left img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        h1 {
            font-size: 1.5em;
        }

        .content1, .content-reversed {
            flex-direction: column; /* Stack content on smaller screens */
            align-items: center;
        }

        .content-left, .content-right {
            margin-right: 0;
            margin-bottom: 20px;
            text-align: center;
        }

        .technologies-container {
            width: 90%;
            padding: 10px;
        }

        .technologies-list {
            font-size: 1em;
        }

       

    
    }
 /* Responsive Design: Adjust grid layout for smaller screens */
        @media (max-width: 1024px) {
            .wrapperr {
                grid-template-columns: repeat(2, 1fr); /* 2 items per row on medium screens */
            }

            .container11 {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .wrapperr {
                grid-template-columns: 1fr; /* 1 item per row on small screens */
            }

            .container11 {
                max-width: 90%; /* Allow containers to take up more space */
                padding: 15px;
            }

            .icon {
                font-size: 24px; /* Slightly smaller icons */
            }

            .mission-header {
                font-size: 18px; /* Slightly smaller text */
            }

            p4 {
                font-size: 12px; /* Smaller text on mobile */
            }
        }

    /* Extra small screens (phones in portrait) */
    @media (max-width: 480px) {
        h1 {
            font-size: 1.3em;
        }

        .technologies-container h2 {
            font-size: 1.5em;
        }

        .technologies-list li {
            font-size: 0.9em;
        }

       
    }
     .timeline {
            position: relative;
            padding: 20px 0;
            list-style-type: none;
            margin: 0;
        }
        .timeline li {
            position: relative;
            padding: 10px 0;
            margin: 20px 0;
        }
        .timeline li::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: #007BFF;
        }
        .timeline .event {
            position: relative;
            padding: 20px;
            background-color: #caf0f8;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 45%;
            margin-left: 55%;
        }
        .timeline .event.left {
            margin-left: 0;
            margin-right: 50%;
        }
        .timeline .event h3 {
            margin: 0;
            font-size: 1.3em;
            color: #333;
            font-family: 'Montserrat', sans-serif;
        }
        .timeline .event p {
            font-size: 1.1em;
            color: #555;
        }
        .timeline .event .date {
            font-size: 0.9em;
            color: #888;
        }
        .timeline .event .description {
            font-size: 1em;
            color: #555;
        }
        @media (max-width: 768px) {
            .timeline .event {
                width: 100%;
                margin-left: 0;
            }
            .timeline li::before {
                left: 0;
                transform: none;
            }
            
        }
         /* Container for the history sections */
        .history-container {
            padding: 20px;
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Styling the Year Boxes */
        .year-box {
            background-color: #fff;
            border-radius: 50%; /* Make the box circular */
            padding: 30px 40px; /* Adjust size to make it circular */
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            width: 120px; /* Set width and height for circle */
            height: 120px;
        }

        .year-box:hover {
            background-color: #007BFF;
            color: white;
        }

        /* Styling for Flag Hosting Information (smaller box) */
        .flag-hosting {
            display: none;
            text-align: center;
            padding: 10px;
            margin-top: 10px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 250px; /* Reduced width */
            max-width: 100%;
            font-size: 14px; /* Smaller font size */
        }

        .flag-hosting img {
            width: 60px; /* Smaller image size */
            height: 60px;
            object-fit: cover;
            margin-bottom: 10px;
            border-radius: 50%; /* Make the image circular */
        }

        .history-info {
            font-size: 14px;
            color: #333;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .year-box {
                font-size: 16px;
                width: 100px;
                height: 100px;
            }

            .flag-hosting {
                width: 200px; /* Even smaller width on mobile */
            }

            .flag-hosting img {
                width: 50px;
                height: 50px;
            }
        }
        
        
        /*--------------------ihrms---------------------------*/
        /* Page Wrapper */
.pagee-wrapper {
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;  /* Align items at the top */
    height: 100%;  /* Use full height */
    flex-wrap: wrap;  /* Allow wrapping of content */
    gap: 20px;
}

/* Left Section (Text) */
.landing-text {
    max-width: 500px;
    width: 100%;
    text-align: left;
    margin-right: 40px;
    
}

.landing-text h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #002578;
    font-family:'Montserrat',sans-serif;
    
}

.landing-text p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    font-family:'Roboto',sans-serif;
    text-align:justify;
}

/* Right Section (Form) */
.landing-form {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    text-align: center;
    border: 2px solid #007BFF;
    transition: all 0.3s ease;
    min-height: 450px;
}

/* Form Heading */
.landing-form h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #000;
    font-family:'Montserrat',sans-serif;
}

.landing-form label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    text-align: left;
    font-size: 1.1em;
    color: #555;
}

.landing-form input {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1em;
    transition: border 0.3s ease;
}

.landing-form input:focus {
    border-color: #007BFF;
    outline: none;
}

.landing-form button {
    background-color: #007BFF;
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    width: 100%;
    transition: background-color 0.3s ease;
}

.landing-form button:hover {
    background-color: #002578;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    /* Force stacking of elements in column direction on mobile */
    .pagee-wrapper {
        flex-direction: column !important;  /* Ensure elements are stacked vertically */
        justify-content: flex-start;  /* Align items at the top */
        align-items: center;  /* Center horizontally */
        padding: 20px 10px;  /* Add padding on smaller screens */
    }

    /* Adjust the form to take full width on mobile */
    .landing-form {
        max-width: 100% !important;  /* Ensure form takes full width */
        margin-bottom: 20px;  /* Add margin between sections */
        min-height: auto;  /* Allow height to adjust based on content */
    }

    /* Adjust text layout */
    .landing-text {
        max-width: 100% !important;  /* Ensure text section takes full width */
        margin-right: 0;  /* Remove any margin */
        text-align: center;  /* Center the text */
    }

    .landing-text h3 {
        font-size: 1.8em;  /* Reduce size of title */
    }

    .landing-text p {
        font-size: 1.1em;  /* Adjust paragraph text size */
    }
}

  .high
        {
            color: #ff6347; 
            font-weight:bold;
            background:#f0f0f0;
            }
         .box-head
         {
          display: flex;
  justify-content: space-between; /* Align icon to left and heading to right */
  align-items: center; /* Vertically center the items in the header */
  margin-bottom: 20px; /* Space between header and content */
         
         }
         .box-head-icon
         {
            width: 30px;
  height: 30px;
  background-color: #002578;
 
  border-radius: 313px 313px 0 313px;
  margin-right: 14px;
             }
         .box-head-head
         {
             font-size: 18px;
  font-weight: bold;
  color: #333;
      margin-right: 43px;
             }
         .box-head-content
         {
             
             flex-grow: 1; /* Allows the content area to take up remaining space */
  padding: 10px;
  background-color: #fff;
  border-radius: 65px;
  text-align: center;
  font-family:'Roboto', Sans-Serif;
  font-size: 14px;color: #666;line-height: 1.6;margin-bottom: 10px;margin-bottom: 0;font-weight: 400 !important;font-size: 16px;line-height: 26px;color: #000 !important;letter-spacing: 0.5px !important;font-family: 'Roboto', Sans-Serif;
             }
             
          .bubble
          {
              max-height:420px;
              max-width:420px;
              min-height:403px;
  background-color: #002578;
 
  border-radius: 313px 313px 0 313px; 
  padding: 30px; /* Padding inside the bubble */
  display: flex; /* Enable Flexbox */
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  overflow: hidden; /* Ensure nothing overflows */ 
              }
              .content-bubble
              {
                 
                 
                  }
                  
               .new
               {
                   background:#002578;
  border-radius: 0 313px 313px 0;
  padding: 50px;
    margin-right: 209px;
    margin-bottom: 30px;
    margin-top: 30px;
                   }
             @media (max-width: 768px) {
  .new {
    padding: 30px;  /* Reduce padding on smaller screens */
    margin-right: 10px;  /* Reduce right margin on smaller screens */
  }
}

@media (max-width: 480px) {
  .new {
    padding: 20px;  /* Further reduce padding on extra small screens */
    margin-right: 5px;  /* Adjust right margin */
  }
}
 .section-header {
            font-size: 30px;
            color: #fff;
            margin-bottom: 20px;
        }
        
          /* Styling for the container that holds everything */
    .containerr {
      font-family: Roboto, sans-serif;
      
      margin: 0;
      padding: 0;
     
      display: flex;
      justify-content: center; /* Center the content horizontally */
      align-items: center; /* Center the content vertically */
      margin-left:auto;
      margin-right:auto;
    }
    /* Outer box with 80% width and rounded edges */
    .outer-box {
      background-color: #fff;
      border-radius: 10px; /* Rounded edges */
      padding: 40px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      width: 80%; /* Set width to 80% */
      
      height: 210px; /* Set height of the outer box */
    }

    /* Inner box with text and button */
    .inner-box {
      display: flex;
      justify-content: space-between; /* Space between text and button */
      align-items: center; /* Vertically align items in the center */
      background-color: #fff /* Light blue background */
      border-radius: 10px; /* Rounded edges inside */
      padding: 20px;
      font-size: 18px;
      color: #002578;
      font-weight: bold;
      text-align: center; /* Align text to the left */
    }

    /* Styling for the button */
    .inner-box button {
      background-color: #007BFF; /* Dark green background */
      color: white; /* White text */
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .inner-box button:hover {
      background-color: #002578; /* Darker green on hover */
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .outer-box {
        padding: 20px;
        height:auto;
         /* Less padding on smaller screens */
      }

      .inner-box {
        flex-direction: column; /* Stack the text and button vertically */
        text-align: center; /* Center the text */
      }

      .inner-box div {
        margin-bottom: 10px; /* Add space between the text and button */
      }

      .inner-box button {
        width: 100%; /* Make the button take full width */
        padding: 15px; /* Increase button padding for easier tapping */
      }
    }

    /* Extra small screen (for mobile phones in portrait mode) */
    @media (max-width: 480px) {
      .outer-box {
        width: 90%;
        height:auto; /* Make outer box a bit wider on very small screens */
      }

      .inner-box {
        padding: 15px; /* Reduce padding */
      }

      .inner-box div {
        font-size: 16px; /* Reduce font size on very small screens */
      }

      .inner-box button {
        font-size: 14px; /* Reduce button font size */
      }
    }
        .p1
           {
               font-size:14px;
               color:#fff;
               }
               
       .heading {
    color: #E06E22 !important;
    text-transform: none;
    line-height: 1.3;
    font-size: 32px;
    padding-bottom: 40px;
    font-weight: 400;
    text-align: center;
    margin-top: 55px;
    margin-bottom: 0px;
}
   .container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}
.new-box-home-se2 {
    padding: 28px 10px 10px;
    margin: 0 0 40px;
    border-radius: 65px;
    width: 85%;
    height: 200px;
    background: #;
    box-shadow: 0 4px 12px rgba(0, 37, 120, 1);
    cursor: pointer;
}
 /* Container for both divs */
    .advantage {
      display: flex;
      padding: 20px;
      flex-wrap: wrap; /* Allows wrapping of items on smaller screens */
    }

    /* Left div styling */
    .leftt-div {
      width: 45%; /* 45% width for left div */
       
      padding: 20px;
      border-radius: 8px;
      text-align: center;
    
    }

    .leftt-div h1 {
      margin-bottom: 20px;
     
    }

    .leftt-div button {
      padding: 10px 20px;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      
    }

    .leftt-div button:hover {
      background-color: #45a049;
    }

    /* Right div styling */
    .rightt-div {
      width: 45%; /* 45% width for right div */
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 columns for 6 boxes */
      gap: 20px;
      justify-items: end; /* Align grid items to the right */
    }

    .box {
  background-color: #fff;
  padding: 20px; /* Adjusted padding for better box layout */
  width: 288px; /* Ensure boxes are 100% width of their grid column */
  height: 231px; /* Fixed height for the boxes */
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 37, 120, 1);
}

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .advantage {
        flex-direction: column; /* Stack the left and right divs vertically */
        align-items: center; /* Center the divs */
      }

      .leftt-div, .rightt-div {
        width: 100%; /* Full width for both divs on mobile */
        margin-bottom: 20px;
      }

      /* Adjust grid for right div on mobile */
  .rightt-div {
    grid-template-columns: 1fr; /* Single column grid on mobile */
    justify-items: center; /* Center the grid items horizontally */
    align-items: center; /* Vertically align items */
  }

  /* Adjust the size of the boxes on mobile */
  .box {
    width: 90%; /* Make the boxes take up most of the screen width on mobile */
    height: 221px; /* Adjust the height for mobile devices */
    padding: 15px; /* Less padding for mobile */
  }
}

        .high
        {
            color: #ff6347; 
            font-weight:bold;
            background:#f0f0f0;
            }
         .box-head
         {
          display: flex;
  justify-content: space-between; /* Align icon to left and heading to right */
  align-items: center; /* Vertically center the items in the header */
  margin-bottom: 20px; /* Space between header and content */
         
         }
         .box-head-icon
         {
            width: 30px;
  height: 30px;
  background-color: #002578;
 
  border-radius: 313px 313px 0 313px;
  margin-right: 14px;
             }
         .box-head-head
         {
             font-size: 18px;
  font-weight: bold;
  color: #333;
      margin-right: 43px;
             }
         .box-head-content
         {
             
             flex-grow: 1; /* Allows the content area to take up remaining space */
  padding: 10px;
  background-color: #fff;
  border-radius: 65px;
  text-align: center;
             }
             
          .bubble
          {
              max-height:420px;
              max-width:420px;
              min-height:403px;
  background-color: #002578;
 
  border-radius: 313px 313px 0 313px; 
  padding: 30px; /* Padding inside the bubble */
  display: flex; /* Enable Flexbox */
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  overflow: hidden; /* Ensure nothing overflows */ 
              }
              .content-bubble
              {
                 
                 
                  }
                  
               .new
               {
                   background:#002578;
  border-radius: 0 313px 313px 0;
  padding: 50px;
    margin-right: 209px;
    margin-bottom: 30px;
    margin-top: 30px;
                   }
             @media (max-width: 768px) {
  .new {
    padding: 30px;  /* Reduce padding on smaller screens */
    margin-right: 10px;  /* Reduce right margin on smaller screens */
  }
}

@media (max-width: 480px) {
  .new {
    padding: 20px;  /* Further reduce padding on extra small screens */
    margin-right: 5px;  /* Adjust right margin */
  }
}
.industries-section {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 1.5s ease-out;
     font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #002578;
    animation: slideIn 1s ease-out;
}

/* Fade-In Animation for the container */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slide-In Animation for the section title */
@keyframes slideIn {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.industries-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
}

/* Adding a fade-in effect to the boxes as they load */
@keyframes boxFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply box fade-in to all industry boxes */
.industry-box {
    color: white;
    width: 300px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    opacity: 0;
    animation: boxFadeIn 0.8s forwards;
}

.industry-box:nth-child(1) {
    animation-delay: 0.2s;
}
.industry-box:nth-child(2) {
    animation-delay: 0.4s;
}
.industry-box:nth-child(3) {
    animation-delay: 0.6s;
}
.industry-box:nth-child(4) {
    animation-delay: 0.8s;
}
.industry-box:nth-child(5) {
    animation-delay: 1s;
}
.industry-box:nth-child(6) {
    animation-delay: 1.2s;
}
.industry-box:nth-child(7) {
    animation-delay: 1.4s;
}
.industry-box:nth-child(8) {
    animation-delay: 1.6s;
}
.industry-box:nth-child(9) {
    animation-delay: 1.8s;
}

/* Header Styling */
.industry-box h3 {
    font-size: 24px;
    margin-top: 15px;
    font-weight: 600;
    color:#000;
}

.icon1 {
    font-size: 50px;
    color: #333;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}


/* Hover effects on industry boxes */
.industry-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.industry-box:hover .icon1,
.industry-box:hover .icon2,
.industry-box:hover .icon3,
.industry-box:hover .icon4,
.industry-box:hover .icon5,
.industry-box:hover .icon6,
.industry-box:hover .icon7,
.industry-box:hover .icon8,
.industry-box:hover .icon9 {
    transform: scale(1.2);
}

/* Media Queries for responsiveness */

/* For tablets and below (max-width 1024px) */
@media (max-width: 1024px) {
    .industries-container {
        justify-content: center;
    }

    .industry-box {
        width: 45%; /* 2 boxes per row */
        margin-bottom: 20px;
    }

    h2 {
        font-size: 32px; /* Adjust header size */
    }

    .icon1, .icon2, .icon3, .icon4, .icon5, .icon6, .icon7, .icon8, .icon9 {
        font-size: 45px; /* Adjust icon size */
    }

    .industry-box h3 {
        font-size: 20px; /* Adjust text size */
    }
}

/* For mobile devices (max-width 768px) */
@media (max-width: 768px) {
    .industries-container {
        flex-direction: column;
        align-items: center;
    }

    .industry-box {
        width: 90%; /* Make boxes full-width */
        margin-bottom: 20px;
    }

    h2 {
        font-size: 28px; /* Smaller header size */
    }

    .icon1 {
        font-size: 40px; /* Adjust icon size */
    }

    .industry-box h3 {
        font-size: 18px; /* Adjust text size */
    }
}

/* For very small screens (max-width 480px) */
@media (max-width: 480px) {
    h2 {
        font-size: 24px; /* Adjust header size */
    }

    .industry-box {
        padding: 20px;
        width: 95%; /* Ensure boxes fit well */
    }

    .icon1 {
        font-size: 35px; /* Adjust icon size */
    }

    .industry-box h3 {
        font-size: 16px; /* Adjust text size */
    }
}

/*------------------------index--------------------------*/
.numbers-counter{padding:40px 0;font-family:'Open Sans',sans-serif;}
.numbers-counter ul{display:flex;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
 .numbers-counter ul li{display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;list-style:none;text-align:center}
 .stat-number{color:#3b94a3;font-size:50px;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;}
 .count-full{background:linear-gradient(45deg,#18002f,#18002f 25%,#18002f 50%,#002578 75%,#002578 100%)}
 .main-counter{color:#fff!important;padding-bottom:14px}@media screen and (max-width:991px)
 {
     .numbers-counter ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;}}
     

 @media screen and (max-width:768px)
 {
     .numbers-counter{padding:0 0 80px}
     .numbers-counter ul{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
     .number-inc{font-size:70px}
     }
 @media screen and (max-width:425px)
 {
     .numbers-counter{padding:30px 0}
     .number-inc{font-size:65px}
     }
 @media screen and (max-width:375px)
 {
     .number-inc{font-size:50px}
     }
 .stat-number-label{color:#fff;font-size:16px;text-transform:uppercase}
 
 /* Main container styling */
.container1 {
    width: 90%;
    max-width: 1200px; /* Max width for large screens */
    margin: 0 auto;
    text-align: center;
}

/* Header styling */
header h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

/* Row of boxes */
.boxes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px; /* Adds space between the boxes */
}

/* Individual box styling */
.box1 {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.box1:hover {
    transform: translateY(-10px); /* Hover effect */
}

/* Image placeholder styling */
.icon img {
    width: 100px; /* Set width of the placeholder image */
    height: 100px; /* Set height of the placeholder image */
    object-fit: cover; /* Ensures the image covers the box area without distortion */
    margin-bottom: 15px; /* Space below the image */
}

/* Subheader styling */
.subheader {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px; /* Space below the subheader */
    color: #333;
}

/* Box content paragraph styling */
.box-content {
    font-size: 16px;
    color: #555;
}

/* Button container */
.button-container {
    margin-top: 20px;
    text-align:center;
}

/* Button styling */
.action-button {
    font-size: 1rem; /* Font size for the button */
            color: #007bff; /* Blue color for the link */
            text-decoration: none; /* Remove underline */
            padding: 10px 20px; /* Space around the button */
            border-radius: 25px; /* Rounded corners */
            background-color: #fff; /* Light background color */
            border: 2px solid #007bff; /* Blue border */
            transition: all 0.3s ease; /* Smooth transition effect */
}

.action-button:hover {
     background-color: #007bff; /* Change background on hover */
            color: white; /* Change text color on hover */
            border-color: #0056b3; /* Darker border on hover */
}

/* Mobile and tablet responsive adjustments */
@media (max-width: 1024px) {
    /* Adjust layout for tablets */
    .boxes {
        flex-direction: row; /* Keep row layout for tablets */
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Stack boxes vertically on smaller screens (mobile) */
    .boxes {
        flex-direction: column;
        align-items: center;
    }

    .box1 {
        width: 90%; /* Make the boxes take up most of the width */
        margin-bottom: 20px;
    }

    header h1 {
        font-size: 28px; /* Smaller font size for the header */
    }

    .subheader {
        font-size: 20px; /* Adjust subheader size */
    }

    .box-content {
        font-size: 14px; /* Smaller font size for content */
    }

    .action-button {
        padding: 10px 20px;
        font-size: 16px; /* Slightly smaller button for mobile */
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens (e.g., large phones) */
    .box1 {
        width: 100%; /* Full width for each box */
        padding: 15px; /* Less padding */
    }

    .icon img {
        width: 80px; /* Smaller image size for smaller screens */
        height: 80px;
    }

    header h1 {
        font-size: 24px; /* Smaller header for very small screens */
    }

    .subheader {
        font-size: 18px;
    }

    .box-content {
        font-size: 13px;
    }

    .action-button {
        font-size: 14px; /* Even smaller button on very small screens */
    }
}

     /* General Styling for the Story Section */
        .story-section {
            background-color: #f8f9fa; /* Light background color */
            padding: 50px 0; /* Space around the section */
            text-align: center; /* Center the content */
        }

        .containerrr {
            width: 90%; /* Full width with some padding */
            max-width: 1200px; /* Limit the max width for larger screens */
            margin: 0 auto; /* Center the container */
        }

        .contentt {
            padding: 20px;
        }

        .section-title {
            font-size: 2.5rem; /* Make the title large */
            color: #002578; /* Dark color for readability */
            margin-bottom: 20px; /* Space below the title */
            font-weight: bold; /* Bold title */
            text-transform: uppercase; /* Optional: Makes title all uppercase */
            letter-spacing: 1px; /* Adds some spacing between letters */
        }

        .descriptionn {
            font-size: 1.1rem; /* Slightly larger text for description */
            color: #666; /* Lighter color for the text */
            line-height: 1.6; /* More spacing between lines */
            margin-bottom: 30px; /* Space below the paragraph */
            max-width: 900px; /* Limit the width of the text block */
            margin-left: auto; /* Center align */
            margin-right: auto; /* Center align */
        }

        .learn-more {
            font-size: 1rem; /* Font size for the button */
            color: #007bff; /* Blue color for the link */
            text-decoration: none; /* Remove underline */
            padding: 10px 20px; /* Space around the button */
            border-radius: 25px; /* Rounded corners */
            background-color: #f8f9fa; /* Light background color */
            border: 2px solid #007bff; /* Blue border */
            transition: all 0.3s ease; /* Smooth transition effect */
        }

        .learn-more:hover {
            background-color: #007bff; /* Change background on hover */
            color: white; /* Change text color on hover */
            border-color: #0056b3; /* Darker border on hover */
        }

     /* General Styling for the Service Section */
        .service-container {
            text-align: center;
            padding: 40px 0;
            background-color: #fff; /* Light background */
        }

        .service-heading {
            font-size: 2.5rem; /* Large title font size */
            color: #333; /* Dark text color */
            margin-bottom: 20px; /* Space below the title */
            font-weight: bold;
            text-transform: uppercase; /* Uppercase for emphasis */
        }

        .highlight-text {
            color: #007bff; /* Blue color for the highlighted part */
        }

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 30px;
        }

        /* Styling for Left Column */
        .text-column {
            flex: 1 1 45%;
            margin-right: 5%; /* Space between columns */
        }

        .text-column p {
            font-size: 1.1rem;
            color: #555; /* Darker gray text */
            line-height: 1.6; /* Line height for readability */
            text-align: left;
        }

        /* Styling for Right Column */
        .list-column {
            flex: 1 1 45%;
        }

        .process-list ul {
            list-style-type: none; /* Remove default list style */
            padding: 0;
        }

        .process-list li {
            font-size: 1.1rem;
            color: #333;
            padding: 10px 0;
            border-bottom: 1px solid #ddd; /* Line between items */
            display: flex;
            align-items: center; /* Align icons and text */
            font-family:'Roboto', Sans-Serif;
        }

        .process-list li i {
            margin-right: 10px; /* Space between icon and text */
            color: #007bff; /* Icon color */
        }

        .process-list li:last-child {
            border-bottom: none; /* Remove bottom border for the last item */
        }
        
        /* Responsiveness: Stack columns on small screens */
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
                align-items: center;
            }

            .text-column,
            .list-column {
                flex: 1 1 100%;
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
        
             .resources-container {
            position: relative;
            width: 100%;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            justify-content: center;
            align-items: start;
        }
        .resources-item {
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-sizing: border-box;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .resources-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        .resources-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #333;
        }
        .resources-item p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }
        .resources-item iframe {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            margin-bottom: 15px;
            border: none;
        }
        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        .button:hover {
            background-color: #0056b3;
        }

        /* Desktop adjustments */
        @media (min-width: 1025px) {
            .resources-container {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .resources-item:nth-child(2) {
                transform: translateY(-30px);
            }

            .resources-item:nth-child(3) {
                transform: translateY(-30px);
            }
        }

        /* Mobile responsive adjustments */
        @media (max-width: 1024px) {
            .resources-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .resources-item:nth-child(2),
            .resources-item:nth-child(3) {
                transform: none;
            }
        }
        
        .responsive-img {
    max-width: 100%;  /* Makes sure the image scales down to fit the container */
    height: auto;     /* Maintains the aspect ratio of the image */
}

.automation-img {
    /* Add custom styling for the class if needed */
    display: block;  /* Ensures the image is displayed as a block-level element */
    margin: 0 auto;  /* Centers the image horizontally */
    padding: 10px;   /* Optional padding */
}

/* Optional: Mobile-specific responsiveness */
@media (max-width: 768px) {
    .responsive-img {
        width: 100%;  /* Ensures image takes full width on mobile */
    }
}
.testimonial-slider {
  max-width: 800px;  /* Increased width */
  height: 300px;     /* Increased height */
  margin: 50px auto;
  position: relative;
  
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fff;
  display: flex;        /* Use flexbox layout */
  align-items: center;  /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  padding: 0 40px;     /* Adjusted padding to leave space for chevrons */
}

.testimonial-slide {
  display: none;
  text-align: center;
  width: 100%;
}

.testimonial-text {
  font-size: 1.4rem; /* Adjusted for bigger box */
  font-style: italic;
}

.testimonial-author {
  margin-top: 10px;
  font-weight: bold;
}

.active {
  display: block;
}

/* Chevron Styles */
.chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.left-chevron {
  left: 10px;
}

.right-chevron {
  right: 10px;
}

.chevron:hover {
  color: #007bff; /* Change color on hover */
}
     /*---------------------------------*/
    
    footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        padding: 5px 0;
        font-size: 14px;
}

.footer-links a {
    text-decoration: none;
        color: #333;
        padding: 5px 10px;
        transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
}

.vertical-line {
    height: 20px; /* Adjust the height of the line */
    border-left: 2px solid black; /* Vertical line */
    margin: 0 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    footer h2 {
        font-size: 20px; /* Smaller font size for h2 on mobile */
        margin-bottom: 15px;
    }

    .footer-links {
        flex-direction: column;
            text-align: center;
    }

    .vertical-line {
        height: 15px; /* Slightly shorter vertical line for smaller screens */
        margin: 0 15px; /* Adjust space between lines */
    }
}

@media (max-width: 480px) {
    footer h2 {
        font-size: 18px; /* Smaller font size on very small screens */
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px; /* Smaller font size for links on very small screens */
    }

    .vertical-line {
        height: 12px; /* Even shorter vertical line on very small screens */
        margin: 0 10px; /* Reduce space between lines */
    }
}

/*---------------------------------*/
<style>
      /* HERO SECTION */
       .main-banner {
           background: linear-gradient(to right, #002578, #007bff);
           color: white !important;
           padding: 60px 20px;
           text-align: center;
          
       }
       .banner-title {
           font-size: 3.5rem;
           font-weight: bold;
           color:White !important;
       }
       .banner-subtitle {
           font-size: 1.4rem;
           margin: 10px 0;
           color:White !important;
       }
       .cta-button {
           display: inline-block;
           background: #ffcc00;
           color: #002578;
           padding: 12px 20px;
           font-size: 1.1rem;
           font-weight: bold;
           border-radius: 8px;
           text-decoration: none;
           margin-top: 20px;
       }
       .cta-button:hover {
           background: #e6b800;
       }
    
       
</style>
<style>
    .final-verdict {
           background: #ffffff;
           padding: 40px;
           text-align: left;
           margin-top: 30px;
       }
       .final-verdict h2 {
           color: #002578;
           font-size: 1.8rem;
           margin-bottom: 20px;
           font-weight: bold;
           text-align:center;
       }
       .final-verdict p {
           font-size: 1.2rem;
           margin-bottom: 15px;
           color: #333;
           font-family:'Roboto',sans-serif;
           text-align:left;
       }
       .final-verdict ul {
           list-style-type: disc;
           padding-left: 20px;
           max-width: 800px;
          
       }
       .final-verdict ul li {
           font-size: 1.1rem;
           margin-bottom: 10px;
           color: #555;
           font-family:'Roboto',sans-serif;
           text-align:left;
       }
       .final-verdict ul li strong {
           color: #000;
       }
       .gov-head
       {
           color: #002578;
    text-align: center;
    font-size: 1.8rem;
           }
       .gov-subhead
       {
           color: #000;
    font-size: 1.4rem;
           }
           
           /* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .final-verdict {
        padding: 20px; /* Reduce padding for smaller screens */
        margin-top: 15px; /* Reduce top margin for smaller screens */
    }

    .final-verdict h2 {
        font-size: 1.5rem; /* Reduce font size for mobile */
        margin-bottom: 15px; /* Reduce bottom margin for mobile */
    }

    .final-verdict p {
        font-size: 1rem; /* Adjust paragraph font size for smaller screens */
        margin-bottom: 10px; /* Reduce margin for mobile */
    }

    .final-verdict ul li {
        font-size: 1rem; /* Adjust list item font size for mobile */
        margin-bottom: 8px; /* Reduce list item margin for mobile */
    }

    .gov-head {
        font-size: 1.6rem; /* Adjust headline size for smaller screens */
    }

    .gov-subhead {
        font-size: 1.2rem; /* Adjust subheading font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .final-verdict {
        padding: 15px; /* Further reduce padding for very small screens */
    }

    .final-verdict h2 {
        font-size: 1.3rem; /* Further reduce font size for very small screens */
    }

    .final-verdict p {
        font-size: 0.95rem; /* Further reduce paragraph font size */
    }

    .final-verdict ul li {
        font-size: 0.95rem; /* Adjust list item font size for very small screens */
    }

    .gov-head {
        font-size: 1.4rem; /* Adjust headline size for small mobile screens */
    }

    .gov-subhead {
        font-size: 1rem; /* Adjust subheading font size for small mobile screens */
    }
}
</style>
<style>
 /* Hero Section */
        .hero-section {
            max-width: 900px;
            margin: auto;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-title {
            font-size: 28px;
            font-weight: bold;
            color: #007bb5;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 20px;
            color: #555;
        }

        /* Hero Challenges Container */
        .hero-challenges {
            display: flex;
            flex-direction: column;
            gap: 15px; /* Spacing between each problem-solution pair */
            margin-top: 20px;
        }

        /* Individual Problem-Solution Row */
        .hero-problem {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        /* Problem Text (?) */
        .problem-text {
            flex: 1; /* Makes both sides take equal space */
            color: red;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px; /* Spacing between icon and text */
        }

        /* Solution Text (?) */
        .solution-text {
            flex: 1; /* Makes both sides take equal space */
            color: green;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px; /* Spacing between icon and text */
        }

        /* Hover Effect */
        .hero-problem:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        /* CTA Section */
        .hero-cta {
            margin-top: 30px;
        }

        .cta-text {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .cta-button {
            display: inline-block;
            background: #ff6b81;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            transition: 0.3s;
        }

        .cta-button:hover {
            background: #d94f66;
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-problem {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .problem-text, .solution-text {
                justify-content: center;
                text-align: center;
            }
        }
</style>