*{
    padding: 0;
    margin: 0;
    text-decoration:none ;
    list-style: none; 
    /* overflow-x: hidden; */

}
body{
    /*font-family: Arial, Helvetica, sans-serif;*/
    padding: 0;
    margin: 0;
}

/* This file contains styling elements for the search engine. Add the following code to a file called “style.css“: */

input[type=text]:hover {
   cursor: pointer;
   background-color: white;
}
/* Navigation bar */

nav {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.logo img {
  height: 100px;
  width: 150;
}

/* Navigation menu */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.nav-menu a {
  text-decoration: none;
  padding: 10px 20px;
  color: #071952;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.nav-menu a.active {
  font-weight: bold;
  background-color: white;
  color: #2845D6 ;
}

.nav-menu a:hover {
  background-color: #f0f0f0;
}

.nav-menu a.active:hover {
  background-color: white;
}

/* Hamburger toggle button - hidden by default */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #2845D6;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

/* Mobile styles - for screens smaller than 768px */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-menu.active {
    max-height: 400px;
    padding: 20px 0;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    display: block;
    padding: 15px 20px;
    width: 100%;
  }
  
  /* Animate hamburger to X when active */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}


@media screen and (max-width: 500px) {
 nav a {
    float: none;
    display: block;
  }
}
/* navigation bar */
/* Services Section */
#section-c {
  padding: 60px 20px;
 
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  color: black;
  margin-bottom: 50px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* 2x2 Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Service Cards */
.service-card {
  background-color: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-card {
    padding: 25px 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    gap: 25px;
  }
  
  .service-card {
    padding: 30px 25px;
  }
}
/* Contact Section */
.container11 {
  max-width: 100%;
  margin-top: 0px;
  padding: 40px 20px;
  background:url('images/contact.jpg') center/cover;
}

.container11 h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #071952;
  
  font-weight: bold;
}

/* Two Column Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column - Form */
.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #071952;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #071952;
}

/* Right Column - Contact Details */
.contact-details {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: bold;
}

.detail-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.detail-item:last-of-type {
  border-bottom: none;
}

.detail-item strong {
  display: block;
  color: #007bff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.detail-item p {
  margin: 5px 0;
  color: #666;
  line-height: 1.6;
}

.social-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #eee;
}

.social-links h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .container11 h2 {
    font-size: 2rem;
  }
  
  .contact-details h3 {
    font-size: 1.5rem;
  }
}

/*contact pop-up*/
.modal{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50vw;
}

.modal::before{
    content: '';
    width: 200vw;
    height: 200vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
    z-index: 1;
}

.modal>.wrapper{
    position: relative;
    z-index: 2;
    width: 70%;
    height: 80%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 5rem;
}

.modal .wrapper .close{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #EB6440;
    color: white;
    width: 5rem;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
    font-size: 25px;
    transform: translate(50%,-50%);
    cursor: pointer;
    outline:4px solid rgb(0 0 0/.2) ;
    cursor: pointer;
    transition: transform .3s ease-in-out;
}

.modal .wrapper .close{
    transform: translate(50%,-50%) scale(1.1);
}

.modal .wrapper .icon{
    width: 3rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: .5rem;
}

/* .modal .wrapper .icon.fail{
    border: 2px solid #e33636;
    color: #e33636;
} */

.modal .wrapper h1{
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.modal .wrapper p{
    width: 50ch;
    text-align: center;
}

.modal .wrapper p em{
    font-weight: 500;
}

.modal .wrapper a{
    background-color: #F94C10;
    color: white;
    padding: .5rem 1rem;
    border-radius: 5rem;
    font-size: 16px;
    text-decoration: none;
    margin-top: 1rem;
    transition: transform .3s ease-in-out;
}

.modal .wrapper a::first-letter{
    text-transform: capitalize;
}

.modal .wrapper a:hover{
    transform: scale(1.2);
}
/*contact pop-up*/

/* slide show */
/* ========== SLIDESHOW FIXES ========== */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.mySlides {
  display: none;
  position: relative;
  width: 100%;
  height: 500px;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay for better text readability */
.mySlides.bright::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Slideshow Text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.centered h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.centered p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Get Started Button */
.centered_1 {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: #007bff;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.centered_1:hover {
  background-color: #0056b3;
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

/* Prev/Next Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  transition: 0.3s ease;
  border-radius: 0 5px 5px 0;
  user-select: none;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.3);
}

.next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Dots */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
  background-color: #007bff;
}

/* Responsive Slideshow */
@media screen and (max-width: 768px) {
  .mySlides {
    height: 400px;
  }
  
  .centered h1 {
    font-size: 1.8rem;
  }
  
  .centered p {
    font-size: 1rem;
  }
  
  .centered_1 {
    padding: 12px 30px;
    font-size: 1rem;
    bottom: 60px;
  }
  
  .prev, .next {
    font-size: 1.5rem;
    padding: 12px;
  }
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-us {
  padding: 60px 20px;
  background: url('images/tech 19.jpg') center/cover;
  text-align: center;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: bold;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  /*background-color: #fff;*/
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  font-size: 1.3rem;
  color: #007bff;
  margin: 0;
  font-weight: 600;
}

/* ========== CALL TO ACTION SECTION ========== */
.cta-section {
  padding: 80px 20px;
  background-color:#4988C4;
  color: #fff;
  text-align: center;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  padding: 15px 50px;
  background-color: #fff;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}
/* slide show */


/* contact form */
.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #BA94D1;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	text-align: center;
    color: #ffff;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
     text-align:center;
    font-size: 20px;
    
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  text-align: left;
  margin-left:20px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="date"] 
  input [type="tel"]
  {
    width: 50%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
  
  }
  
  input[type="submit"] {
    background-color: #E0144C;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #5F9DF7;
  }
  
/* contact form */

/* Title */

.header-title {
    background-color: #E5CFF7;
    color: #191717;
    text-align: center;
    padding: 20px;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}


/*.cta-button {
    background-color: #E5CFF7;
    color: #191717;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    
}*/

/* Title */

/* Features */
h3{
    font-size: 30px;
    text-align: center;
    color: #071952;
}

.features-img {
    width: 100% ;
    height: 80% ;
}

/*#features button .ban1 button{
    width: 150px;
    border: 1px solid 9336B4;
    border-radius: 5px;
    padding: 7px;
    margin-left: 15px;
    background-color: #9681EB;
}*/

/* review */
.ban1 button{
    width: 150px;
    border: 1px solid 9336B4;
    border-radius: 5px;
    padding: 10px;
    margin-left: 15px;
    background-color: #9681EB;
    margin-top: 10px;
}

.ban1 p{
  font-size: 25px;
  color:#FF0060 ;
  margin-left: 10px;
}

.review p{
    font-size: 16px;
    padding: 10px;
}



/* Float three columns side by side */
.column {
    float:left;
    width: 30%;
    margin: 18px;
    color: #44444E;
}


/* Remove extra left and right margins,due to padding in columns */
.row {margin: 0 -5px;}

/* clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive columns -one column layout (vertical) on small screens */
@media screen and (max-width:600px){
    .column {
        width: 100%;
        display: block;
        margin-bottom:20px ;
    }

}
.para-1 {
    font-size: 20px;
    margin-top: 5px;
    color: #9681EB;
    
}

.para-2 {
    margin-top: 5px;
    background-color: #8B1874;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 5px;
    border-radius: 50px;
    margin-left: 100px;
    margin: 20px;
}
.para-3 {
    margin-top: 20px;
    background-color: #8B1874;
    font-size:20px;
    font-weight: bold;
    color: #fff;
    padding: 5px;
    border-radius: 50px;
    margin-left: 100px;
    margin: 20px;
}
.para-4 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    background-color: #8B1874;
    padding: 5px;
    text-decoration: none;
    margin-left: 100px;
    margin: 20px;
}

/* Features */

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 20px;
  /*background-color: #f8f9fa;*/
  text-align: center;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #071952;
  margin-bottom: 40px;
  font-weight: bold;
}

.Features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  background-color: #1C4D8D;
  padding: 30px 20px;
  border-radius: 10px;
  /*box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);*/
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  /*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);*/
}

.feature-item h3 {
  font-size: 1.3rem;
  color: white;
  margin: 0;
  font-weight: 600;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }
  
  .Features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item h3 {
    font-size: 1.1rem;
  }
}



/* Footer Styles */
.site-footer {
    /*background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);*/
    background-color: #071952;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 40px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 200px;
    width: auto;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-contact i {
    /*color: #667eea;*/
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact span {
    line-height: 1.6;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links span {
    color: #bdc3c7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* About Page Styles */

/* Hero Section */

.about-hero {
    color: #071952;
    padding: 100px 20px;
    text-align: center;
    background:url('images/about.jpg') center/cover;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
    color:#071952;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Common Container */
.container_11 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Our Story Section */
.our-story {
    margin-top: 0px;
    /*padding: 80px 20px;*/
    background-color: #fff;
}

.our-story h2 {
    font-size: 2.5rem;
    color: #333;
    /*margin-bottom: 30px;*/
    text-align: center;
}

.our-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}


/* Values Section */
.values {
    padding: 80px 20px;
    background-color: #4988C4;
    /*background:url('images/values.jpg') center/cover;*/
}

.values h2 {
    font-size: 2.5rem;
    color: #F6F6F6;
    margin-bottom: 30px;
    text-align: center;
}

.values-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.team h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.team-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.member-info .role {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-info .department {
    font-size: 1rem;
    color: #888;
    margin-bottom: 20px;
}

.member-info .social-links {
    font-size: 1rem;
}

.member-info .social-links a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.member-info .social-links a:hover {
    text-decoration: underline;
}

/* Join Team Section */
.join-team {
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    background-color: #1A2A80;
}

.join-team h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-team p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
/*service*/
.cta-button1{
    display: inline-block;
    padding: 15px 40px;
    background-color: #CBDCEB;
    color: #161E54;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
/*service*/


.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    h2 {
        font-size: 2rem !important;
    }
}

/* Services Page Styles */

/* Hero Section */
.services-hero {
    background: url('images/tech 16.jpg') center/cover;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.services-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.services-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Introduction Section */
.services-intro {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

/* Services Details Section */
.services-details {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.service-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 4rem;
    min-width: 80px;
    text-align: center;
}

.service-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.best-for {
    background-color: #e7f3ff;
    padding: 15px 20px;
    border-left: 4px solid #007bff;
    border-radius: 5px;
    color: #333;
    font-size: 1rem;
    margin-top: 20px;
}

.best-for strong {
    color: #007bff;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 20px;
    background: url('images/tech 13.jpg') center/cover;
}

.how-we-work h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #071952;
    margin-bottom: 60px;
    font-weight: bold;
}

.work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #071952;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    padding: 80px 20px;
    color: #061E29;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-detail {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .how-we-work h2 {
        font-size: 2rem;
    }
    
    .work-process {
        grid-template-columns: 1fr;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
}


/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.3rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert strong {
    font-weight: 600;
}

/* ========== AUTHENTICATION PAGES ========== */

.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background:url('images/tech 11.jpg') center/cover;
}

.auth-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.auth-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.auth-form label i {
    margin-right: 8px;
    color: #007bff;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #007bff;
}

.auth-form small {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-group-remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-group-remember label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.auth-btn i {
    margin-right: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.95rem;
}

.auth-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ========== DASHBOARD ========== */

.dashboard-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.dashboard-header p {
    font-size: 1.1rem;
    color: #666;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.dashboard-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.dashboard-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.profile-info {
    text-align: left;
    margin-bottom: 20px;
}

.profile-info p {
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.profile-info p:last-child {
    border-bottom: none;
}

.profile-info strong {
    color: #333;
    display: inline-block;
    min-width: 120px;
}

.card-link {
    display: inline-block;
    padding: 10px 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

.card-link:hover {
    background-color: #0056b3;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .auth-container {
        padding: 30px 20px;
    }
    
    .auth-container h2 {
        font-size: 1.7rem;
    }
    
    .dashboard-header h1 {
        font-size: 2rem;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    
    .form-group-remember {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}