* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/*************************************************************************
                            Navbar Section Start
 *************************************************************************/

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* justify-content:space-between; */
}

.logo-size{
  width:10rem;
  height:2rem;
}
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #007bff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0056b3;
}

.menu-icon {
  font-size: 28px;
  display: none;
  cursor: pointer;
  color: #007bff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}


/*************************************************************************
                            Hero Section Start
 *************************************************************************/

.hero {
  background-color: #f5f9ff; /* light blue background */
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.hero-text {
  flex: 1;
  animation: fadeSlideInLeft 1.2s ease-out;

}

.hero-text h1 {
  font-size: 40px;
  color: #003366; 
  margin-bottom: 10px;
}
.hero-text h2{
  text-transform: uppercase;
  font-size:30px;
  color: #003366; 
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-about {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.btn-about:hover {
  background-color: #0056b3;
}

.hero-image {
  flex: 1;
  text-align: center;
  animation: fadeSlideInRight 1.2s ease-out;

}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text h2 {
    font-size: 18px;
  }
  .hero-text p {
    font-size: 16px;
  }

  .btn-about {
    padding: 10px 20px;
  }
}

@keyframes fadeSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  color: #003366;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


.modal-content h2, .modal-content h3{
  text-align: center;
  padding-bottom: 1.5rem;
}
.modal-content p {
  font-size: 1.2rem;
  text-align: justify;
  padding-bottom: 1.5rem;
}
.modal-content p span {
  font-weight: 600;
}




/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #999;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

/* Founder Section */
.founder-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 20px; */
}

.founder-img {
  /* width: 140px;
  height: 140px; */
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 5px solid;
 border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(45deg, #003366, #007bff);
  animation: pulse-border 2s infinite;
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pulsing border animation */
@keyframes pulse-border {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 15px 10px rgba(0, 123, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .modal-content {
    padding: 20px;
  }

  .founder-info p {
    text-align: center;
  }
}


/*************************************************************************
                          Industry Section Start
 *************************************************************************/

.industries {
  background-color: #f5f9ff;
  padding: 60px 20px;
}

.industries .industry-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.industries h2 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 35px;
}

.industries p {
  font-size: 16px;
  color: #555;
  margin-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 70px;
}

.industry-item {
  background-color: #fff;
  padding: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.industry-item i {
  font-size: 35px;
  color: #007bff;
}



.industry-item span {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  text-align: left;
}

.industry-item:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .industries h2 {
    font-size: 28px;
  }
  .industries p {
    font-size: 15px;
  }
  .industry-list {
    gap: 20px;
  }
  .industry-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .industry-item {
    flex-direction: row;
    justify-content: flex-start;
  }

  .industry-item span {
    font-size: 15px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 70px;
  }
}


/*************************************************************************
                          Slogan Section Start
 *************************************************************************/

.slogan-section {
  background-image:url('../image/slogan-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 180px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Overlay for better readability */
.slogan-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 51, 102, 0.6); 
  z-index: -1;
}

.slogan-container {
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.slogan-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}
.slogan-title span{
  color:rgb(123, 249, 123);
}

.slogan-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #e0f0ff;
}


/*************************************************************************
                          Service Section Start
 *************************************************************************/

.services-section {
  background-color: #f5f9ff;
  padding: 60px 20px;
  color: #003366;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
  color: #003366;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 70px;
  color: #555;
}
.services-container {
    max-width: 1200px;
    margin: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 70px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.1);
  transition: transform 0.3s ease;
  border-left: 5px solid #003366;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #007bff;
  /* color: #003366; */
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #444;
}
@media (max-width: 480px) {
  .services-grid {
    gap: 20px;
  }
}


/*************************************************************************
                          Freelancing Section Start
 *************************************************************************/


.freelancing-section {
  background-color: #003366;
  padding: 60px 20px;
  color: #007bff;
  text-align: center;
}

.freelancing-container {
  max-width: 900px;
  margin: auto;
}

.freelancing-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #007bff;
}

.freelancing-content p {
  font-size: 17px;
  margin-bottom: 25px;
  
  color: #f5f9ff;
}

.freelancing-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.freelancing-benefits li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #f5f9ff;
}

.freelancing-benefits i {
  margin-right: 10px;
  color: #007bff;
}

.freelancing-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;

  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.freelancing-btn:hover {
  background-color: #0055aa;
}

/*************************************************************************
                          Contact Us Section Start
 *************************************************************************/

.contact-section {
  background-color: #f5f9ff;
  padding: 60px 20px;
  color: #003366;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #003366;
}

.contact-info p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #003366;
}

.contact-information {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.contact-information li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #003366;
}

.contact-information i {
  margin-right: 10px;
  color: #007bff;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #007bff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #003366;
}

.contact-form {
  flex: 1 1 400px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.contact-form button {
  align-self: flex-start; /* Align left */
  padding: 12px 30px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.contact-form button:hover {
  background-color: #003366;
}



/*************************************************************************
                          Footer Section Start
 *************************************************************************/

.footer-section {
  background-color: #003366;
  color: #ffffff;
  padding: 40px 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-logo {
  width: 10rem;
  height: 2.5rem;
  margin-bottom: 15px;
  border:5px solid rgb(185, 185, 247);
  border-radius: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-contact li {
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 10px;
  color: #ffffff;
}

.footer-social a {
  display: inline-block;
  margin-right: 20px;
  font-size: 18px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00aced;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00aced;
}

/* Footer Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  background-color: #002244;
  font-size: 14px;
  margin-top: 40px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 468px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    text-align: left;
  }
  .footer-column {
  flex: 1 1 120px;
}
}





