/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* HEADER */
.site-header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container.nav {
  width: 100%;
  margin: auto;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logoheader1 h3{
    color: rgb(230, 70, 230);
}
/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  height: 45px;
}

.company-name {
  font-size: 18px;
  font-weight: 600;
}

.company-name1 {
  color: #007bff;
  font-weight: 700;
}

/* NAVIGATION */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: #007bff;
}

/* Underline hover effect */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #007bff;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* MOBILE MENU BUTTON */
.nav-toggle {
  display: none;   /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 850px) {
  .nav-links {
    position: absolute;
    top: 50px;
    right: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-300px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  /* Animate hamburger into X */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}




.hero {
  height: 80vh;
  background: url("../image/home.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    margin: auto;
  position: relative;
  color: white;
  max-width: 650px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.hero h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 17px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #38bdf8;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.hero-btn:hover {
  background: #67d9ff;
}
/* ================= ABOUT ================= */
.about {
  padding: 80px 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}


/* Text */
.about-text h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}
.about-text h3 {
  margin-top: 25px;
  color: #0a0f1f;
}

.about-points {
  list-style: none;
  padding: 0;
}
.about-points li {
  padding: 6px 0;
  font-size: 16px;
}

/* Image Section */
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-box {
  width: 100%;
  height: 340px;
  background:url("../image/about.jpg")
              center/cover no-repeat;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* -------------------------
      RESPONSIVE DESIGN
-------------------------- */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .about-img-box {
    height: 300px;
  }
}

/* Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;   /* STACK */
    text-align: center;
  }

  .about-img-box {
    height: 270px;
    margin: 0 auto;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .about-img-box {
    height: 240px;
    border-radius: 10px;
  }
}

/* Extra Small (max-width: 400px) */
@media (max-width: 400px) {
  .about-img-box {
    height: 210px;
  }
}

.We_serve_section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9; /* light background */
  border-radius: 12px;
  margin: 40px auto;
  max-width: 900px;
}

.We_serve_section h3 {
  font-size: 28px;
  color: #0a0f1f;
  margin-bottom: 15px;
}

.We_serve_section .section-sub {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .We_serve_section h3 {
    font-size: 24px;
  }

  .We_serve_section .section-sub {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .We_serve_section {
    padding: 40px 15px;
  }

  .We_serve_section h3 {
    font-size: 20px;
  }

  .We_serve_section .section-sub {
    font-size: 13px;
  }
}


/* ================= SERVICES ================= */
.services {
  padding: 0 20px;
  text-align: center;
}
.services h2{
    margin-bottom: 10px;
}
.section-title {
  font-size: 36px;
}

.section-sub {
  opacity: 0.7;
  margin-bottom: 45px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  
}

.service-card {
  padding: 35px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: 0.35s;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.30);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px rgba(91,141,249,0.4);
}

.icon-box {
    background-image: url(https://sunrisesoftech.com/wp-content/uploads/2016/12/customswdev.png);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin: 0 auto 20px;
}



/* --------------------
   RESPONSIVE DESIGN
-------------------- */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .services {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .service-cards {
    gap: 30px;
  }

  .service-card {
    padding: 30px;
  }
}

/* Small Tablets + Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .services {
    padding: 70px 25px;
  }

  .section-title {
    font-size: 30px;
  }

  .service-card {
    padding: 28px;
  }

  .icon-box {
    width: 55px;
    height: 55px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .services {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-sub {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .service-cards {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }

  .service-card {
    padding: 25px;
  }

  .icon-box {
    width: 50px;
    height: 50px;
  }
}

/* Extra Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  .section-title {
    font-size: 23px;
  }

  .service-card {
    padding: 22px;
  }
}








/* CTA Section */
/* CTA Section */
.cta {
  background-color: #f9f9f9;
  padding:50px ;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  max-width: 800px;
  margin: auto;
}

.cta h2,
.cta p,
.cta-btn {
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

/* CTA button slides from bottom */
.cta-btn {
  margin-top: 10px;
  transform: translateY(50px);
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #00bfff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.8s ease-out;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.4);
}

.cta-btn:hover {
  background: #008fcc;
  transform: translateY(45px) translateX(0);
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.5);
}

/* Active Classes */
.cta-heading.active {
  opacity: 1;
  transform: translateX(0);
}

.cta-text.active {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.cta-button.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .cta h2 {
    font-size: 32px;
  }

  .cta p {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}

@media (max-width: 576px) {
  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    padding: 15px;
  }
}












/* Contact Section */
/* Contact Section */
.contact-section {
  padding: 60px 5%;
  background: #f6f8fc;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info h2 span {
  color: #e646e6;
}

.info-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.icon {
  font-size: 28px;
}

.info-box h4 {
  font-size: 18px;
  margin: 0;
}

.info-box p {
  margin: 2px 0 0;
  color: #444;
}

.contact-form h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e646e6;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: #007bff;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #e646e6;
}

.contact-map iframe {
  border-radius: 12px;
  margin-top: 40px;
  border: 1px solid #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}













/* --- Career Section --- */
/* SECTION */
/* MAIN CAREER SECTION */
/* ======================== */
/* CAREER SECTION           */
/* ======================== */
/* =========================== */
/* CAREER SECTION STYLING      */
/* =========================== */
.career-section {
  padding: 40px;
  background: #f4f7fb;
  font-family: "Inter", sans-serif;
}

/* Header */
.career-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.career-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0c1b3a;
  margin-bottom: 15px;
}

.career-header p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

/* Grid Layout */
.career-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE */
.culture-box,
.perks-box {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 35px;
  transition: 0.3s;
}

.culture-box h2,
.perks-box h2 {
  text-align: center;
  margin-bottom: 15px;
}

.culture-box ul li {
  margin: 10px 0;
  font-size: 15px;
  color: #333;
}

/* Perks Grid */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.perk {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.perk:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.perk span {
  font-size: 30px;
  display: block;
  margin-bottom: 12px;
}

.perk h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0c1b3a;
}

.perk p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.career{
    margin: auto;
        justify-content: center;
    justify-items: center;
}
/* RIGHT IMAGE */
.career .image {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 100%;
  text-align: center;
      justify-content: center;
    justify-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: floating 4s ease-in-out infinite;
}

.image img {
    justify-content: center;
    justify-items: center;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transform-origin: center center;
}

/* Optional slow rotation animation */

/* RESPONSIVE */
@media (max-width: 1100px) {
  .career-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .career-header h2 {
    font-size: 32px;
  }
  .career-header p {
    font-size: 15px;
  }

  .culture-box,
  .perks-box {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .career-section {
    padding: 60px 4%;
  }

  .perk {
    padding: 16px;
  }
}


/* ======================== */
/* OPEN POSITIONS SECTION   */
/* ======================== */
.open-positions {
  margin: 40px;
  text-align: center;
}

.open-positions h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0c1b3a;
  margin-bottom: 10px;
}

.open-positions p {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
}

/* JOB GRID */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* JOB BOX */
.job-box {
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e4e8f0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: left;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-box h3 {
  font-size: 22px;
  color: #0c1b3a;
  margin-bottom: 8px;
}

.job-type {
  background: #eaf1ff;
  color: #0050d8;
  padding: 5px 12px;
  display: inline-block;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.job-exp {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.job-box ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}

/* JOB BOX HOVER */
.job-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 38px rgba(0,0,0,0.12);
  border-color: #c9d6ff;
}

/* HOVER GLOW EFFECT */
.job-box::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  opacity: 0;
  transition: 0.4s;
  border-radius: 50%;
}

.job-box:hover::before {
  opacity: 0.08;
  transform: scale(1.2);
}

/* APPLY BUTTON */
.job-btn {
  margin-top: 15px;
  background: #005eff;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.job-btn:hover {
  background: #0044c4;
}
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 30px;
}

.image-about {
  width: 60%;
  max-width: 400px;
  animation: rotate 20s linear infinite;
}

.image-about {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Rotation Keyframes */
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ======================== */
/* RESPONSIVE STYLING        */
/* ======================== */

/* Large tablets */
@media (max-width: 1100px) {
  .career-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .career-header h2 {
    font-size: 32px;
  }

  .career-header p {
    font-size: 15px;
  }

  .culture-box,
  .perks-box,
  .career-right {
    padding: 22px;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .job-box {
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .career-section {
    padding: 60px 4%;
  }

  .perk {
    padding: 16px;
  }

  .job-btn {
    padding: 8px 14px;
  }
}



















.footer-modern-unique {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0f1f, #1f2937);
  color: #fff;
  padding: 40px 20px 30px;
  position: relative;
  overflow: hidden;
}
.logo_footer{
  height: 80px;
  width: 80px;
  margin-bottom: 10px;
}
.footer-logo-about {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo-about .footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-logo-about p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
  margin: auto;
  color: #d1d5db;
}

.footer-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.footer-card {
  background: rgba(255,255,255,0.05);
  padding: 20px 25px;
  border-radius: 15px;
  min-width: 200px;
  flex: 1;
  transition: 0.3s;
}

.footer-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.footer-card h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-card ul {
  list-style: none;
  padding: 0;
}

.footer-card ul li {
  margin-bottom: 8px;
}

.footer-card ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: 0.3s;
}

.footer-card ul li a:hover {
  color: #00bfff;
}

.footer-card p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #d1d5db;
  font-size: 18px;
  background: rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00bfff;
  color: #fff;
  transform: translateY(-3px);
}

.footer-newsletter {
  text-align: center;
  margin-bottom: 40px;
}

.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.newsletter-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-box input {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  width: 250px;
  max-width: 100%;
}

.newsletter-box button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: #00bfff;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-box button:hover {
  background: #008fcc;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-card {
    min-width: 80%;
  }
}

@media (max-width: 576px) {
  .newsletter-box {
    flex-direction: column;
  }

  .newsletter-box input, .newsletter-box button {
    width: 100%;
  }
}

















/* ABOUT PAGE STYLES */
.about-section {
  padding: 25px;
  font-family: "Inter", sans-serif;
  background: #f4f7fb;
  color: #0c1b3a;
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.about-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* COMPANY OVERVIEW */
.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.overview-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
}

.overview-text p {
  font-size: 16px;
  line-height: 1.7;
}

.overview-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* MISSION & VISION */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.mission, .vision {
  background:white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: center;
}

.mission h2, .vision h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.mission p, .vision p {
  font-size: 16px;
  color: #555;
}

/* COMPANY VALUES */
.company-values {
  text-align: center;
  margin-bottom: 60px;
}

.company-values h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.value-card span {
  font-size: 36px;
  display: block;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  color: #555;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* TEAM SECTION */
.team-section {
  text-align: center;
  margin-bottom: 60px;
}

.team-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 14px;
  color: #555;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .about-overview, .mission-vision {
    grid-template-columns: 1fr;
  }
}
















/* SERVICES PAGE */
.services-section {
  padding: 40px;
  background: #f4f7fb;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0c1b3a;
  margin-bottom: 12px;
}

.services-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Service Card */


.service-card span {
  font-size: 36px;
  display: block;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  color: #0c1b3a;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}



/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 4%;
  }
  .services-header h2 {
    font-size: 32px;
  }
  .services-grid {
    gap: 20px;
  }
}
/* ========================= */
/* WHY CHOOSE US SECTION     */
/* ========================= */
.why-choose-us {
  padding: 80px 5%;
  background: #f9fbfd;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.why-choose-us h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0c1b3a;
  margin-bottom: 15px;
}

.why-choose-us p {
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Grid Layout */
.choose-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Cards */
.choose-us-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.choose-us-card span {
  font-size: 32px;
  display: inline-block;
  margin-bottom: 12px;
}

.choose-us-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0c1b3a;
  margin-bottom: 10px;
}

.choose-us-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.choose-us-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  border-color: #c9d6ff;
}

/* Optional subtle gradient hover glow */
.choose-us-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  opacity: 0;
  transition: 0.4s;
  border-radius: 50%;
}

.choose-us-card:hover::before {
  opacity: 0.08;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 32px;
  }

  .why-choose-us p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 60px 4%;
  }

  .choose-us-card {
    padding: 20px 16px;
  }
}
