/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; /* Make the html and body stretch to the full height of the viewport */
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
}

.wrapper {
  flex: 1; /* Push the footer to the bottom */
}
/*===============Header===============*/
 /* Header Styles */
    /* Global Variables: Direct use of class names */
    .navbar-custom {
      --navbar-bg-color: #0b1a2d;
      --navbar-text-color: white;
      --navbar-toggler-color: white;
      --offcanvas-bg-color: #0b1a2d;
      --button-bg: #0b1a2d;
      --button-hover-bg: #0b1a5d;
      --button-text-color: white;
    }

    header {
      background-color: #0b1a2d;
      color: white;
    }

    header .logo img {
      height: 50px;
    }

    header nav .btn {
      background-color: #0b1a2d;
      color: white;
      border: none;
      text-transform: uppercase;
      font-size: 0.9rem;
      padding: 10px 15px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1rem;
      font-weight: 600;
    }

    header nav .btn:hover {
      background-color: #0b1a5d;
      transform: scale(1.05);
    }

    header nav .btn + .btn {
      margin-left: 10px; /* Add space between buttons */
    }

    .navbar-toggler {
      border: 2px solid white;
    }

    /* Toggler Icon without using pseudo-elements */
    .navbar-toggler-icon {
      display: block;
      width: 30px;  /* Adjust size */
      height: 3px;  /* Thickness of each bar */
      background-color: white;
      position: relative;
    }

    /* Bar styling inside the toggler icon (with separate divs) */
    .navbar-toggler-icon .bar {
      display: block;
      width: 30px;
      height: 3px;
      background-color: white;
      margin: 5px 0;
    }

    /* Offcanvas Button Styles */
    .offcanvas .btn {
      display: block;
      width: 100%;
      margin-bottom: 10px; /* Add spacing between buttons */
      background-color: #0b1a2d;
      color: white;
      border: none;
      text-transform: uppercase;
      font-size: 1rem;
      padding: 12px 15px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .offcanvas .btn:hover {
      background-color: #0b1a5d;
      transform: scale(1.05);
    }

    /* Offcanvas Background Color */
    .offcanvas {
      background-color: #0b1a2d;
    }

    .offcanvas-title {
      color: white;
    }
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px; /* Increased padding for more space */
    background-image: url('Image/herobg.jpg');
    background-size: cover;
    background-position: center;
    color: white;

    font-family: 'Poppins', sans-serif; 

}
.hero-text {
    max-width: 50%;
}

.hero-text .herotitle {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #01fdfd, #2596be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
	padding-top:50px;
}

@media (max-width: 768px) {
    .herotitle {
        font-size: 3rem !important; /* Ensure it's applied */
		text-align: left; /* Align text left for smaller screens */
    }
}

@media (max-width: 480px) {
    .herotitle {
        font-size: 2.5rem !important; /* Smaller on very small screens */
		text-align: left; /* Align text left for smaller screens */
    }
}
.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    background: linear-gradient(180deg, white, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600	;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
	 line-height: 1.8;
text-align: left; /* Align text left for smaller screens */
}




.hero-text .cta-buttons {
    margin-top: 20px;
    margin-bottom: 20px;  /* Add space between top and bottom of the cta-buttons */
	text-align: left; /* Align text left for smaller screens */
}

.hero-text .cta-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background: ;
    border: 2px solid #01fdfd;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 10px;  /* Optional: Adjust this value to control space above each button */
    margin-bottom: 10px;  /* Add space between buttons */
	
}

.hero-text .cta-buttons a:hover {
    background: #00203F;
    color: #01fdfd;
    transform: scale(1.1);
}

.cta-buttons a:hover {
    background-color: #ffffff;
    color: black;
}
/* Dropdown styles for desktop view */
.dropdown-container {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Positioned below the button */
  left: 0;
  background-color: var(--navbar-bg-color);
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 10;
}

.dropdown-menu .dropdown-item {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--button-text-color);
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--button-hover-bg);
}

/* Show dropdown on hover */
.dropdown-container:hover .dropdown-menu {
  display: block;
}

/* Media query for desktop view */
@media (min-width: 768px) {
  .dropdown-container {
    display: inline-block;
  }
}


.hero-text p {
    font-size: 1.2rem;
    line-height: 1.5em;
}

        .cta-buttons a:hover {
            background-color: #ffffff;
			color:black;
        }

        .hero-image {
            max-width: 30%;
        }

        .hero-image img {
            width: 100%;
            border-radius: 10px;

        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }

            .hero-text {
                max-width: 100%;
                margin-bottom: 30px;
            }

            .hero-image {
                max-width: 80%;
            }
        }
.mrslname{
color:#08ecec;
}


.hero-image {
  margin: 45px 0;
  display: flex;
  justify-content: center; /* Center align the image horizontally */
}

.hero-image img {
  max-width: 100%; /* Prevents the image from exceeding its container */
  height: auto; /* Maintains aspect ratio */
  animation: upDown 5s infinite ease-in-out; /* Smooth up-down animation */
}

/* Keyframes for the bouncing animation */
@keyframes upDown {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* Media Query Adjustments for Smaller Screens */
@media (max-width: 768px) {
  .hero-image {
    margin: 30px 0; /* Reduce margin for smaller devices */
  }
  .hero-image img {
    max-width: 90%; /* Slight padding to give space on small screens */
  }
}

@media (max-width: 480px) {
  .hero-image {
    margin: 20px 0; /* Further reduce margin for very small screens */
  }
  .hero-image img {
    max-width: 80%; /* Constrain further */
  }
}



.software-development {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Adjust spacing between rows */

  
}

.software-development .block1 {
  display: flex;
  gap: 400px;
  padding-right: 150px;
  padding-left: 150px;
  padding-bottom:25px;
  padding-top:25px;

}
}

.software-development .block1:nth-child(odd) {
  flex-direction: row; /* Image on the left, text on the right */
}

.software-development .block1:nth-child(even) {
  flex-direction: row-reverse; /* Image on the right, text on the left */
}
.space2{
	  padding-right: 150px;
	  padding-top: 50px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.solution-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between images */
    padding: 20px;
}
.solution {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;

}

.solution:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.solution {
  padding: 2px 16px;
}
.solution{
	   padding: 2rem 0;
}
section h2 {
    text-align: center;

}

.solution {
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.solution h3 {
    margin-top: 0;
}


.software-development img {
  width: 20%;
  height: 100%; /* Fixed height for consistency */
  object-fit: cover; /* Maintain aspect ratio */
  border-radius: 5px;
}

.software-development img{
transition: 1s ease;
}

.software-development img:hover{
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
transition: 1s ease;
}
.software-development .textexplenation {
  flex: 1;
  font-size: 22px;
  text-align: justify;
  line-height: 2 ;
  background-color:#f4f4f4;
  padding:20px;  flex: 1;
  font-size: 22px;
  text-align: justify;
  line-height: 2 ;
  background-color:#f4f4f4;
  padding:20px;
}

.software-development .textexplenation h3 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.textexplenation {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 40%;
}

.textexplenation:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.popout::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 20px;
  border-radius: inherit;
  background: repeating-linear-gradient(
    45deg,
    #f4f4f4,
    #f4f4f4 2px,
    transparent 2px,
    transparent 6px
  );
  transition: all 0.3s ease;
}

/* DEMO STYLES*/

.popout + .popout {
  border-radius: 30px;
  height: 400px;
}

.popout:hover::before {
  top: 40px;
  left: 40px;
}

.popout + .popout:hover::before {
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  top: -20px;
  left: -20px;
}
.container {
  padding: 2px 16px;
}
/*============================Softwaredev============================*/
.feature-section-container {
    background-color: #0C1B2E;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45vh; /* Reduced from 65vh to 45vh */
    padding: 20px;
    margin-top: -5px; /* Adjust value as necessary */
}

.feature-content-wrapper {
    display: flex;
    max-width: 1100px;
    gap: 20px; /* Space between image and content */
    width: 100%; /* Ensure content doesn't exceed parent container */
}

.feature-image-box {
    flex: 0 0 40%; /* Default size of the image box */
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex; /* Ensures stretching */
    align-items: stretch;
}

.feature-image-box img {
    width: 100%;
    height: 100%; /* Ensure the image stretches to match the parent container */
    object-fit: cover;
}

.feature-text-box {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-title {
  color: #0c1b2e;
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 42px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Text shadow */
}

.feature-paragraph {
  color: #0c1b2e;
  margin-top: 27px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Text shadow for the paragraph */
}

/* Responsive Styling */
@media (max-width: 939px) {
    .feature-section-container {
        min-height: auto; /* Allow section to expand dynamically */
        padding-bottom: 40px; /* Adds space at the bottom */
    }
.feature-image-box img {
    width: 100%;
    height: 100%; /* Ensure the image stretches to match the parent container */
    object-fit: cover;
}
    .feature-content-wrapper {
        align-items: center;
        text-align: center;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
    }


    .feature-text-box {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin: 10px 0;
        text-align: left;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .feature-title {
        font-size: 22px; /* Slightly larger for readability */
        font-weight: 700;
        margin-bottom: 8px; /* Adds spacing */
    }

    .feature-paragraph {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px; /* Prevents text crowding */
    }
}
@media (max-width: 383px) {
    .feature-section-container {
        min-height: auto; /* Allow section to expand dynamically */
        padding-bottom: 40px; /* Adds space at the bottom */
    }

    .feature-content-wrapper {
        align-items: center;
        text-align: center;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
    }


    .feature-text-box {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin: 10px 0;
        text-align: left;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .feature-title {
        font-size: 22px; /* Slightly larger for readability */
        font-weight: 700;
        margin-bottom: 8px; /* Adds spacing */
    }

    .feature-paragraph {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px; /* Prevents text crowding */
    }
}



/*============================slider============================*/
/* Slider Styling */
.slider .single-slider {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.single-slider .image{
  opacity: 0.1;
}
.slider .single-slider .text {
  margin-top: 120px;
}

.slider.index2 .single-slider .text {
  margin-top: 150px;
}

/* Media Query for Smaller Screens */
@media (max-width: 450px) {
  .slider .single-slider {
    height: 400px; /* Adjust slider height */
    background-size: contain; /* Ensure full image is visible */
  }

  /* Slider 1 */
  .single-slider:nth-of-type(1) {
    background-image: url('image/hey.jpg'); /* Replace with smaller image */
  }

  /* Slider 2 */
  .single-slider:nth-of-type(2) {
    background-image: url('image/hey.jpg'); /* Replace with smaller image */
  }

  /* Slider 3 */
  .single-slider:nth-of-type(3) {
    background-image: url('img/hey.jpg'); /* Replace with smaller image */
  }
}

/* Slider Text */
/* Header Text Style */
/* Header Text Style */
.slider .single-slider h1 {
  color: white;
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 42px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Text shadow */
}

/* Styled Span Element Inside h1 */
.slider .single-slider h1 span {
  color: #1a76d1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Text shadow for the span */
}

/* Paragraph Style */
.slider .single-slider p {
  color: white;
  margin-top: 27px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Text shadow for the paragraph */
}


.slider .single-slider .button {
  margin-top: 30px;
}

.slider .single-slider .btn {
  color: #fff;
  background: #1a76d1;
  font-weight: 500;
  display: inline-block;
  margin: 0;
  margin-right: 10px;
}

.slider .single-slider .btn:last-child {
  margin: 0;
}

.slider .single-slider .btn.primary {
  background: #0c1b2e;
  color: #fff;
  
}

.slider .single-slider .btn.primary:before {
  background: #0c1b2e;
}

/* Owl Carousel Navigation */
.slider .owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -25px;
}

.slider .owl-carousel .owl-nav div {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: #1a76d1;
  color: #fff;
  font-size: 26px;
  position: absolute;
  margin: 0;
  transition: all 0.4s ease;
  padding: 0;
  border-radius: 50%;
}

.slider .owl-carousel .owl-nav div:hover {
  background: #2c2d3f;
  color: #fff;
}

.slider .owl-carousel .owl-controls .owl-nav .owl-prev {
  left: 20px;
}

.slider .owl-carousel .owl-controls .owl-nav .owl-next {
  right: 20px;
}

/* Slider Animation */
.owl-item.active .single-slider h1 {
  animation: fadeInUp 1s both 0.6s;
}

.owl-item.active .single-slider p {
  animation: fadeInUp 1s both 1s;
}

.owl-item.active .single-slider .button {
  animation: fadeInDown 1s both 1.5s;
}

/*next*/
.features-title {
    text-align: center;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
    margin-bottom: 20px;
    color: black;
}

.features-cards {
    background: #1a3352;
    padding: 40px 20px;

}
.features-cards h1{
    background: #1a3352;
    padding: 40px 20px;
	color:white;
}
.features-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
	padding-top: 25px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3em;
    color: #0066cc;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}
.softdevtitle{}
.feature-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-card ul li {
    margin-bottom: 10px;
    font-size: 0.9em;
    line-height: 1.4;
}

.feature-card ul li strong {
    color: #0066cc;
}
/*============================Sponsors============================*/
    .double-underline-heading {
	  padding-top: 25px;
      text-align: center;
      position: relative;
      font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
      color: #000;
	  
    }

    .double-underline-heading::before,
    .double-underline-heading::after {
      content: "";
      display: block;
      height: 2px; /* Thickness of lines */
	  background: linear-gradient(90deg, #01fdfd, #2596be);/* Green color for the underlines */
      width: 50%; /* Adjust line width as needed */
      margin: 0 auto; /* Center the lines */
    }

    .double-underline-heading::before {
      position: relative;
      top: -10px; /* Adjust spacing above text */
    }

    .double-underline-heading::after {
      position: relative;
      top: 10px; /* Adjust spacing below text */
    }
/*============================footer============================*/
footer {
  background-color: #0c1b2d;
  color: #fff;
  padding: 40px 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  flex: 1;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  margin: 0;
  font-weight: bold;
}

.footer-about {
  flex: 1.5;
}

.footer-about h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.about-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-item img {
  width: 20px; /* Adjust icon size */
  height: 20px;
  margin-right: 15px;
}

.about-item p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-text {
  flex: 1.5;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.footer-text p {
  margin: 0;
  letter-spacing:3px;
}
.footerlink a{
color:white;
}
.footerlink :hover{
color:red;
}
.footer-container .cta-buttons {
    margin-top: 20px;
	margin-right:20px
}

.footer-container .cta-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background: ;
    border: 2px solid #01fdfd;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-container .cta-buttons a:hover {
    background: #00203F;
    color: #01fdfd;
    transform: scale(1.1);
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: underline;
}
.pop{
  animation: pop 3s ease-in-out;
}
.with-delay {
  animation-delay: 1s;
}
@keyframes pop{
  50%  {
    transform: scale(1.25);
  }
}
