/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header style */
header {
    display: flex;
    justify-content: space-between; /* Place logo on the left and slogan on the right */
    align-items: center; /* Vertically align logo and slogan */
    padding: 10px 20px;
    background-color: #fff; /* Background color of header */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 .linkedin-icon img {
            width: 40px; /* Adjust size */
            height: 40px; /* Adjust size */
            transition: opacity 0.3s ease;
  }

 .linkedin-icon:hover img {
            opacity: 0.7; /* Add hover effect */
  }

p{
    text-align: justify;
    text-justify: inter-word;
 }

.p2{
    text-align: center;
 }
/* Logo styling */
.logo img {
    width: auto; /* Adjust size of the logo */
    height: auto;
}

/* Slogan styling */
.slogan  {
    font-size: 1.1rem;
    color: red;
    font-style: italic;
}

nav {
            background-color: #34495e; /*#2980b9;*/
            color: white;
            padding: 10px;
            text-align: center;
    }

 nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            font-size: 1.2em;
            margin: 0 15px;
  }

  nav a:hover {
            background-color: #1abc9c;
            border-radius: 5px;
  }

  .mission-statement,
        .video-container,
        .products {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin: 20px auto;
            max-width: 1000px;
   }

   .mission-statement h2,
   .video-container h2,
   .products h2 {
            color: #2980b9;
            font-size: 1.5em;
	    font-style: normal;
            text-align: center;
            margin-bottom: 20px;
   }

   .mission-statement p,
   .products p {
            font-size: 1.2em;
            line-height: 1.6;
            color: #555;
	    font-style: normal;;
	    text-align: justify;
            text-justify: inter-word;
            margin-bottom: 10px;
    }

        .section {
            margin-bottom: 50px;
        }

        .section h2 {
            color: #2980b9;
            font-size: 1em;
	    font-style: normal;
            margin-bottom: 10px;
        }

        .section p {
            font-size: 1.2em;
            line-height: 1.6;
            margin-bottom: 20px;
	    text-align: justify;
	    font-style: normal;
	    text-justify: inter-word;
        }

        .programs {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .programs .program {
            background-color: #ecf0f1;
            padding: 20px;
            width: 450px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .programs .program h3 {
            font-size: 1.5em;
	    font-style: normal;
            color: #16a085;
            margin-bottom: 10px;
        }

        footer {
            background-color: #34495e;
            color: white;
            text-align: center;
	    font-style: normal;
            padding: 15px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
             .contact-info {
            margin-top: 20px;
        }
        .contact-info p {
            font-size: 1.1em;
        }

   .learn-more-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007BFF; /* Blue color */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
	    font-style: normal;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .learn-more-button:hover {
            background-color: #0056b3; /* Darker blue for hover effect */
        }

/* Mobile view */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        width: 100px; /* Make logo smaller on mobile */
    }

    .slogan p {
        font-size: 1rem;
        margin-top: 10px;
    }
}
