/* Navbar section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9fb;
  color: #333;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevents horizontal scrolling */
}


.section-margin {
  padding-top: 1rem;
  scroll-margin-top: 90px;
}


/* header {
  background-color: #101a24;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
} */
header {
  position: fixed;
  /* stays on top while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: transparent;
  color: #000;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}


/* Logo */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
}

/* Flex layout sections */
.left-section,
.center-section,
.right-section {
  display: flex;
  align-items: center;
}

/* Make center grow */
.center-section {
  flex: 1;
  justify-content: center;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00BFFF;
}

.contact-btn {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  /* No glow by default */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 200%;
  height: 100%;
  background: inherit;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(101, 67, 255, 0.6), 0 0 40px rgba(101, 67, 255, 0.4);
}

.contact-btn:hover::before {
  opacity: 1;
  transform: translateX(25%);
}

/* Menu toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: black;
  margin-left: 15px;
}

/* Mobile menu dropdown */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  right: 20px;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 15px;
  width: 200px;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.mobile-menu a {
  color: #121212;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  color: #00BFFF;
}

.mobile-menu.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {

  nav,
  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
/* .hero {
  background: url('https://t3.ftcdn.net/jpg/05/14/61/38/240_F_514613885_EcXXNIh2aC0KuKE8ddZgKeAOLMrlfnlN.jpg') no-repeat center center/cover;
  padding: 40px 20px;
  margin-top: 75px;
  color: #fff;
  text-align: center;
} */
.hero {
  /* background: #fff; */
  padding: 40px 20px;
  margin-top: 75px;
  text-align: center;
  color: #000;
}


.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}



/* HOME HERO SECTION */
.home {
  background:
    linear-gradient(rgba(89, 205, 205, 0.377), rgba(255, 255, 255, 0.7)),
    url('https://img.freepik.com/free-vector/white-abstract-wallpaper_23-2148830026.jpg?t=st%3D1742576690~exp%3D1742580290~hmac%3D86764c64a38a1887320d556911ca907a130117fdba4597fba3756dd04e4bc38e') no-repeat center center/cover;
  color: black;
  /* switch to black text if background gets too light */
  padding: 120px 30px 180px 30px;
  position: relative;
  overflow: hidden;
}


.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(39, 8, 90, 0.6); */
  clip-path: polygon(0 0, 50% 0, 30% 100%, 0% 100%);
}

.home::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(76, 60, 242, 0.4); */
  clip-path: polygon(100% 0, 50% 0, 70% 100%, 100% 100%);
}

.home-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2;
}

.home-text {
  flex: 1 1 500px;
}

.home-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
}

.home-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.home-text .badge {
  display: inline-block;
  padding: 5px 15px;
  /* background-color: white; */
  color: #000000;
  font-weight: bold;
  border-radius: 25px;
  margin-bottom: 15px;
}

.btn {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

.home-image {
  flex: 1 1 300px;
  text-align: center;
}

.home-image img {
  max-width: 300px;
  border-radius: 10px;
  z-index: 2;
}

.card-wrapper {
  max-width: 1000px;
  margin: -100px auto 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}

.card {
  background: white;
  padding: 20px;
  width: 180px;
  border-radius: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: scaleX(1.03);
  box-shadow: 0 0 20px rgba(85, 107, 109, 0.936), 0 0 40px rgba(101, 67, 255, 0.4);
}

.card i {
  font-size: 28px;
  color: #6a11cb;
  margin-bottom: 10px;
}

.logos {
  text-align: center;
  padding: 20px 10px 40px;
  background: white;
}

.logos p {
  font-weight: 600;
  margin-bottom: 10px;
}

.logos img {
  height: 40px;
  margin: 0 15px;
}

/* HOME DISCRIPTION */
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  max-width: 1200px;
  margin: auto;
}

.about-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  flex: 1 1 200px;
  position: relative;
}

.about-left img {
  width: 250px;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
}

.about-right {
  flex: 1 1 500px;
  padding-left: 40px;
}

.about-right h2 {
  font-size: 36px;
  margin-bottom: 15px;
  padding: 30px;
}

.about-right h2 span {
  color: #246bfd;
}

.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.stat {
  text-align: left;
}

.stat strong {
  font-size: 24px;
  color: #246bfd;
  display: block;
}

.ceo-signature {
  margin-top: 20px;
}

.ceo-signature h4 {
  font-family: cursive;
  font-size: 22px;
  margin-bottom: 4px;
}

.ceo-signature span {
  font-size: 14px;
  color: #777;
}

@media(max-width: 992px) {
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .about-right {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* HOME PROJECT SEC. */

.project-section {
  text-align: center;
  padding: 80px 20px;
  /* background: linear-gradient(145deg, #f3f4f8, #f8f9fc); */
  background: #f9f9fb;
}

.project-sec-btn {
  text-decoration: none;
}

.project-sec-btn span {
  display: inline-block;
  padding: 8px 20px;
  background-color: white;
  color: #5555ff;
  font-weight: bold;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-sec-btn span:hover {
  background-color: #5555ff;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}


.project-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.project-section h2 span {
  color: #4b3fff;
  font-weight: 800;
  background: none;
  padding: 0;
  font-size: inherit;
  border-radius: 0;
  box-shadow: none;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 30px;
}

.Project-card {
  background-color: white;
  border-radius: 5px;
  border-top-left-radius: 50px;
  padding: 40px 20px 30px;
  width: 250px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.Project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(101, 67, 255, 0.6), 0 0 40px rgba(101, 67, 255, 0.4);
}

.card-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffffff, #7a55ff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-icon img {
  width: 80px;
  height: 80px;
}

.Project-card h3 {
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.Project-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
}

/* INTERN SELECTION PROCESS */
.work-process-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.work-process-section::before {
  content: 'WORK PROCESS';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  z-index: 0;
}

.work-process-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.work-process-section h2 span {
  color: #4c3cf2;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step .circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: #4c3cf2;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

.step .circle span {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.step h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #666;
  margin: 0 auto;
  max-width: 200px;
}

/* OUR IT TEAM MEMBERS */
.team-home-section {
  text-align: center;
  padding: 40px 40px 60px;
  background-color: #f9f9fb;
}

.team-subtitle {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.team-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.team-title span {
  color: #2d6fff;
}

.team-home-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.team-home-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  max-width: 250px;
  transition: transform 0.3s ease;
  position: relative;
}

.team-home-card:hover {
  transform: scale(-10);
  box-shadow: 0 0 20px rgba(85, 107, 109, 0.936), 0 0 40px rgba(101, 67, 255, 0.4);
}

/* Zig-zag layout */
.team-home-card.up {
  transform: translateY(-30px);
}

.team-home-card.down {
  transform: translateY(30px);
}

.team-home-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  border: 3px solid #d0d0d0;
  padding: 5px;
}

.team-home-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.linkedin-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #2d6fff;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(45, 111, 255, 0.4);
}

.team-name {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
}

.team-role {
  margin-top: 5px;
  font-size: 14px;
  color: #2d6fff;
}




/* FOOTER SECTION */
.site-footer {
  background: linear-gradient(rgba(89, 205, 205, 0.377), rgba(255, 255, 255, 0.7));
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', 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 180px;
}

.logo-about {
  flex: 2 1 300px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.footer-column h3,
.footer-column h4 {
  color: #000000;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #1a73e8;
}

.footer-column p {
  color: #000000;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #000000;
  color: #000000;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }

  .logo-about {
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
  }
}



/* INTERNSHIP SECTION */
/* Info Section */
.info {
  display: flex;
  justify-content: center;   /* horizontally center */
  align-items: center;       /* vertically center */
  padding: 60px 20px;
  background: #fff;
  text-align: center;        /* center text */
}

@media (min-width: 768px) {
  .info {
    padding: 60px 80px;
  }
}

@media (min-width: 1200px) {
  .info {
    padding: 60px 180px;
  }
}

.info-text h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .info-text h2 {
    font-size: 32px;
  }
}

.info-text p {
  font-size: 18px;
  line-height: 1.6;
}

.info-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}


.read-btn {
  background-color: #f7941d;
  color: white;
  padding: 10px 16px;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
}

.services-section {
  padding: 60px 180px;
  background-color: #f9fafc;
  font-family: 'Poppins', sans-serif;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

/* Wrap the image and icon in a container */
.card-image-container {
  position: relative;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Position icon on top of the image */
.icon-box {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #00c3a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 195, 165, 0.3);
  z-index: 2;
}

/* Adjust spacing since icon overlaps */
.service-card h3 {
  font-size: 20px;
  margin: 40px 0 10px;
  color: #002e5b;
}

.service-card p {
  padding: 0 15px;
  font-size: 14px;
  color: #666;
}

.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #00c3a5;
  color: white;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: rgb(0, 158, 133);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 158, 133, 0.715), 0 0 40px rgb(0, 150, 125);
}


/* feature section */
.features-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background-color: #2955f3;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}



/* ABOUT SECTION */
/* General reset and font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background: #fff;
  color: #222;
}

.intro-section {
  padding: 60px 5%;
  background: #f9f9f9;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Image styling */
.intro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Text styling */
.intro-text {
  flex: 1;
  margin-left: 40px;
  max-width: 600px;
}

.intro-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text ul {
  list-style: none;
  padding: 0;
}

.intro-text li {
  margin-bottom: 10px;
  font-size: 16px;
}

.intro-text i {
  color: #03b664;
  margin-right: 8px;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    margin-left: 0;
    margin-top: 30px;
  }

  .intro-text ul {
    padding-left: 0;
  }
}


.testimonials {
  text-align: center;
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.testimonial p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-profile {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #222;
}

.testimonial-info span {
  font-size: 13px;
  color: #777;
}

.stats {
  display: flex;
  justify-content: space-around;
  background: #f1f6fc;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  margin: 20px;
}

.stat-box h2 {
  color: #03b664;
  font-size: 32px;
}

/* Custom Solutions */
.custom {
  display: flex;
  align-items: center;
  padding: 40px 40px;
  background: #fff;
  flex-wrap: wrap;
  gap: 40px;
}

.custom-text {
  flex: 1;
}

.custom-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.custom-image img {
  width: 300px;
  border-radius: 8px;
}

.about-team-section {
  text-align: center;
  padding: 40px 20px;
}

.about-team-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-underline {
  width: 50px;
  height: 2px;
  background: #333;
  margin: 0 auto 50px;
}

.about-team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-team-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  max-width: 250px;
  transition: transform 0.3s ease;
  position: relative;
}

.about-team-card:hover {
  transform: translateY(-8px);
}

.about-tilted-shape {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  background: #cacaca;
  border-radius: 30% 30% 30% 30%;
  transform: rotate(45deg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.about-tilted-shape img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  transform: rotate(-45deg);
  /* counter-tilt the image */
  border-radius: 50%;
  object-fit: cover;
}

.about-team-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
  letter-spacing: 1px;
}

.social-icons {
  margin: 10px 0;
}

.social-icons a {
  margin: 0 10px;
  font-size: 16px;
  color: #444;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0077b5;
  /* LinkedIn blue */
}

.about-team-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}



/* FAQS SECTION */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6f8ff;
}


.faq-section {
  color: #000;
  padding: 40px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  align-items: start; /* <-- key fix */
}


.faq-box {
  background-color: #f6f8ff;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px;
}

.faq-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-box:hover {
  background-color: #e7e7fd;
}

.icon {
  font-size: 1.3rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-content p {
  margin: 0;
  padding: 10px 0 20px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* CONTACT SECTION */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f6ff;
}

a {
  text-decoration: none;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 20px;
}

.card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
}

.card i {
  font-size: 1.8rem;
  color: #3b82f6;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.form-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 40px;
}

.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.contact-form p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form button {
  background-color: #3b82f6;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #265fdc;
}

.map {
  flex: 1 1 350px;
  max-width: 500px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: rgba(89, 205, 205, 0.226);
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1rem;
  color: #000000;
}

.cta-button {
  display: inline-block;
  background: #3b82f6;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #265fdc;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input,
select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

input:focus,
select:focus {
  border-color: #007bff;
}