/* =========================
   GLOBAL STYLES
========================= */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
section {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .card,
  .domain-card,
  .service-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 65vh;
  }

  .hero-content {
    padding: 0 15px;
    top: 55%;
  }

  .hero-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
/* =========================
FIXED STICKY NAVBAR (WORKING)
========================= */
.fixed-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

/* =========================
   TOP INFO BAR
========================= */
.top-bar {
  background-color: #123456;
  color: #fff;
  font-size: 26px;
}

.top-bar i {
  margin-right: 3px;
}

.top-bar a {
  color: #fff;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #9fd3ff;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  padding: 10px 0;
  z-index: 9999;
  position: fixed;
}

.navbar-brand {
  font-weight: 700;
  font-size: 22px;
  color: #0d6efd !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333 !important;
  margin-left: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0d6efd !important;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 0;
}

.dropdown-item:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* =========================
TOP BAR CONTACT
========================= */
.topbar-contact {
  font-size: 14px;
  color: #fff;
}

.about__information-data {
  display: flex;
  align-items: center;
  gap: 6px;
}

.about__information-icon {
  font-size: 18px;
  color: #fff;
}

.about__information-data a {
  color: #fff;
  text-decoration: none;
}

.about__information-data a:hover {
  text-decoration: underline;
}
/* =========================
   HERO / BANNER SECTION
========================= */
.hero-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.hero-nav button {
  pointer-events: auto;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
}

.hero-nav button:hover {
  background: rgba(128, 66, 66, 0.8);
}

.hero-section {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position:relative;
}


.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 52, 52, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 15px auto;
}

/* =========================
   PAGE HEADER (INNER PAGES)
========================= */
.page-header {
  background-color: #0d6efd;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.page-header h2 {
  font-weight: 700;
  margin-bottom: 0;
}

/* =========================
   SERVICES / CARDS
========================= */
.card {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  background-color: #0d6efd;
  border: none;
}

.btn-primary:hover {
  background-color: #084298;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* =========================
   CAREERS LIST
========================= */
.career-list li {
  background: #f8f9fa;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-left: 4px solid #0d6efd;
}

/* =========================
   CONTACT FORM
========================= */
.form-control {
  border-radius: 0;
  padding: 10px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #0d6efd;
}


/* =========================
RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }
 .hero-nav button {
  display: none;
 } 
}
:root {
  --primary: #0d6efd;
  --dark: #123456;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
}

.navbar-brand {
  color: var(--primary);
  font-weight: 700;
}

.top-bar {
  background-color: var(--dark);
  color: #fff;
}

footer {
  background-color: var(--dark);
  color: #fff;
}

/* =========================
LOGO (SVG)
========================= */
.logo-svg {
  height: 70px;      /* adjust as needed */
  width: auto;
}

@media (max-width: 768px) {
  .logo-svg {
    height: 34px;
  }
}

/* =========================
RESPONSIVE FIX
========================= */
@media (max-width: 768px) {
  .footer-logo-wrapper {
    margin: 0 auto;
    text-align: center;
  }
}

/* =========================
CAREERS PAGE
========================= */

.career-box {
  border: 1px solid #e3e3e3;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.career-box h5 {
  font-weight: 600;
}

.career-box ul {
  padding-left: 20px;
  list-style-type: disc;
}

.career-box ul li {
  margin-bottom: 6px;
  font-size: 15px;
}
/* =========================
CAREERS PAGE FIX
========================= */
.careers-section {
  background-color: #f8f9fb;
}

.career-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.career-content h3 {
  font-weight: 700;
}

.career-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

.career-content hr {
  width: 60px;
  border-top: 3px solid #0d6efd;
  margin: 20px 0;
}

.career-img {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .career-content {
    padding: 25px;
    text-align: center;
  }
  
  .career-content hr {
    margin: 20px auto;
  }
}
/* =========================
ORANGE INFO STRIP
========================= */
.info-strip {
  background-color: #f2a64a;
  padding: 25px 0;
}

.info-strip p {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
/* =========================
DOMAIN CARDS
========================= */
.domain-section {
  background: #f7f9fb;
}

.domain-card {
  background: #fff;
  padding: 35px 25px;
  height: 100%;
  border-radius: 1rem;
}

.domain-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.domain-card .sub-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.domain-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}
/* INTRO */
.highlight-text {
  color: #f39c12;
}

.intro-images {
  position: relative;
}

.small-img {
  width: 60%;
  position: absolute;
  bottom: -20px;
  right: -20px;
}

/* SERVICES */
.services-home {
  background: #f7f9fb;
}

.service-box {
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.btn-outline {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 18px;
  border: 1px solid #333;
  font-size: 14px;
}

/* CTA */
.cta-home {
  background: #222;
  color: #fff;
  padding: 80px 0;
}

.cta-home h2 {
  font-size: 42px;
  font-weight: 700;
}

/* MOBILE: hide email if needed */
@media (max-width: 576px) {
  .about__information-data span {
    font-size: 13px;
  }
}
/* =========================
FOOTER LAYOUT
========================= */
footer {
  background-color: #545d67; 
  padding: 60px 0 0;

}

.footer-bottom {
  background-color: #172f4d;
  color: #ffffffaa;
  text-align: center;
  padding: 6px 0;
  margin-top: 30px;
  font-size: 16px;
}
footer h5 {
  font-weight: 500;
  margin-bottom: 15px;
}

footer a {
  color: #ddd;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #3a75b4;
}
/* =========================
FOOTER LOGO FIX
========================= */
.footer-logo-wrapper {
  max-width: 250px;        
}
.footer-logo-img {
  max-width: 200px;       
  height: auto;            
  display: block;
}

/* Footer text */
.footer-text {
  font-size: 18px;
  color: #ffffff;
  margin-top: 1px;
  line-height: 1.2;
  
}
/* =========================
HERO SLIDER
========================= */
.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  animation: fadeUp 1.2s ease;
}

.hero-title {
  font-size: 46px;
  letter-spacing: 6px;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
  color: #ddd;
}

/* =========================
BUTTONS
========================= */
.hero-buttons {
  position: absolute;
  z-index: 5;
  bottom: 70px;
  width: 100%;
  text-align: center;
  margin-top: 25px;
}

.hero-btn-fill{
color: #fff;
text-decoration: none;
}

.hero-btn-outline {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 26px;
  margin-right: 10px;
  transition: 0.4s;
}

.hero-btn-outline:hover {
  background: #f39c12;
  border-color: #f39c12;
  color: #44598b;
  transform: translateY(-3px);
}

.hero-btn-fill {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 26px;
  border-radius: 1.25rem;
  /* transition: 0.4s; */
}

.hero-btn-fill:hover {
  border: #000;
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================
ANIMATION
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .hero-buttons {
    bottom: 40px;
  }
}
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
/* =========================
HOME CONTACT SECTION
========================= */
.home-contact {
  background: linear-gradient(135deg, #123456, #0d2c4f);
}

.home-contact h2 {
  font-weight: 700;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-list i {
  margin-right: 10px;
  color: #f2a64a;
}

.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.contact-box h4 {
  font-weight: 600;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .home-contact {
    text-align: center;
  }

  .contact-list li {
    justify-content: center;
  }
}

/* =========================
   STATS / ACHIEVEMENTS
========================= */
.stats-section {
  background: linear-gradient(135deg, #0d6efd, #123456);
  padding: 70px 0;
  color: #fff;
}

.stats-title {
  font-weight: 700;
  font-size: 34px;
}

.stats-subtitle {
  color: #d6e4ff;
  font-size: 16px;
  margin-top: 8px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.stat-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffd166;
}

.stat-card h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 15px;
  margin: 0;
  color: #f1f1f1;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-title {
    font-size: 26px;
  }

  .stat-card h2 {
    font-size: 34px;
  }
}
/* =========================
HOME PAGE – IMPACT SECTION
========================= */
.home-impact {
  background-color: #859fc5;
}

.impact-title {
  font-size: 36px;
  font-weight: 700;
  color: #123456;
}

.impact-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 10px auto 0;
}

.impact-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.impact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.impact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.impact-box h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.impact-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .impact-title {
    font-size: 26px;
  }

  .impact-box h3 {
    font-size: 32px;
  }
}

/* =========================
SOFTWARE SHOWCASE PAGE
========================= */
.software-showcase {
  background-color: #f8fafc;
}

.showcase-title {
  font-size: 36px;
  font-weight: 700;
  color: #123456;
}

.showcase-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.showcase-card {
  background: #e7c6c6;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.showcase-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #5f7291;
}

.showcase-card ul {
  padding-left: 18px;
  margin: 0;
}

.showcase-card ul li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #444;
}

/* Services list */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.services-list span {
  background: #a9b0d0;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .showcase-title {
    font-size: 26px;
  }

  .services-list {
    flex-direction: column;
    align-items: center;
  }
}
/* =========================
STUDENT PROJECTS PAGE
========================= */
.student-projects {
  background-color: #f9fbfd;
}

.projects-title {
  font-size: 36px;
  font-weight: 700;
  color: #123456;
}

.projects-subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.student-card {
  background: #ceb2b2;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.student-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.student-card i {
  font-size: 38px;
  color: #5b769d;
  margin-bottom: 15px;
}

.student-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.student-card p {
  font-size: 14.5px;
  color: #555;
  margin: 0;
}

/* Features */
.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.project-features span {
  background: #9ea5de;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .projects-title {
    font-size: 26px;
  }

  .project-features {
    flex-direction: column;
    align-items: center;
  }
}
/* =========================
HOME PAGE – BUSINESS SHOWCASE
========================= */
.home-showcase {
  background: #ffffff;
}

.home-showcase-title {
  font-size: 40px;
  font-weight: 700;
  color: #0d2c4f;
}

.home-showcase-subtitle {
  font-size: 20px;
  color: #555;
  margin-top: 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.home-showcase-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #eef1f6;
}

.home-showcase-card:hover {
  transform: translateY(-8px);
  background: #9c99c6;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.home-showcase-card i {
  font-size: 34px;
  color: #82a6db;
  margin-bottom: 15px;
}

.home-showcase-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.home-showcase-card p {
  font-size: 14.5px;
  color: #555;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .home-showcase-title {
    font-size: 26px;
  }
}

/* =========================
DOMAIN SLIDER
========================= */
.domain-slider {
  overflow: hidden;
  position: relative;
}

.domain-track {
  display: flex;
  gap: 25px;
  animation: slideDomains 10s linear infinite;
}

.domain-slide {
  min-width: 320px;
  flex-shrink: 1;
}

/* Pause on hover */
.domain-slider:hover .domain-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes slideDomains {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .domain-slide {
    min-width: 260px;
  }
  .domain-track{
    animation: slideDomains 5s linear infinite;
  }
}