body {
    margin: 0;
    padding: 0;
    /*font-family: 'poppins',arial /*sans-serif*/;*/
    font-family: 'Libre Baskerville', serif;
    background-color: #333; /* Set a background color for the body */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

html{
    scroll-behavior: smooth;
}

/*Header-------------------------------------------------------------------------------------------------------------------------------------*/

header {
    background-color: #425664;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
}

.logo img {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.company-name {
    flex: 1;
    text-align: center;
    font-size: 15px; /* Adjust the font size as needed */
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}


nav {
    flex: 1;
    text-align: right;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
}



/* Hamburger menu styles */

.hamburger-menu {
    width: 55px;
    height: 55px;
    background-color: #425664;
    position: fixed;
    top: 20px;
    right: 20px;
    border: none;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 300;
    transition: all 0.5s;
    border: 3px solid #fff
  }
  
  .change .hamburger-menu {
    background-color: #eef0eb;
  }
  
  .line {
    width: 30px;
    height: 2px;
    background-color: #eee;
    margin: 2px 0;
    transform-origin: right;
    transition: all 0.5s;
  }
  
  .change .line-1 {
    transform: rotate(-40deg) translateY(-5px);
    background-color: #425664;
  }
  
  .change .line-2 {
    opacity: 0;
  }
  
  .change .line-3 {
    transform: rotate(40deg) translateY(5px);
    background-color: #425664;
  }
  
  .bg-cover {
    background-color: rgba(66, 86, 100, 0.95);
    width: 45px;
    height: 45px;
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 100;
    border-radius: 50%;
    transition: transform 0.5s;
  }
  
  .change .bg-cover {
    transform: scale(150);
  }
  
  .nav-list {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*height: 100vh;
    width: 100vw;*/
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s;
  }
  
  .change .nav-list {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item {
    margin: 1.5vh 0;
  }
  
  .nav-link {
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: letter-spacing 0.2s;
  }
  
  .nav-link:hover {
    letter-spacing: 0.8rem;
}


/*Body-------------------------------------------------------------------------------------------------------------------------------------*/

section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

/*Featured-------------------------------------------------------------------------------------------------------------------------------------*/

/* Add this CSS to the existing styles.css or create a new file */

#featured {
    position: relative;
    overflow: hidden;
    /*background: url('css/back1.png') center/100% auto no-repeat; /* Replace 'your-image.jpg' with the path to your image */
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.5);
    shadow
    color: #fff; /* Text color on top of the image */
    text-align: center;
    padding: 100px 0; /* Adjust padding as needed */
    /*font-family: 'Kalam', cursive;*/
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}

#featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(255, 223, 0, 0.2); /* Golden transparent layer */
    /*background: rgba(66, 86, 100, 0.8); /* Blue transparent layer */
    z-index: 0; /* Place under text and button */
}

.content {
    position: relative;
    z-index: 1; /* Ensure content appears above the image */
}

.text {
    max-width: 1000px; /* Adjust the maximum width of the text container */
    margin: 0 auto;
}

.text h2 {
    font-size: 100px; /* Adjust the font size as needed */
    color: #fff; /* Set text color to white */
    text-shadow: 8px 8px 16px rgba(0, 0, 0, 10); /* Add text shadow for better visibility */
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}

.content p {
    font-size: 30px; /* Adjust the font size as needed */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 10); /* Add shadow for the second text */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px; /* Adjust as needed */
    text-decoration: none;
    color: #fff;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-size: 20px; /* Adjust the font size as needed */
    background-color: transparent;
    border-radius: 30px;
    border: 3px solid #fff

}

.button:hover {
    background-color: #fff; /* change to your desired color */
    color: #425664; /* change to your desired color */
}

/* Ensure the image maintains aspect ratio */
@media (max-width: 1000px) {
    #featured {
        background-size: 100% auto;
    }
}

/*000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000*/

/*Grid Here*/

/*000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000*/

/*Welcome-------------------------------------------------------------------------------------------------------------------------------------*/

/* New styles for the wlcome section */

#welcome {
    background-color: #fff; /* Your desired background color */;
    text-align: justify;
    line-height: 1.5;
    padding: 20px;
}

.welcome-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-text {
    flex: 1;
}

.welcome-text h2 {
    color: #333;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-size: 30px;
}


@keyframes typewriter {
    0%, 100% {
      width: 0;
    }
    20%, 80% {
      width: 9em;
    }
  }
  
  @keyframes caret {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  .text_1 {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter;
    display: inline-block;
    position: relative;
    animation-duration: 10s;
    animation-timing-function: steps(16, end);
    animation-iteration-count: infinite;
  }
  
  
  .text_1::after {
    content: "|";
    position: absolute;
    right: -5px;
    animation: caret infinite;
    animation-duration: 1s;
    animation-timing-function: steps(1, end);
}

.welcome-image {
    flex: 1;
    margin-left: 20px; /* Adjust margin as needed */
}

.welcome-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.5s; /* Add a smooth transition effect */
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.5);
    /*transition: box-shadow 0.5s;*/
}

.welcome-image :hover {
    filter: grayscale(0%);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.7);
}

#welcome {
    text-align: justify;
    line-height: 1.5; /* Adjust line height as needed */
    /*background-color: rgba(198, 173, 143, 255); /* Yellow background with some transparency */*/
    padding: 20px; /* Add padding to give some space between content and background */
}

#welcome .welcome-text {
    display: inline-block;
    vertical-align: top;
    max-width: 60%; /* Adjust the maximum width of the text container */
}

#welcome .welcome-text p {
    margin-bottom: 15px; /* Adjust the margin bottom for additional spacing between paragraphs */
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}

/*Objectives-------------------------------------------------------------------------------------------------------------------------------------*/

#objectives {
    padding: 20px;
}

.objectives-container-title {
    text-align: left;
    margin-bottom: 10px; /* Add some margin to separate the title from the boxes */
    margin-top: 50px;
    margin-left: 50px;
}

.objectives-container-title h2 {
    color: #333;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}

.objectives-container {
    display: flex;
    /*width: 1300px;*/
    padding: 4% 3%;
    box-sizing: border-box;
    height: 100vh;
    /*height: auto;*/
    margin: 0 auto; /* Center the objectives section */
    justify-content: center;
  }

  .objectives-container h1 {
    font-size: 2.7vh;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font: bold;
  }
  
  .box {
    flex: 1;
    overflow: hidden;
    transition: .5s;
    margin: 0 0.5%;
    box-shadow: 0 20px 30px rgba(0,0,0,.1);
    line-height: 0;
    max-width: 300px;
  }
  
  .box > img {
    width: 200%;
    /*width: 100%;*/
    height: calc(100% - 10vh);
    /*height: auto;*/
    object-fit: cover; 
    transition: .5s;
    filter: grayscale(100%); /* Make the image grayscale */
  }
  
  .box > span {
    font-size: 3.6vh;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    display: block;
    text-align: center;
    height: 10vh;
    line-height: 1.8;
  }
  
  .box:hover { 
    flex: 1 1 50%;
  }

  .box:hover span {
    line-height: 1;
  }

  .box:hover h1 {
    font-size: 5vh;
  }

  .box:hover > img {
    width: 100%;
    height: 70%;
    filter: grayscale(0%); /* Make the image grayscale */
}

.objective-button-container {
    text-align: center;
    margin-top: 20px;
}

.objective-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 50px;
    text-decoration: none;
    color: #425664;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-size: 20px; /* Adjust the font size as needed */
    background-color: transparent;
    border-radius: 30px;
    border: 3px solid #425664;
    transition: 0.5s;
}

.objective-button:hover {
    background-color: #425664; /* change to your desired color */
    color: #fff; /* change to your desired color */
}

/*Team-------------------------------------------------------------------------------------------------------------------------------------*/

#team {
    text-align: left;
    padding: 20px;
    background-color: rgba(66, 86, 100, 255); /* Yellow background with some transparency */
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}

#team h2 {
    color: #fff;
    margin-bottom: 50px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.team-member {
    width: 200px;
    margin-bottom: 20px;
}

.team-image {
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.team-member h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.team-member p {
    color: #fff;
    font-size: 14px;
}

/*Portfolio-------------------------------------------------------------------------------------------------------------------------------------*/

#portfolio {
    text-align: left;
    padding: 20px;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}

#portfolio h2 {
    color: #333;
    margin-bottom: 10px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.portfolio-logo {
    width: 100px; /* Adjust the width as needed */
    position: relative;
}

/*.portfolio-logo img {
    width: 100%;
    height: auto;
}*/

/* Make the photos grayscale by default */
.portfolio-logo img {
    width: 100%;
    height: auto;
    filter: grayscale(100%); /* Make the image grayscale */
    transition: filter 0.5s; /* Add a smooth transition effect */
}

/* Add a hover effect to make the photos colorful */
.portfolio-logo img:hover {
    filter: grayscale(0%); /* Reset the grayscale filter on hover */
}

/*Footer-------------------------------------------------------------------------------------------------------------------------------------*/

footer {
    background-color: #c6ad8f;
    color: #333;
    text-align: center;
    padding: 20px 0;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
}

.footer-logo img {
    width: 80px;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow content to wrap to the next line if needed */
    position: relative; /* Position relative for the absolute positioned line */
}

.left-content,
.right-content {
    flex: 1;
}

.company-name p {
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    margin-top: 5px;
}

.contact-item {
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.copy-item ::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333; /* Color of the line */
    margin: 10px 0; /* Adjust the margin as needed */
}

/* Add these styles for icons */
.contact-item i {
    margin-right: 8px;
}

.contact-item .fa {
    font-size: 18px;
    margin-right: 30px;
}

/* Address icon */
.contact-item .fa-map-marker-alt {
    color: #fff; /* Adjust the color as needed */
}

/* Phone icon */
.contact-item .fa-phone {
    color: #fff; /* Adjust the color as needed */
}

/* Email icon */
.contact-item .fa-envelope {
    color: #fff; /* Adjust the color as needed */
}





/* Add this at the end of your existing CSS file */

/* Responsive adjustments for mobile phones */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    .company-name {
        text-align: center;
        margin-top: 10px;
        font-size: 5px; /* Adjust the font size as needed */
        font-family: 'Noto Sans Tamil Supplement', sans-serif;
    }

    nav {
        text-align: center;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    nav a {
        margin: 10px 0;
    }

    .hamburger-menu {
        top: 10px;
        right: 10px;
    }

    .bg-cover {
        top: 15px;
        right: 15px;
    }

    .nav-list {
        /*top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;*/
        top: 50%; /* Position the list at the vertical center of the screen */
        left: 50%; /* Position the list at the horizontal center of the screen */
        transform: translate(-50%, -50%); /* Move the list up and left by half of its width and height */
        width: 80%; /* Adjust the width as needed */
        height: auto; /* Allow the list height to adjust based on content */
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-link {
        font-size: 16px; /* Adjust the font size as needed */
    }

    .welcome-content {
        flex-direction: column-reverse;
    }

    .welcome-image {
        margin-left: 0;
        margin-top: 20px;
    }

    .welcome-text p {
        margin: -60px;
        margin-top: 10px;
    }

    .text_1::after {
        display: none;
    }

    .welcome-text h2 {
        font-size: 20px;
        margin-top: 35px;
    }

    .objectives-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        height: auto;
    }


    .box:nth-child(5) box {
        width: 100%;
        height: auto;
    }

    .box > span {
        /*font-size: 14px;*/
    }

    .box h1 {
        font-size: 11px;
        line-height: 4;
    }

    .box:hover h1 {
        font-size: 11px;
        line-height: 1;
    }

    .box p {
        font-size: 8px;
        line-height: 15;
    }

    .box:hover p {
        font-size: 8px;
        line-height: 1.5;
    }

    #team h2,
    #portfolio h2 {
        font-size: 24px;
    }

    .logo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
        margin-top: 20px;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 50%;
        margin-bottom: 20px;
    }

    .footer-logo img {
        width: 60px;
    }

    .footer-content {
        flex-direction: column;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .copy-item ::before {
        display: none;
    }

    .contact-item .fa {
        margin-right: 10px;
    }
}


/*about us---------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------*/

/* Add your specific styles for the About Us page here */
#about-us {
    background-color: #fff;
    padding: 20px;
}

.about-content {
    text-align: justify;
    margin: 0 auto;
    max-width: 10000px; /* Adjust the max-width as needed */
    padding: 0 20px; /* Add padding for better spacing */
    box-sizing: border-box; /* Include padding in the max-width calculation */
}

.about-content h2 {
    color: #333;
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-size: 30px;
}

.about-content p {
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Additional styling for the About Us page */

.about-items {
    display: flex;
    flex-wrap: wrap;
}

.about-item {
    width: 100%;
    display: flex;
    align-items: center; /* Align items at the center vertically */
    margin-bottom: 20px;
}

.about-item img {
    max-width: 50%;
    height: auto;
    margin-right: 20px; /* Add margin to separate image from text */
    align-self: flex-start; /* Align image to the start of the container */
}

.about-text {
    flex-grow: 1; /* Allow text to take up remaining space */
}

.about-text h2 {
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-size: 24px;
    margin-top: 0; /* Remove default margin from h2 */
    margin-bottom: 10px; /* Add margin to separate title from text */
}

.about-text p {
    font-family: 'Noto Sans Tamil Supplement', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0; /* Remove default margin from p */
}

@media screen and (max-width: 768px) {
    .about-items {
        display: flex;
        flex-direction: column;
    }
    
    .about-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .about-item img {
        max-width: 100%;
        height: auto;
        margin-right: 0; /* Remove margin for image on smaller screens */
        margin-bottom: 10px; /* Add margin below image on smaller screens */
        align-self: center; /* Align image to the center of the container */
    }
    
    .about-item-content {
        width: 100%; /* Ensure content takes full width on smaller screens */
    }
    
    .about-item h2 {
        font-size: 20px;
        margin-top: 0; /* Reset top margin */
    }
    
    .about-item p {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 10px; /* Add margin to separate paragraphs on smaller screens */
    }
}