 
 /*----------------employon1--------------------*/
  .h5 {
            text-align: center;
            background: linear-gradient(45deg,#18002f,#18002f 25%,#18002f 50%,#002578 75%,#002578 100%);
            color: white;
            font-size: 24px;
            padding: 6px;
            margin: 0;
            border-bottom: 3px solid #;
            font-weight:600; 
        }
    .containerr {
        display: flex;
        flex-direction: column;
        align-items: center;
       /* margin: 91px;*/
        padding: 20px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    h1 {
        text-align: center;
        font-size: 2em;
        width: 100%;
        margin-bottom: 20px;
        color: #002578;
    }

    .content {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .content-left {
        flex: 1;
        margin-right: 20px;
            text-align: justify;

    }

    .content-right {
        flex: 1;
        text-align: center;
    }

    .content-right img {
        max-width: 100%;
        height: auto;
    }

    p {
        font-size: 1.1em;
        line-height: 1.6;
    }

    .technologies-container {
        width: 1000px;
        padding: 20px;
        background-color: #caf0f8;
        margin-left: auto;
        margin-right: auto;
    }

    .technologies-container h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
    }

    .technologies-list {
        font-size: 1.1em;
        line-height: 1.8;
    }

    .technologies-list ul {
        list-style-type: none;
        padding: 0;
    }

    .technologies-list li {
        margin-bottom: 10px;
        font-family: 'Roboto', sans-serif;
    }

    .divider {
       width: 80%;
            height: 2px;
            background: linear-gradient(to right, transparent, #808080, transparent); /* Grey color */
            margin: 20px auto;
    }

    .wrapperr {
        display: flex;
        justify-content: center;
        align-items: center;
       
        gap: 20px; /* Space between containers */
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .container11 {
        background-color: #ffffff;
        border-radius: 30px; /* Highly rounded edges */
        width: 250px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 20px;
    }

    .top-line {
        width: 50px;
        height: 5px;
        background-color: #007BFF;
        margin: 0 auto 15px; /* Centered red line with margin */
    }

    .icon {
        font-size: 50px;
        color: #555555;
        margin-bottom: 15px;
    }

    h4.mission-header {
        font-size: 20px;
        color: #000;
        margin-bottom: 10px; /* Space between header and paragraph */
        font-family: 'Montserrat', sans-serif;
    }

    /* New Section: Image on the Left and Text on the Right */
    .content-reversed {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        margin-top: 40px;
        flex-wrap: wrap; /* Allow wrapping for smaller screens */
    }

    .content-reversed-left {
        flex: 1;
        text-align: center;
        margin-bottom: 20px;
    }

    .content-reversed-right {
        flex: 1;
        margin-left: 20px;
    }

    .content-reversed-left img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        h1 {
            font-size: 1.5em;
        }

        .content, .content-reversed {
            flex-direction: column; /* Stack content on smaller screens */
            align-items: center;
        }

        .content-left, .content-right {
            margin-right: 0;
            margin-bottom: 20px;
            text-align: center;
        }

        .technologies-container {
            width: 90%;
            padding: 10px;
        }

        .technologies-list {
            font-size: 1em;
        }

       

    
    }
 /* Responsive Design: Adjust grid layout for smaller screens */
        @media (max-width: 1024px) {
            .wrapperr {
                grid-template-columns: repeat(2, 1fr); /* 2 items per row on medium screens */
            }

            .container11 {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .wrapperr {
                grid-template-columns: 1fr; /* 1 item per row on small screens */
            }

            .container11 {
                max-width: 90%; /* Allow containers to take up more space */
                padding: 15px;
            }

            .icon {
                font-size: 24px; /* Slightly smaller icons */
            }

            .mission-header {
                font-size: 18px; /* Slightly smaller text */
            }

            p4 {
                font-size: 12px; /* Smaller text on mobile */
            }
        }

    /* Extra small screens (phones in portrait) */
    @media (max-width: 480px) {
        h1 {
            font-size: 1.3em;
        }

        .technologies-container h2 {
            font-size: 1.5em;
        }

        .technologies-list li {
            font-size: 0.9em;
        }

       
    }
     .timeline {
            position: relative;
            padding: 20px 0;
            list-style-type: none;
            margin: 0;
        }
        .timeline li {
            position: relative;
            padding: 10px 0;
            margin: 20px 0;
        }
        .timeline li::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: #007BFF;
        }
        .timeline .event {
            position: relative;
            padding: 20px;
            background-color: #caf0f8;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 45%;
            margin-left: 55%;
        }
        .timeline .event.left {
            margin-left: 0;
            margin-right: 50%;
        }
        .timeline .event h3 {
            margin: 0;
            font-size: 1.3em;
            color: #333;
            font-family: 'Montserrat', sans-serif;
        }
        .timeline .event p {
            font-size: 1.1em;
            color: #555;
        }
        .timeline .event .date {
            font-size: 0.9em;
            color: #888;
        }
        .timeline .event .description {
            font-size: 1em;
            color: #555;
        }
        @media (max-width: 768px) {
            .timeline .event {
                width: 100%;
                margin-left: 0;
            }
            .timeline li::before {
                left: 0;
                transform: none;
            }
            
        }
         /* Container for the history sections */
        .history-container {
            padding: 20px;
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Styling the Year Boxes */
        .year-box {
            background-color: #fff;
            border-radius: 50%; /* Make the box circular */
            padding: 30px 40px; /* Adjust size to make it circular */
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            width: 120px; /* Set width and height for circle */
            height: 120px;
        }

        .year-box:hover {
            background-color: #007BFF;
            color: white;
        }

        /* Styling for Flag Hosting Information (smaller box) */
        .flag-hosting {
            display: none;
            text-align: center;
            padding: 10px;
            margin-top: 10px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 250px; /* Reduced width */
            max-width: 100%;
            font-size: 14px; /* Smaller font size */
        }

        .flag-hosting img {
            width: 60px; /* Smaller image size */
            height: 60px;
            object-fit: cover;
            margin-bottom: 10px;
            border-radius: 50%; /* Make the image circular */
        }

        .history-info {
            font-size: 14px;
            color: #333;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .year-box {
                font-size: 16px;
                width: 100px;
                height: 100px;
            }

            .flag-hosting {
                width: 200px; /* Even smaller width on mobile */
            }

            .flag-hosting img {
                width: 50px;
                height: 50px;
            }
        }
        
              /* Page Wrapper */
        .page-wrapper {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #fff;
            text-align: center;
        }

        /* FAQ Container */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
          /*  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
        }

        .faq-header {
            font-size: 2em;
            margin-bottom: 20px;
            color: #000;
            font-family:'Montserrat',sans-serif;
            font-weight:600;
        }

        .faq-item {
            margin-bottom: 10px;
        }

        /* FAQ Question Styles */
        .faq-question {
            background-color: #002578;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
            font-family:'Roboto',sans-serif;
        }

        .faq-question:hover {
            background-color: #007BFF;
        }

        /* FAQ Answer Styles */
        .faq-answer {
            display: none;
            padding: 15px;
            background-color: #fff;
            border-left: 4px solid #007BFF;
            margin-top: 5px;
            font-size: 1.1em;
            text-align: left;
            font-family:'Roboto', Sans-Serif;
        }

        /* Toggle Symbol Styles */
        .toggle-symbol {
            font-size: 1.5em;
            font-weight: bold;
        }

        /* Mobile Responsiveness */
        @media screen and (max-width: 600px) {
            .faq-container {
                width: 95%;
                padding: 15px;
            }

            .faq-header {
                font-size: 1.5em;
            }

            .faq-question {
                font-size: 1.1em;
                padding: 12px;
            }

            .faq-answer {
                font-size: 1em;
                padding: 12px;
            }

            .toggle-symbol {
                font-size: 1.3em;
            }
        }
        
          /* Card container */
    .info-card {
      max-width: 300px;
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      margin: 20px auto;
      text-align: center;
      transition: all 0.3s ease;
    }

    /* Text inside the card */
    .info-card-content p {
      font-size: 18px;
      color: #333;
      margin-bottom: 20px;
      font-weight: 500;
    }

    /* Button styling */
    .info-btn {
      display: inline-block;
      padding: 10px 20px;
      font-size: 16px;
      color: #fff;
      background-color: #007BFF;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.3s ease, color 0.3s ease;
       font-family: 'Roboto', sans-serif;
    }

    /* Hover effect for button */
    .info-btn:hover {
      background-color: #002578;
      color: #fff;
    }

    /* Hover effect for the card */
    .info-card:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    /*------------------------------*/
    
footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between links */
    flex-wrap: wrap; /* Allow wrapping if there's not enough space */
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.vertical-line {
    height: 20px; /* Adjust the height of the line */
    border-left: 2px solid black; /* Vertical line */
    margin: 0 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    footer h2 {
        font-size: 20px; /* Smaller font size for h2 on mobile */
        margin-bottom: 15px;
    }

    .footer-links {
        justify-content: space-evenly; /* Distribute links evenly */
        gap: 10px; /* Adjust space between links */
    }

    .vertical-line {
        height: 15px; /* Slightly shorter vertical line for smaller screens */
        margin: 0 15px; /* Adjust space between lines */
    }
}

@media (max-width: 480px) {
    footer h2 {
        font-size: 18px; /* Smaller font size on very small screens */
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px; /* Smaller font size for links on very small screens */
    }

    .vertical-line {
        height: 12px; /* Even shorter vertical line on very small screens */
        margin: 0 10px; /* Reduce space between lines */
    }
}