footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #333;
}

/* Platforms cards adjustments */
#platforms .dashboard-info-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space items evenly vertically */
    padding: 20px;
    min-height: 100px; /* Ensures consistent card height */
}

#platforms .dashboard-info-card h3 {
    font-size: 28px; /* Larger heading */
    margin-bottom: 15px;
}

#platforms .dashboard-info-card p {
    font-size: 18px; /* Larger paragraph text */
    flex-grow: 1; /* Take up available space for spacing */
    margin-bottom: 20px; /* More space below text */
}

#platforms /* Platform Card Button Enhancements */
        .dashboard-info-card .btn {
            display: inline-block;
            margin-top: auto;
            align-self: flex-end;
            padding: 10px 18px;
            background-color: white;
            color: #7ED957;
            font-weight: bold;
            text-decoration: none;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .dashboard-info-card .btn:hover {
            background-color: #7ED957;
            color: white;
        }

.about-team-section {
  display: flex;
  align-items: center;
  background-color: #f9fdf7;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 6px 18px rgba(126, 217, 87, 0.15);
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  gap: 40px;
}

.about-team-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 460px; /* 400px (photo width) + 60px gap */
  width: 6px;
  height: calc(100% - 80px);
  background-color: #7ED957;
  border-radius: 4px;
  z-index: 1;
}


.about-team-image {
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.about-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team-content {
  flex: 1;
  position: relative;
  padding-left: 20px;
  z-index: 2;
}

.about-team-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #4a7a1f;
  border-bottom: 4px solid #7ED957;
  display: inline-block;
}

.about-team-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4d4d4d;
}

/* Responsive - stack on small screens */
@media (max-width: 900px) {
  .about-team-section {
    flex-direction: column;
    padding: 30px 20px;
  }
  .about-team-section::before {
    display: none;
  }
  .about-team-image {
    width: 100%;
    height: 250px;
  }
  .about-team-content {
    padding-left: 0;
    margin-top: 20px;
  }
}


.certification-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #e8f5e9; /* soft greenish background */
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(126, 217, 87, 0.3);
  min-width: 280px;
  max-width: 480px;
}

.cert-name-card {
  background-color: #7ED957; /* your brand green */
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  flex-shrink: 0;
  white-space: nowrap;
}

.cert-description {
  font-size: 1rem;
  color: #333;
}


  /* Intro Section with Image */
        .intro-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            padding: 60px 20px;
        }
        .intro-text {
            flex: 1;
        }
        .intro-text h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .intro-text p {
            font-size: 18px;
        }
        .intro-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }
.intro-image img {
            max-width: 100%;
            max-height: 400px;
            width: 400px;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

.hero-header {
    text-align: center;
    padding: 100px 20px 80px;
    background-color: white;
}

.hero-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.hero-header p {
    font-size: 18px;
    color: #666;
}


html {
    scroll-behavior: smooth;
}


/* Swiper adjustments */
/* Navigation Bar */
.navbar {
    background-color: #7ED957;
    padding: 10px 30px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    text-decoration: underline;
    color: #e6ffe6;
}

.swiper {
    width: 100%;
    padding: 30px 0;
    position: relative;
}


.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Increase testimonial font size */
.swiper-slide .dashboard-info-card.large-card {
    font-size: 24px !important;
    line-height: 1.8;
    padding: 50px;
}

.swiper-slide .dashboard-info-card.large-card p {
    font-size: 22px !important;
    margin-bottom: 10px;
}

.swiper-slide .dashboard-info-card.large-card strong {
    font-size: 20px !important;
}


/* Make Swiper arrows white and bigger */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    width: 50px;
    height: 50px;
    opacity: 0.9;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 80px;
}

.swiper-slide img {
  width: 900px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

header-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 30px;
}

.header-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header-content p {
    font-size: 20px;
}


input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0; /* hide default icon */
    cursor: pointer;
    position: relative;
    z-index: 1;
}

input[type="date"] {
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg fill="%237ED957" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.89-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.11-.9-2-2-2zm0 16H5V9h14v11zm0-13H5V6h14v1z"/></svg>') no-repeat right 12px center;
    background-size: 20px 20px;
    padding-right: 40px;
}


input[type="url"]::placeholder {
    font-style: italic;
    color: #999;
}


/* Reset and box model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: #7ED957;
    color: white;
    padding: 20px 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    display: inline-block; /* Wrap around content */
    max-width: 100%;        /* Prevent overflow */
}

header h1 {
    font-size: 28px;
    margin: 0;
}



/* Dashboard */
.dashboard-section {
    margin-bottom: 30px;
}

.dashboard-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.dashboard-info-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-info-card {
    background-color: #7ED957;
    color: white;
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-info-card h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.dashboard-info-card p {
    font-size: 14px;
    margin: 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #7ED957;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #e9f7e5;
}

/* Buttons */
button, input[type="submit"] {
    background-color: #7ED957;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

button:hover, input[type="submit"]:hover {
    background-color: #6cc848;
}

.btn {
    display: inline-block;
    background-color: #7ED957;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 0;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #6cc848;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.85em;
    background-color: #7ED957;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin: 2px;
    transition: 0.3s;
}

.btn-small.red {
    background-color: #ff4c4c;
}

.btn-small.red:hover {
    background-color: #e63838;
}

/* Form Fields */
form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form input[type="url"],
form input[type="date"],
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

form input:focus,
textarea:focus {
    border-color: #7ED957;
    background-color: #fff;
    outline: none;
}

/* Messages */
.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 6px solid #28a745;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 6px solid #dc3545;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
}

/* Links */
a {
    color: #7ED957;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
}

footer p {
    font-size: 14px;
}

