/*HOME PAGE - NAVBAR SECTION*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #ffffff, #00e5ff);
    padding:10px 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo img {
    height: 55px;
    width: 70px;
}

.navbar-menu {
    display: flex;
    gap: 20px;
}

.navbar-menu a {
    text-decoration: none;
    font-family:'Sora', sans-serif;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #007bff;
}

.navbar-toggle {
    display: none;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #ffffff, #00e5ff);
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }
}

/*===HOME SECTION - HERO SECTION===*/
.hero-section {
  background-color: #ffffff;
  color: #000000;
}

/* Overlay content (top part) */
.hero-top {
  height: 400px;
  overflow: hidden;
  position: relative;
}
.hero-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay-content {
  z-index: 2;
}

/* Buttons */
.btn-aqua {
  background-color: #00ffff;
  color: #000000;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  transition: 0.3s ease;
}
.btn-aqua:hover {
  background-color: #00e5e5;
  color: #000;
}
.btn-outline-aqua {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  transition: 0.3s ease;
}
.btn-outline-aqua:hover {
  background-color: #00ffff;
  color: #000000;
}
/* === RESPONSIVE HERO SECTION === */
@media (max-width: 1024px) {
  .hero-top {
    height: 350px;
  }

  .btn-aqua,
  .btn-outline-aqua {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-top {
    height: 300px;
  }

  .hero-top img {
    object-fit: cover;
    width: 100%;
  }

  .hero-overlay-content {
    text-align: center;
    padding: 0 20px;
  }

  .btn-aqua,
  .btn-outline-aqua {
    font-size: 0.9rem;
    padding: 8px 18px;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .hero-top {
    height: 250px;
  }

  .btn-aqua,
  .btn-outline-aqua {
    font-size: 0.85rem;
    padding: 8px 16px;
    width: 100%;
    max-width: 280px;
  }

  .hero-overlay-content {
    padding: 0 10px;
  }
}

/* === SERVICES SECTION === */
.services-section {
  background-color: #ffffff;
  color: #000000;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000000;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background-color: #00ffff;
  border-radius: 15px;
  color: #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin: 0;
}
/* === RESPONSIVE SERVICES SECTION === */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card h4 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    margin-bottom: 30px;
  }

  .service-card h4 {
    font-size: 1.15rem;
  }

  .service-card p {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .service-card {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .service-card h4 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }
}

/* === PORTFOLIO SECTION === */
.portfolio-section {
  background-color: #ffffff;
  color: #000000;
}

.portfolio-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.portfolio-scale-wrapper {
  transform: scale(0.85);
  transform-origin: top center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Color backgrounds for each row */
.bg1 { background-color: #66eaea; }
.bg2 { background-color: #00c6c6; }
.bg3 { background-color: #006060; }

/* Image and Text column setup */
.image-box {
  height: 250px;
  overflow: hidden;
  border-right: 2px solid #ccc;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.text-box h3 a {
  text-decoration: none;
  color: #000;
}

.text-box h3 a:hover {
  text-decoration: underline;
  color: #007bff;
}

.text-box p {
  margin-top: 10px;
  font-size: 1rem;
}

/* Border lines between rows */
.portfolio-wrapper .row {
  border-bottom: 2px solid #ccc;
}
.portfolio-wrapper .row:last-child {
  border-bottom: none;
}
/* === RESPONSIVE PORTFOLIO SECTION === */
@media (max-width: 1024px) {
  .portfolio-scale-wrapper {
    transform: scale(0.95);
  }

  .text-box {
    padding: 1.5rem;
  }

  .text-box h3 {
    font-size: 1.3rem;
  }

  .text-box p {
    font-size: 0.95rem;
  }

  .image-box {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .portfolio-scale-wrapper {
    transform: none;
    padding: 0 15px;
  }

  .portfolio-wrapper .row {
    flex-direction: column;
    text-align: center;
  }

  .image-box {
    height: 200px;
    border-right: none;
    border-bottom: 2px solid #ccc;
  }

  .text-box {
    padding: 1.5rem 1rem;
  }

  .text-box h3 {
    font-size: 1.2rem;
  }

  .text-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .text-box {
    padding: 1rem 0.8rem;
  }

  .text-box h3 {
    font-size: 1.1rem;
  }

  .text-box p {
    font-size: 0.85rem;
  }

  .image-box {
    height: 180px;
  }
}

/* === PRICING SECTION === */
.pricing-section {
  background-color: #ffffff;
  color: #000000;
}

.outer-box {
  background-color: #00e5ff;
  padding: 6px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}
.outer-box:hover {
  transform: translateY(-5px);
}

.inner-box {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  text-align: center;
}

.inner-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.inner-box h5 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 20px;
}

.inner-box ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  font-size: 0.95rem;
}

.inner-box ul li {
  padding: 6px 0;
  line-height: 1.5;
}
/* === RESPONSIVE PRICING SECTION === */
@media (max-width: 992px) {
  .inner-box h2,
  .inner-box h5 {
    font-size: 1.3rem;
  }

  .inner-box ul {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 20px;
  }

  .outer-box {
    margin-bottom: 30px;
  }

  .inner-box {
    padding: 25px 15px;
  }

  .inner-box h2,
  .inner-box h5 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .inner-box {
    padding: 20px 10px;
  }

  .inner-box h2,
  .inner-box h5 {
    font-size: 1.1rem;
  }

  .inner-box ul {
    font-size: 0.85rem;
  }

  .outer-box {
    border-radius: 15px;
  }
}

/*===ABOUT US SECTION===*/
body {
  font-family: 'Sora', sans-serif;
  background-color: #ffffff;
  color: #000000;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  margin-bottom: 30px;
  font-weight: 700;
}

p {
  line-height: 1.6;
}

.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === TOP HERO SECTION === */
.hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-top .text {
  flex: 1 1 500px;
  min-width: 320px;
  padding-right: 50px;
}

.hero-top .text p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-top .image {
  flex: 1 1 250px;
  min-width: 350px;
}

.hero-top .image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* === MIDDLE HERO SECTION (TEAM) === */
.hero-middle h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}





/* === BOTTOM HERO SECTION === */
.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-bottom .image {
  flex: 1 1 250px;
  min-width: 350px;
}

.hero-bottom .image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.hero-bottom .text {
  flex: 1 1 500px;
  padding-left: 100px;
  min-width: 280px;
}

.hero-bottom .text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.hero-bottom .text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-bottom button {
  margin-top: 15px;
  padding: 12px 30px;
  background-color: #00ced1;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-bottom button:hover {
  background-color: #00b3b3;
}

/* === RESPONSIVE STYLES FOR TABLETS AND PHONES === */
@media (max-width: 1024px) {
  .section {
    padding: 80px 20px;
  }

  .hero-top .text,
  .hero-bottom .text {
    padding: 0 30px;
  }

  .hero-bottom .text {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .hero-top,
  .hero-bottom {
    flex-direction: column;
    padding: 60px 20px 40px;
    gap: 40px;
    text-align: center;
  }

  .hero-top .text,
  .hero-bottom .text,
  .hero-top .image,
  .hero-bottom .image {
    flex: 1 1 100%;
    min-width: auto;
    padding: 10px;
  }

  .hero-top .image img,
  .hero-bottom .image img {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    height: auto;
  }

  .hero-bottom .text {
    padding-left: 10px;
  }

  .hero-bottom button {
    width: 100%;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.5rem;
  }

  .hero-middle h2 {
    font-size: 1.4rem;
  }

  .hero-bottom .text h3 {
    font-size: 1.3rem;
  }

  .hero-top .text p,
  .hero-bottom .text p {
    font-size: 0.95rem;
  }

  .team-member {
    width: 90%;
    margin: 0 auto;
  }

  .team-member img {
    height: 200px;
  }
}

/* === CONTACT US SECTION === */
.contact-section {
  background-color: #ffffff;
  color: #000;
  font-family: 'Sora', sans-serif;
}

/* Top Hero Section */
.contact-hero {
  padding: 60px 20px;
}
.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: black;
}
.contact-hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 15px auto 0;
  color: #333;
}

/* Contact Boxes */
.contact-boxes .contact-box {
  background-color: #ffffff;
  border: 2px solid #00e5ff;
  box-shadow: 0 6px 20px black(0, 229, 255, 0.2);
  border-radius: 15px;
  padding: 30px 25px;
  height: 100%;
  transition: transform 0.3s ease;
}
.contact-img {
  max-width: 220px;
  height: auto;
  border-radius: 10px;
}

.contact-boxes .contact-box:hover {
  transform: translateY(-8px);
}

.contact-box h2 {
  font-size:2.3rem;
  color: #000;
  margin-bottom: 15px;
}

.contact-box p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-box a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.contact-box a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.btn-contact {
  background-color: #00e5ff;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s ease;
}
.btn-contact:hover {
  background-color: #00ced1;
}

/* Feedback Section */
.feedback-section {
  padding: 60px 20px;
  background: #f9ffff;
}
.feedback-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

#message {
  width: 90%;
  max-width: 700px;
  height: 150px;
  border: 2px solid #00e5ff;
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  resize: vertical;
  outline: none;
  margin-bottom: 20px;
}

.btn-submit {
  background-color: #00e5ff;
  border: none;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 30px;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: #00ced1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-box h2 {
    font-size: 1.5rem;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  #message {
    width: 100%;
  }
}

/* === FOOTER SECTION === */
.footer-section {
  background-color: #00ACC1;
  color: #000000;
}
.footer-section a:hover {
  color: #222;
}

        .team-member {
    text-align: center;
    padding: 1.5rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

.team-member strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member .position {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

