/********** Template CSS **********/
:root {
    --primary: #001e29;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}
.navbar-nav .nav-link {
  position: relative;
  color: #1a1a1a;
  font-weight: 600;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

/* Blue underline on hover and active */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0078D4; /* Azure blue */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}


/* Sticky white header */
.navbar-light {
  background-color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Nav links: blue text, light hover, underline */
.navbar-nav .nav-link {
  position: relative;
  color: #0078D4;               /* Primary blue text */
  font-weight: 600;
  font-size: 18px;
  padding: 10px 20px;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3399FF;               /* Slightly lighter blue on hover */
}

/* Underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0078D4;    /* Same blue as text */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Brochure button stays untouched */
.btn-primary {
  background-color: #0078D4;         /* Brand blue */
  border: 2px solid #0078D4;
  color: #ffffff;                    /* White text stays */
  font-weight: 600;
  font-size: 17px;
  padding: 10px 24px;
  margin-left: 16px;
  border-radius: 6px;                /* Optional: rounded corners */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Optional: subtle shadow */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;         /* Slightly darker blue on hover */
  border-color: #0056b3;
  color: #ffffff;                    /* Still white text */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Slightly stronger shadow */
}




.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: #FFFFFF;
    }
}

/* Headings like "Happy Clients", "Projects Done" */
.facts h5 {
  color: #FFFFFF; /* Azure blue or your brand color */
  font-weight: 1000;
  font-size: 20px;
}

/* Counter numbers like 1000+ and 300+ */
.facts span[data-toggle="counter-up"] {
  color: #1a1a1a; /* Dark gray or black for contrast */
  font-weight: 600;
  font-size: 24px;
}

/* Optional: "+" symbol styling */
.facts span:last-child {
  color: #1a1a1a;
  font-weight: 600;
}

/* Counter numbers like 1000+ and 300+ */
.facts span[data-toggle="counter-up"],
.facts span[data-toggle="counter-up"] + span {
  color: #ffffff;           /* White font */
  font-size: 35px;          /* Larger font size */
  font-weight: 900;
}

/* Section titles like "Happy Clients" */
.facts h5 {
  color: #ffffff;           /* Match white theme if needed */
  font-size: 20px;
  font-weight: 900;
}

/* Icons inside the circle */
.facts i {
  font-size: 28px;
}

/* Target only the second column (Projects Done) */
.facts .col-lg-4:nth-child(2) span[data-toggle="counter-up"],
.facts .col-lg-4:nth-child(2) span[data-toggle="counter-up"] + span {
  color: #18233F;       /* Deep contrast blue */
  font-size: 35px;
  font-weight: 900;
}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}





/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/about\ section.jpg) center center no-repeat;
    background-size: cover;
}







.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.customer-marquee {
  overflow: hidden;
  position: relative;
  background-color: #0d1b2a;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
}

.marquee-content img {
  height: 60px;
  margin-right: 50px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.marquee-content img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.customer-marquee {
  overflow: hidden;
  position: relative;
  background-color: #ffffff; /* White background */
}

.testimonial-section {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.testimonial-container {
  max-width: 900px;
  margin: auto;
  background: white;
  border-left: 6px solid #0078D4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border-radius: 8px;
  animation: fadeInUp 1s ease-out;
}

.testimonial-quote p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote p::before {
  content: "“";
  font-size: 3rem;
  color: #0078D4;
  position: absolute;
  left: -20px;
  top: -10px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-author p {
  margin: 0;
  font-weight: 500;
  color: #555;
}

.testimonial-author span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #777;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: auto;
  font-family: 'Open Sans', sans-serif;
}

input[type="radio"] {
  display: none;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 400%; /* 4 slides */
}

.testimonial-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 32px;
  box-sizing: border-box;
  scroll-snap-align: center;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.details .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.details .title,
.details .company {
  font-size: 14px;
  color: #555;
}

.details .project {
  font-size: 13px;
  color: #0A66C2;
  text-decoration: underline;
  font-weight: 600;
  margin-top: 4px;
}

/* Dot navigation */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dots label {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

input#slide1:checked ~ .slides { transform: translateX(0%); }
input#slide2:checked ~ .slides { transform: translateX(-100%); }
input#slide3:checked ~ .slides { transform: translateX(-200%); }
input#slide4:checked ~ .slides { transform: translateX(-300%); }

input#slide1:checked ~ .dots label[for="slide1"],
input#slide2:checked ~ .dots label[for="slide2"],
input#slide3:checked ~ .dots label[for="slide3"],
input#slide4:checked ~ .dots label[for="slide4"] {
  background: #0A66C2;
}


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 50px 20px;
  background: #f9f9f9;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 24px;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 100px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111;
}

.title,
.company {
  font-size: 13px;
  color: #555;
}
.cloud-software {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
}

.logo-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-5px);
}

.logo-img {
  max-width: 100px;
  margin-bottom: 15px;
}

.logo-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.logo-card p {
  font-size: 0.95rem;
  color: #555;
}


.featured-project {
  background-color: #f5f7fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.project-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.project-info {
  flex: 1 1 400px;
  padding: 30px;
}

.project-meta {
  margin-bottom: 15px;
}

.tag {
  display: inline-block;
  background-color: #0078d4;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 10px;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.project-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.project-highlights {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  font-size: 0.95rem;
}

.project-image {
  flex: 1 1 300px;
  max-height: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-project {
  background-color: #f5f7fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.project-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.project-info {
  flex: 1 1 400px;
  padding: 30px;
}

.project-meta {
  margin-bottom: 15px;
}

.tag {
  display: inline-block;
  background-color: #0078d4;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 10px;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.project-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.project-highlights {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  font-size: 0.95rem;
}

.project-image {
  flex: 1 1 300px;
  max-height: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats-industries {
  background-color: #f9f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.stats-block, .industries-block {
  flex: 1 1 400px;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card strong {
  font-size: 2rem;
  color: #0078d4;
  display: block;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 0.95rem;
  color: #666;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
}

.industry-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.industry-card span {
  font-size: 0.95rem;
  color: #333;
  display: block;
}
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.testimonial {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
}

.testimonial p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-size: 1rem;
  margin: 0;
  color: #0078D4;
}

.testimonial h4 span {
  font-weight: normal;
  color: #555;
  font-size: 0.9rem;
}

.testimonial small {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #888;
}

/* Navigation Dots */
.testimonial-nav {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #0078D4;
}

.mission-values {
  background: #f9f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.mission-text {
  font-size: 1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 1.1rem;
  color: #0078D4;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
}